2015-04-06 13:17:32 -06:00
|
|
|
#import "RCTView.h"
|
2015-12-22 16:39:04 -07:00
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
#import "AVKit/AVKit.h"
|
2016-03-31 13:03:54 -06:00
|
|
|
#import "UIView+FindUIViewController.h"
|
2016-03-31 15:10:25 -06:00
|
|
|
#import "RCTVideoPlayerViewController.h"
|
2016-04-01 02:52:05 -06:00
|
|
|
#import "RCTVideoPlayerViewControllerDelegate.h"
|
2015-04-06 13:17:32 -06:00
|
|
|
|
|
|
|
@class RCTEventDispatcher;
|
2015-03-30 23:07:55 -06:00
|
|
|
|
2016-04-01 02:52:05 -06:00
|
|
|
@interface RCTVideo : UIView <RCTVideoPlayerViewControllerDelegate>
|
2015-03-30 23:07:55 -06:00
|
|
|
|
2016-12-12 17:16:11 -07:00
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoLoadStart;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoLoad;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoError;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoProgress;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoSeek;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoEnd;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerWillPresent;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerDidPresent;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerWillDismiss;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerDidDismiss;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onReadyForDisplay;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onPlaybackStalled;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onPlaybackResume;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onPlaybackRateChange;
|
|
|
|
|
2015-04-06 13:17:32 -06:00
|
|
|
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
|
|
|
|
|
2015-12-22 16:39:04 -07:00
|
|
|
- (AVPlayerViewController*)createPlayerViewController:(AVPlayer*)player withPlayerItem:(AVPlayerItem*)playerItem;
|
|
|
|
|
2015-03-30 23:07:55 -06:00
|
|
|
@end
|