repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveAccount/Domain/RTRemoveAccountInteractorDelegate.h
#import <Foundation/Foundation.h> @protocol RTRemoveAccountInteractorDelegate <NSObject> - (void)removeAccountSucceeded; - (void)removeAccountFailedWithError:(NSError *)error; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Persistence/RTLoginDataManagerDelegate.h
#import <Foundation/Foundation.h> @protocol RTLoginDataManagerDelegate <NSObject> - (void)loginDataOperationFailedWithError:(NSError *)error; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UserSummary/Persistence/RTUserSummaryDataManager.h
<gh_stars>0 #import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @class RTUser; @interface RTUserSummaryDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)fetchUserForUsername:(NSString *)username userFound:(UserCallback)userFound ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UploadVideo/Domain/RTUploadVideoValidator.h
<reponame>bobby-vandiver/reeltime-ios #import "RTValidator.h" @interface RTUploadVideoValidator : RTValidator - (BOOL)validateVideo:(NSURL *)videoUrl thumbnail:(NSURL *)thumbnailUrl videoTitle:(NSString *)videoTitle reelName:(NSString *)reelName errors:(NSArray *__au...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTUser.h
#import <Foundation/Foundation.h> @interface RTUser : NSObject @property (nonatomic, copy) NSString *username; @property (nonatomic, copy) NSString *displayName; @property (nonatomic, copy) NSNumber *numberOfFollowers; @property (nonatomic, copy) NSNumber *numberOfFollowees; @property (nonatomic, copy) NSNumber *nu...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseReels/Presentation/RTBrowseReelsPresenter.h
#import "RTPagedListPresenter.h" #import "RTPagedListPresenterDelegate.h" @protocol RTBrowseReelsView; @protocol RTReelWireframe; @class RTPagedListInteractor; @interface RTBrowseReelsPresenter : RTPagedListPresenter <RTPagedListPresenterDelegate> - (instancetype)initWithView:(id<RTBrowseReelsView>)view ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUserFollowers/Navigation/RTBrowseUserFollowersWireframe.h
<gh_stars>0 #import "RTApplicationAwareWireframe.h" #import "RTUserWireframe.h" @protocol RTBrowseUserFollowersViewControllerFactory; @class RTUserProfileWireframe; @class RTApplicationWireframe; @interface RTBrowseUserFollowersWireframe : RTApplicationAwareWireframe <RTUserWireframe> - (instancetype)initWithViewCon...
bobby-vandiver/reeltime-ios
ReelTime-iOSTests/Common/EXPMatchers+beUser.h
#import <Expecta/Expecta.h> EXPMatcherInterface(beUser, (NSString *expectedUsername, NSString *expectedDisplayName, NSNumber *expectedNumberOfFollowers, NSNumber *expectedNumberOfFollowees, NSNumber *expectedNumberOfReelsOwned, NSNumber *expectedNumberOfAudienc...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Newsfeed/Presentation/RTNewsfeedViewController.h
#import "RTPagedListViewController.h" #import "RTNewsfeedView.h" #import "RTStoryboardViewController.h" @class RTNewsfeedPresenter; @class RTArrayDataSource; @interface RTNewsfeedViewController : RTPagedListViewController <RTNewsfeedView, RTStoryboardViewController> @property (weak, nonatomic) IBOutlet UITableView ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUserFollowees/Assembly/RTBrowseUserFolloweesAssembly.h
#import "TyphoonAssembly.h" #import "RTBrowseUserFolloweesViewControllerFactory.h" @class RTApplicationAssembly; @class RTClientAssembly; @class RTUserProfileAssembly; @class RTBrowseUserFolloweesWireframe; @class RTBrowseUserFolloweesViewController; @class RTBrowseUserFolloweesDataManagerDelegate; @class RTPagedLis...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveAccount/Presentation/RTRemoveAccountPresenter.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> #import "RTRemoveAccountInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTRemoveAccountView; @class RTRemoveAccountInteractor; @class RTRemoveAccountWireframe; @interface RTRemoveAccountPresenter : NSObjec...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Persistence/RTLoginDataManager.h
<gh_stars>0 #import <Foundation/Foundation.h> #import "RTCallbacks.h" @protocol RTLoginDataManagerDelegate; @class RTAPIClient; @class RTClientCredentialsStore; @class RTOAuth2TokenStore; @class RTCurrentUserStore; @class RTClientCredentials; @class RTUserCredentials; @class RTOAuth2Token; @interface RTLoginDataMan...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Presentation/RTAccountRegistrationViewController.h
<filename>ReelTime-iOS/UseCase/AccountRegistration/Presentation/RTAccountRegistrationViewController.h #import "RTKeyboardAwareFormViewController.h" #import "RTAccountRegistrationView.h" #import "RTStoryboardViewController.h" @class RTAccountRegistrationPresenter; @interface RTAccountRegistrationViewController : RTKe...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UploadVideo/Assembly/RTUploadVideoAssembly.h
#import <Typhoon/Typhoon.h> #import "RTUploadVideoViewControllerFactory.h" @class RTClientAssembly; @class RTRecordVideoAssembly; @class RTApplicationAssembly; @class RTUploadVideoWireframe; @class RTUploadVideoPresenter; @class RTUploadVideoInteractor; @class RTUploadVideoValidator; @class RTUploadVideoDataManager; ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/JoinAudience/Domain/RTJoinAudienceInteractor.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> @protocol RTJoinAudienceInteractorDelegate; @class RTJoinAudienceDataManager; @interface RTJoinAudienceInteractor : NSObject - (instancetype)initWithDelegate:(id<RTJoinAudienceInteractorDelegate>)delegate dataManager:(RTJoin...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Presentation/RTMessageView.h
#import <Foundation/Foundation.h> @protocol RTMessageView <NSObject> - (void)showMessage:(NSString *)message; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUsers/Persistence/RTBrowseUsersDataManager.h
#import "RTPagedListDataManager.h" @protocol RTBrowseUsersDataManagerDelegate; @interface RTBrowseUsersDataManager : RTPagedListDataManager - (instancetype)initWithDelegate:(id<RTBrowseUsersDataManagerDelegate>)delegate client:(RTAPIClient *)client; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Persistence/RTAccountRegistrationDataManager.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" @protocol RTAccountRegistrationDataManagerDelegate; @class RTAPIClient; @class RTClientCredentialsStore; @class RTAccountRegistration; @class RTClientCredentials; @interface RTAccountRegistrationDataManager : NSObject - (instancetype)initWithDelegate:(id<RT...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTUserList.h
#import <Foundation/Foundation.h> @interface RTUserList : NSObject @property (nonatomic, copy) NSArray *users; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Presentation/RTResetPasswordPresenter.h
#import <Foundation/Foundation.h> #import "RTResetPasswordInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTResetPasswordView; @class RTResetPasswordInteractor; @class RTResetPasswordWireframe; @interface RTResetPasswordPresenter : NSObject <RTResetPasswordInteractorDelegate, ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/LeaveAudience/Domain/RTLeaveAudienceError.h
<gh_stars>0 #import <Foundation/Foundation.h> extern NSString *const RTLeaveAudienceErrorDomain; typedef NS_ENUM(NSInteger, RTLeaveAudienceError) { RTLeaveAudienceErrorReelNotFound, RTLeaveAudienceErrorUnknownError };
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveVideoFromReel/Presentation/RTRemoveVideoFromReelView.h
<filename>ReelTime-iOS/UseCase/RemoveVideoFromReel/Presentation/RTRemoveVideoFromReelView.h #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" @protocol RTRemoveVideoFromReelView <NSObject, RTErrorMessageView> - (void)showVideoAsRemovedFromReelForVideoId:(NSNumber *)videoId ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RecordVideo/Presentation/RTRecordVideoViewController.h
#import <UIKit/UIKit.h> #import <AVFoundation/AVFoundation.h> #import "RTRecordVideoCameraDelegate.h" #import "RTStoryboardViewController.h" @class RTRecordVideoPresenter; @class RTRecordVideoCamera; @class RTRecordVideoPreviewView; @interface RTRecordVideoViewController : UIViewController <RTRecordVideoCameraDelega...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Navigation/RTResetPasswordWireframe.h
<filename>ReelTime-iOS/UseCase/ResetPassword/Navigation/RTResetPasswordWireframe.h<gh_stars>0 #import "RTApplicationAwareWireframe.h" @class RTResetPasswordViewController; @class RTLoginWireframe; @interface RTResetPasswordWireframe : RTApplicationAwareWireframe - (instancetype)initWithViewController:(RTResetPasswor...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTUserCredentials.h
<gh_stars>0 #import <Foundation/Foundation.h> @interface RTUserCredentials : NSObject @property (nonatomic, readonly, copy) NSString *username; @property (nonatomic, readonly, copy) NSString *password; - (instancetype)initWithUsername:(NSString *)username password:(NSString *)password; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTCallbacks.h
#import <Foundation/Foundation.h> @class RTAuthenticationAwareHTTPClient; @class RTEndpointPathFormatter; @class RTClientCredentials; @class RTUserCredentials; @class RTOAuth2Token; @class RTOAuth2TokenError; @class RTServerErrors; @class RTAccountRegistration; @class RTNewsfeed; @class RTClient; @class RTClientL...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Navigation/RTVideoWireframe.h
#import <Foundation/Foundation.h> @protocol RTVideoWireframe <NSObject> - (void)presentVideoForVideoId:(NSNumber *)videoId; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Application/RTApplicationNavigationController.h
#import <UIKit/UIKit.h> // Custom navigation controller that allows the root view controller // to be changed post-initialization. // // Source: https://starterstep.wordpress.com/2009/03/05/changing-a-uinavigationcontroller%E2%80%99s-root-view-controller/ @interface RTApplicationNavigationController : UINavigationCon...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangeDisplayName/Presentation/RTChangeDisplayNameViewController.h
#import "RTKeyboardAwareFormViewController.h" #import "RTChangeDisplayNameView.h" #import "RTStoryboardViewController.h" @class RTChangeDisplayNamePresenter; @interface RTChangeDisplayNameViewController : RTKeyboardAwareFormViewController <RTChangeDisplayNameView, RTStoryboardViewController> @property (weak, nonato...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Persistence/RTAccountRegistrationDataManagerDelegate.h
#import <Foundation/Foundation.h> @class RTClientCredentials; @protocol RTAccountRegistrationDataManagerDelegate <NSObject> - (void)registerAccountFailedWithErrors:(NSArray *)errors; - (void)failedToSaveClientCredentials:(RTClientCredentials *)clientCredentials forUsername:(NSString *)user...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountSettings/Presentation/RTAccountSettingsPresenter.h
<gh_stars>0 #import <Foundation/Foundation.h> @class RTAccountSettingsWireframe; @class RTLogoutPresenter; @interface RTAccountSettingsPresenter : NSObject - (instancetype)initWithWireframe:(RTAccountSettingsWireframe *)wireframe logoutPresenter:(RTLogoutPresenter *)logoutPresenter; - (void)reques...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/PagedList/Presentation/RTPagedListViewScrollHandler.h
#import <Foundation/Foundation.h> @class RTPagedListPresenter; @class UITableView; @class UICollectionView; @interface RTPagedListViewScrollHandler : NSObject - (void)handleScrollForTableView:(UITableView *)tableView withPresenter:(RTPagedListPresenter *)presenter; - (void)handleScrollForCollect...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Storyboard/RTStoryboardViewControllerFactory.h
<filename>ReelTime-iOS/Common/Storyboard/RTStoryboardViewControllerFactory.h #import <Foundation/Foundation.h> @protocol RTStoryboardViewController; @interface RTStoryboardViewControllerFactory : NSObject + (id)storyboardViewController:(Class<RTStoryboardViewController>)clazz; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Presentation/RTErrorCodeToErrorMessagePresenter.h
#import <Foundation/Foundation.h> @protocol RTErrorCodeToErrorMessagePresenterDelelgate; @protocol RTErrorCodeToErrorMessageMapping; @interface RTErrorCodeToErrorMessagePresenter : NSObject - (instancetype)initWithDelegate:(id<RTErrorCodeToErrorMessagePresenterDelelgate>)delegate mapping:(id...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Application/RTApplicationTabBarController.h
<gh_stars>0 #import <UIKit/UIKit.h> @interface RTApplicationTabBarController : UITabBarController @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UnfollowUser/Persistence/RTUnfollowUserServerErrorMapping.h
#import <Foundation/Foundation.h> #import "RTServerErrorMessageToErrorCodeMapping.h" @interface RTUnfollowUserServerErrorMapping : NSObject <RTServerErrorMessageToErrorCodeMapping> @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UserProfile/Presentation/RTUserReelFooterViewDelegate.h
<filename>ReelTime-iOS/UseCase/UserProfile/Presentation/RTUserReelFooterViewDelegate.h #import <UIKit/UIKit.h> @class RTUserReelFooterView; @protocol RTUserReelFooterViewDelegate <NSObject> - (void)footerView:(RTUserReelFooterView *)footerView didPressFollowReelButton:(UIButton *)button forReelId:(NSNumber *)reelId;...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/LeaveAudience/Domain/RTLeaveAudienceInteractorDelegate.h
#import <Foundation/Foundation.h> @protocol RTLeaveAudienceInteractorDelegate <NSObject> - (void)leaveAudienceSucceededForReelId:(NSNumber *)reelId; - (void)leaveAudienceFailedForReelId:(NSNumber *)reelId withError:(NSError *)error; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Application/RTApplicationNavigationControllerFactory.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/Common/Application/RTApplicationNavigationControllerFactory.h #import <Foundation/Foundation.h> @class RTApplicationNavigationController; @protocol RTApplicationNavigationControllerFactory <NSObject> - (RTApplicationNavigationController *)applicationNavigat...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/PlayVideo/Domain/RTPlayVideoError.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/PlayVideo/Domain/RTPlayVideoError.h #import <Foundation/Foundation.h> extern NSString *const RTPlayVideoErrorDomain; typedef NS_ENUM(NSInteger, RTPlayVideoError) { RTPlayVideoErrorVideoNotFound };
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountSettings/Presentation/RTAccountSettingsViewController.h
#import <UIKit/UIKit.h> #import "RTLogoutView.h" #import "RTStoryboardViewController.h" @class RTAccountSettingsPresenter; @interface RTAccountSettingsViewController : UITableViewController <RTLogoutView, RTStoryboardViewController> + (instancetype)viewControllerWithPresenter:(RTAccountSettingsPresenter *)presenter...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/JoinAudience/Domain/RTJoinAudienceInteractorDelegate.h
<filename>ReelTime-iOS/UseCase/JoinAudience/Domain/RTJoinAudienceInteractorDelegate.h<gh_stars>0 #import <Foundation/Foundation.h> @protocol RTJoinAudienceInteractorDelegate <NSObject> - (void)joinAudienceSucceededForReelId:(NSNumber *)reelId; - (void)joinAudienceFailedForReelId:(NSNumber *)reelId ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeleteReel/Presentation/RTDeleteReelView.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" @protocol RTDeleteReelView <NSObject, RTErrorMessageView> - (void)showReelAsDeletedForReelId:(NSNumber *)reelId; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Navigation/RTAccountRegistrationWireframe.h
<filename>ReelTime-iOS/UseCase/AccountRegistration/Navigation/RTAccountRegistrationWireframe.h #import "RTApplicationAwareWireframe.h" @class RTAccountRegistrationViewController; @class RTLoginWireframe; @class RTDeviceRegistrationWireframe; @interface RTAccountRegistrationWireframe : RTApplicationAwareWireframe - (...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangePassword/Persistence/RTChangePasswordDataManager.h
<gh_stars>0 #import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @interface RTChangePasswordDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)changePassword:(NSString *)password changed:(NoArgsCallback)changed notChanged:(ArrayCa...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUserFollowers/Presentation/RTUserFollowerCell.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/BrowseUserFollowers/Presentation/RTUserFollowerCell.h #import <UIKit/UIKit.h> @interface RTUserFollowerCell : UITableViewCell @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UploadVideo/Assembly/RTUploadVideoViewControllerFactory.h
<filename>ReelTime-iOS/UseCase/UploadVideo/Assembly/RTUploadVideoViewControllerFactory.h #import <Foundation/Foundation.h> @class RTUploadVideoViewController; @protocol RTUploadVideoViewControllerFactory <NSObject> - (RTUploadVideoViewController *)uploadVideoViewControllerForVideo:(NSURL *)videoUrl ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RemoveAccount/Persistence/RTRemoveAccountDataManager.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @interface RTRemoveAccountDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)removeAccount:(NoArgsCallback)success failure:(ErrorCallback)failure; @end...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeviceRegistration/Presentation/RTDeviceRegistrationView.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" #import "RTFieldValidationErrorView.h" typedef NS_ENUM(NSInteger, RTDeviceRegistrationViewField) { RTDeviceRegistrationViewFieldUsername, RTDeviceRegistrationViewFieldPassword, RTDeviceRegistrationViewFi...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/UI/RTMutableArrayDataSource.h
#import "RTArrayDataSource.h" typedef void (^OnDeleteCellBlock)(id cell, id object); @interface RTMutableArrayDataSource : RTArrayDataSource + (instancetype)rowMajorArrayWithItems:(NSArray *)items cellIdentifier:(NSString *)cellIdentifier configureCellBlock:(ConfigureCellB...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ManageDevices/Assembly/RTManageDevicesAssembly.h
#import "TyphoonAssembly.h" @class RTClientAssembly; @class RTServiceAssembly; @class RTLoginAssembly; @class RTApplicationAssembly; @class RTManageDevicesWireframe; @class RTManageDevicesViewController; @class RTManageDevicesPresenter; @class RTPagedListInteractor; @class RTBrowseDevicesDataManager; @class RTRevo...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UserProfile/Presentation/RTVideoThumbnailCell.h
<reponame>bobby-vandiver/reeltime-ios #import <UIKit/UIKit.h> @interface RTVideoThumbnailCell : UICollectionViewCell @property UIImageView *thumbnailView; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/UI/RTArrayDataSource.h
<gh_stars>0 #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> // This is a slightly modified version of ROArrayDataSource: // https://github.com/raphaeloliveira/ArrayDataSource typedef void (^ConfigureCellBlock)(id cell, id object); typedef BOOL (^MatchItemTest)(id item); @interface RTArrayDataSource : NSObj...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/JoinAudience/Presentation/RTJoinAudienceErrorCodeToErrorMessageMapping.h
<filename>ReelTime-iOS/UseCase/JoinAudience/Presentation/RTJoinAudienceErrorCodeToErrorMessageMapping.h #import <Foundation/Foundation.h> #import "RTErrorCodeToErrorMessageMapping.h" @interface RTJoinAudienceErrorCodeToErrorMessageMapping : NSObject <RTErrorCodeToErrorMessageMapping> @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Domain/RTResetPasswordInteractor.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/ResetPassword/Domain/RTResetPasswordInteractor.h<gh_stars>0 #import <Foundation/Foundation.h> @protocol RTResetPasswordInteractorDelegate; @class RTResetPasswordDataManager; @class RTResetPasswordValidator; @class RTCurrentUserService; @class RTClie...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUserFollowees/Navigation/RTBrowseUserFolloweesWireframe.h
<reponame>bobby-vandiver/reeltime-ios #import "RTApplicationAwareWireframe.h" #import "RTUserWireframe.h" @protocol RTBrowseUserFolloweesViewControllerFactory; @class RTUserProfileWireframe; @class RTApplicationWireframe; @interface RTBrowseUserFolloweesWireframe : RTApplicationAwareWireframe <RTUserWireframe> - (in...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTOAuth2TokenError.h
<filename>ReelTime-iOS/Common/Model/RTOAuth2TokenError.h #import <Foundation/Foundation.h> @interface RTOAuth2TokenError : NSObject @property (nonatomic, copy) NSString *errorCode; @property (nonatomic, copy) NSString *errorDescription; - (instancetype)initWithErrorCode:(NSString *)errorCode errorDe...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseReels/Presentation/RTBrowseReelsView.h
#import <Foundation/Foundation.h> @class RTReelDescription; @protocol RTBrowseReelsView <NSObject> - (void)showReelDescription:(RTReelDescription *)description; - (void)clearReelDescriptions; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Presentation/RTErrorCodeToErrorMessageMapping.h
#import <Foundation/Foundation.h> @protocol RTErrorCodeToErrorMessageMapping <NSObject> - (NSString *)errorDomain; - (NSDictionary *)errorCodeToErrorMessageMapping; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ConfirmAccount/Domain/RTConfirmAccountInteractor.h
<filename>ReelTime-iOS/UseCase/ConfirmAccount/Domain/RTConfirmAccountInteractor.h #import <Foundation/Foundation.h> @protocol RTConfirmAccountInteractorDelegate; @class RTConfirmAccountDataManager; @interface RTConfirmAccountInteractor : NSObject - (instancetype)initWithDelegate:(id<RTConfirmAccountInteractorDelegat...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTReelList.h
<filename>ReelTime-iOS/Common/Model/RTReelList.h #import <Foundation/Foundation.h> @interface RTReelList : NSObject @property (nonatomic, copy) NSArray *reels; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ConfirmAccount/Navigation/RTConfirmAccountWireframe.h
#import "RTApplicationAwareWireframe.h" @class RTConfirmAccountViewController; @interface RTConfirmAccountWireframe : RTApplicationAwareWireframe - (instancetype)initWithViewController:(RTConfirmAccountViewController *)viewController applicationWireframe:(RTApplicationWireframe *)applicationWirefra...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Presentation/RTLoginPresenter.h
#import <Foundation/Foundation.h> #import "RTLoginInteractorDelegate.h" @protocol RTLoginView; @class RTLoginInteractor; @class RTLoginWireframe; @interface RTLoginPresenter : NSObject <RTLoginInteractorDelegate> - (instancetype)initWithView:(id<RTLoginView>)view interactor:(RTLoginInteractor *)int...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Domain/RTResetPasswordValidator.h
#import "RTValidator.h" @interface RTResetPasswordValidator : RTValidator - (BOOL)validateCode:(NSString *)code username:(NSString *)username password:(<PASSWORD> *)password confirmationPassword:(NSString *)confirmationPassword errors:(NSArray *__autoreleasing *)errors; - (BOOL)...
bobby-vandiver/reeltime-ios
ReelTime-iOSTests/FakeObjects/RTFakeKeyChainWrapper.h
<reponame>bobby-vandiver/reeltime-ios #import "RTKeyChainWrapper.h" @interface RTFakeKeyChainWrapper : RTKeyChainWrapper - (id<NSSecureCoding>)objectForKey:(NSString *)key error:(NSError *__autoreleasing *)error; - (BOOL)setObject:(id<NSSecureCoding>)object forKey:(NSString *)...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangeDisplayName/Persistence/RTChangeDisplayNameDataManager.h
<filename>ReelTime-iOS/UseCase/ChangeDisplayName/Persistence/RTChangeDisplayNameDataManager.h #import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @interface RTChangeDisplayNameDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)changeDisplayName:(NSString *...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RecordVideo/Presentation/RTRecordVideoCameraDelegate.h
#import <Foundation/Foundation.h> @class RTRecordVideoCamera; @protocol RTRecordVideoCameraDelegate <NSObject> - (void)recordingStarted; - (void)recordingStopped:(NSURL *)videoURL; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeviceRegistration/Presentation/RTDeviceRegistrationPresenter.h
<filename>ReelTime-iOS/UseCase/DeviceRegistration/Presentation/RTDeviceRegistrationPresenter.h #import <Foundation/Foundation.h> #import "RTDeviceRegistrationInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTDeviceRegistrationView; @class RTDeviceRegistrationInteractor; @class ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Presentation/RTResetPasswordViewController.h
#import "RTKeyboardAwareFormViewController.h" #import "RTResetPasswordView.h" #import "RTStoryboardViewController.h" @class RTResetPasswordPresenter; @interface RTResetPasswordViewController : RTKeyboardAwareFormViewController <RTResetPasswordView, RTStoryboardViewController> @property (weak, nonatomic) IBOutlet UI...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/RevokeClient/Persistence/RTRevokeClientDataManager.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @interface RTRevokeClientDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)revokeClientWithClientId:(NSString *)clientId revocationSuccees:(NoArgsCallback)success ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Client/RTImagePNGSerialization.h
#import <Foundation/Foundation.h> #import <RestKit/RestKit.h> // This is a bit of a hack to add support for PNGs into RestKit // to maintain consistency in RTClient and avoid interacting directly // with the underlying AFNetworking APIs. // // This should be revisited in the future if we begin doing // more stuff with...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTVideoList.h
#import <Foundation/Foundation.h> @interface RTVideoList : NSObject @property (nonatomic, copy) NSArray *videos; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Device/RTDeviceInformation.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> @class RTDeviceHardware; @interface RTDeviceInformation : NSObject - (instancetype)initWithDeviceHardware:(RTDeviceHardware *)deviceHardware; - (BOOL)iPhone4; - (BOOL)iPhone5; - (BOOL)iPhone6; - (BOOL)iPhone6Plus; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/JoinAudience/Persistence/RTJoinAudienceDataManager.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" @class RTAPIClient; @interface RTJoinAudienceDataManager : NSObject - (instancetype)initWithClient:(RTAPIClient *)client; - (void)requestAudienceMembershipForReelId:(NSNumber *)reelId joinSuccess:(NoArgsCallback)success ...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/PlayVideo/Presentation/AVPlayerItem+StatusText.h
<reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/PlayVideo/Presentation/AVPlayerItem+StatusText.h #import <AVFoundation/AVFoundation.h> @interface AVPlayerItem (StatusText) @property (nonatomic, readonly) NSString *statusText; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/CreateReel/Presentation/RTCreateReelView.h
#import <Foundation/Foundation.h> #import "RTErrorMessageView.h" #import "RTFieldValidationErrorView.h" typedef NS_ENUM(NSInteger, RTCreateReelViewField) { RTCreateReelViewFieldReelName, }; @protocol RTCreateReelView <NSObject, RTErrorMessageView, RTFieldValidationErrorView> - (void)showCreatedReelWithName:(NSS...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UnfollowUser/Presentation/RTUnfollowUserView.h
#import <Foundation/Foundation.h> #import "RTErrorMessageView.h" @protocol RTUnfollowUserView <NSObject, RTErrorMessageView> - (void)showUserAsUnfollowedForUsername:(NSString *)username; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UploadVideo/Navigation/RTUploadVideoWireframe.h
#import "RTApplicationAwareWireframe.h" @protocol RTUploadVideoViewControllerFactory; @class RTRecordVideoWireframe; @interface RTUploadVideoWireframe : RTApplicationAwareWireframe - (instancetype)initWithViewControllerFactory:(id<RTUploadVideoViewControllerFactory>)viewControllerFactory rec...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Logout/Domain/RTLogoutError.h
<filename>ReelTime-iOS/UseCase/Logout/Domain/RTLogoutError.h #import <Foundation/Foundation.h> extern NSString *const RTLogoutErrorDomain; typedef NS_ENUM(NSInteger, RTLogoutError) { RTLogoutErrorCurrentUsernameNotFound, RTLogoutErrorMissingAccessToken, RTLogoutErrorUnknownRevocationError, RTLogoutErr...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangePassword/Domain/RTChangePasswordInteractorDelegate.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> @protocol RTChangePasswordInteractorDelegate <NSObject> - (void)changePasswordSucceeded; - (void)changePasswordFailedWithErrors:(NSArray *)errors; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/PlayVideo/Presentation/AVPlayer+StatusText.h
#import <AVFoundation/AVFoundation.h> @interface AVPlayer (StatusText) @property (nonatomic, readonly) NSString *statusText; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/PlayVideo/Assembly/RTPlayVideoViewControllerFactory.h
<gh_stars>0 #import <Foundation/Foundation.h> @class RTPlayVideoViewController; @protocol RTPlayVideoViewControllerFactory <NSObject> - (RTPlayVideoViewController *)playVideoViewControllerForVideoId:(NSNumber *)videoId; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangePassword/Navigation/RTChangePasswordWireframe.h
<reponame>bobby-vandiver/reeltime-ios #import "RTApplicationAwareWireframe.h" @class RTChangePasswordViewController; @interface RTChangePasswordWireframe : RTApplicationAwareWireframe - (instancetype)initWithViewController:(RTChangePasswordViewController *)viewController applicationWireframe:(RTApp...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeviceRegistration/Persistence/RTDeviceRegistrationDataManagerDelegate.h
<gh_stars>0 #import <Foundation/Foundation.h> @protocol RTDeviceRegistrationDataManagerDelegate <NSObject> - (void)deviceRegistrationDataOperationFailedWithErrors:(NSArray *)errors; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UserProfile/Navigation/RTUserProfileWireframe.h
#import "RTApplicationAwareWireframe.h" #import "RTUserWireframe.h" @protocol RTUserProfileViewControllerFactory; @class RTAccountSettingsWireframe; @class RTBrowseAudienceMembersWireframe; @class RTBrowseUserFollowersWireframe; @class RTBrowseUserFolloweesWireframe; @interface RTUserProfileWireframe : RTApplicatio...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/Login/Domain/RTLoginInteractorDelegate.h
#import <Foundation/Foundation.h> @protocol RTLoginInteractorDelegate <NSObject> - (void)loginSucceeded; - (void)loginFailedWithErrors:(NSArray *)errors; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AddVideoToReel/Presentation/RTAddVideoToReelPresenter.h
#import <Foundation/Foundation.h> #import "RTAddVideoToReelInteractorDelegate.h" #import "RTErrorCodeToErrorMessagePresenterDelelgate.h" @protocol RTAddVideoToReelView; @class RTAddVideoToReelInteractor; @interface RTAddVideoToReelPresenter : NSObject <RTAddVideoToReelInteractorDelegate, RTErrorCodeToErrorMessagePre...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/DeviceRegistration/Presentation/RTDeviceRegistrationErrorCodeToErrorMessageMapping.h
<filename>ReelTime-iOS/UseCase/DeviceRegistration/Presentation/RTDeviceRegistrationErrorCodeToErrorMessageMapping.h<gh_stars>0 #import <Foundation/Foundation.h> #import "RTErrorCodeToErrorMessageMapping.h" @interface RTDeviceRegistrationErrorCodeToErrorMessageMapping : NSObject <RTErrorCodeToErrorMessageMapping> @end...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/PagedList/Presentation/RTPagedListPresenterDelegate.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> @protocol RTPagedListPresenterDelegate <NSObject> - (void)clearPresentedItems; - (void)presentItem:(id)item; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseAll/Persistence/RTBrowseAllReelsDataManagerDelegate.h
<reponame>bobby-vandiver/reeltime-ios #import <Foundation/Foundation.h> #import "RTBrowseReelsDataManagerDelegate.h" @interface RTBrowseAllReelsDataManagerDelegate : NSObject <RTBrowseReelsDataManagerDelegate> @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/UserProfile/Persistence/RTBrowseUserReelsDataManagerDelegate.h
#import <Foundation/Foundation.h> #import "RTBrowseReelsDataManagerDelegate.h" @interface RTBrowseUserReelsDataManagerDelegate : NSObject <RTBrowseReelsDataManagerDelegate> - (instancetype)initWithUsername:(NSString *)username; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseUserFollowers/Presentation/RTBrowseUserFollowersViewController.h
#import "RTPagedListViewController.h" #import "RTBrowseUsersView.h" #import "RTStoryboardViewController.h" @class RTBrowseUsersPresenter; @interface RTBrowseUserFollowersViewController : RTPagedListViewController <RTBrowseUsersView, RTStoryboardViewController> @property (weak, nonatomic) IBOutlet UITableView *brows...
bobby-vandiver/reeltime-ios
ReelTime-iOS/Common/Model/RTNewsfeed.h
#import <Foundation/Foundation.h> @interface RTNewsfeed : NSObject @property (nonatomic, copy) NSArray *activities; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Domain/RTAccountRegistrationError.h
<gh_stars>0 #import <Foundation/Foundation.h> extern NSString *const RTAccountRegistrationErrorDomain; typedef NS_ENUM(NSInteger, RTAccountRegistrationError) { RTAccountRegistrationErrorMissingUsername, RTAccountRegistrationErrorMissingPassword, RTAccountRegistrationErrorMissingConfirmationPassword, R...
bobby-vandiver/reeltime-ios
ReelTime-iOSTests/Common/RTFieldErrorPresentationChecker.h
#import <Foundation/Foundation.h> #import "RTCallbacks.h" #import "RTTestCallbacks.h" #import "RTFieldValidationErrorView.h" @interface RTFieldErrorPresentationChecker : NSObject - (instancetype)initWithView:(id<RTFieldValidationErrorView>)view errorsCallback:(ArrayCallback)errorsCallback error...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/BrowseAll/Presentation/RTBrowseAllViewController.h
<reponame>bobby-vandiver/reeltime-ios #import "RTPagedListViewController.h" #import "RTBrowseUsersView.h" #import "RTBrowseReelsView.h" #import "RTBrowseVideosView.h" #import "RTStoryboardViewController.h" @class RTBrowseUsersPresenter; @class RTBrowseReelsPresenter; @class RTBrowseVideosPresenter; @interface RTBrow...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ResetPassword/Assembly/RTResetPasswordAssembly.h
<gh_stars>0 #import <Typhoon/Typhoon.h> @class RTClientAssembly; @class RTServiceAssembly; @class RTLoginAssembly; @class RTApplicationAssembly; @class RTResetPasswordWireframe; @class RTResetPasswordViewController; @class RTResetPasswordPresenter; @class RTResetPasswordInteractor; @class RTResetPasswordValidator; @...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AddVideoToReel/Presentation/RTAddVideoToReelView.h
<reponame>bobby-vandiver/reeltime-ios<gh_stars>0 #import <Foundation/Foundation.h> #import "RTErrorMessageView.h" @protocol RTAddVideoToReelView <NSObject, RTErrorMessageView> - (void)showVideoAsAddedToReelForVideoId:(NSNumber *)videoId reelId:(NSNumber *)reelId; @end
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/ChangeDisplayName/Navigation/RTChangeDisplayNameWireframe.h
<reponame>bobby-vandiver/reeltime-ios #import "RTApplicationAwareWireframe.h" @class RTChangeDisplayNameViewController; @interface RTChangeDisplayNameWireframe : RTApplicationAwareWireframe - (instancetype)initWithViewController:(RTChangeDisplayNameViewController *)viewController applicationWirefra...
bobby-vandiver/reeltime-ios
ReelTime-iOS/UseCase/AccountRegistration/Domain/RTAccountRegistrationInteractor.h
#import <Foundation/Foundation.h> #import "RTAccountRegistrationDataManagerDelegate.h" @protocol RTAccountRegistrationInteractorDelegate; @class RTAccountRegistrationDataManager; @class RTAccountRegistrationValidator; @class RTLoginInteractor; @class RTAccountRegistration; @interface RTAccountRegistrationInteracto...