Add an onLoad callback to fetch video details

This commit is contained in:
Brent Vatne 2015-04-06 12:17:32 -07:00
parent 432d156160
commit 4666b407e0
5 changed files with 57 additions and 17 deletions

View File

@ -1,5 +1,9 @@
#import <UIKit/UIKit.h> #import "RCTView.h"
@class RCTEventDispatcher;
@interface RCTVideo : UIView @interface RCTVideo : UIView
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
@end @end

View File

@ -1,32 +1,51 @@
#import "RCTVideo.h" #import "RCTVideo.h"
#import "RCTLog.h" #import "RCTLog.h"
#import "RCTBridgeModule.h"
#import "RCTEventDispatcher.h"
#import "UIView+React.h"
#import <AVFoundation/AVFoundation.h> #import <AVFoundation/AVFoundation.h>
@implementation RCTVideo @implementation RCTVideo
{ {
AVPlayer *_player; AVPlayer *_player;
AVPlayerLayer *_playerLayer; AVPlayerLayer *_playerLayer;
NSURL *_videoURL;
RCTEventDispatcher *_eventDispatcher;
} }
- (id)init - (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher
{ {
if ((self = [super init])) { if ((self = [super init])) {
_eventDispatcher = eventDispatcher;
} }
return self; return self;
} }
- (void)setSrc:(NSString *)source - (void)setSrc:(NSString *)source
{ {
NSURL *videoURL = [[NSURL alloc] initFileURLWithPath:[[NSBundle mainBundle] pathForResource:source ofType:@"mp4"]]; _videoURL = [[NSURL alloc] initFileURLWithPath:[[NSBundle mainBundle] pathForResource:source ofType:@"mp4"]];
_player = [AVPlayer playerWithURL:videoURL]; _player = [AVPlayer playerWithURL:_videoURL];
_player.actionAtItemEnd = AVPlayerActionAtItemEndNone; _player.actionAtItemEnd = AVPlayerActionAtItemEndNone;
_playerLayer = [AVPlayerLayer playerLayerWithPlayer:_player]; _playerLayer = [AVPlayerLayer playerLayerWithPlayer:_player];
_playerLayer.frame = self.bounds; _playerLayer.frame = self.bounds;
_playerLayer.needsDisplayOnBoundsChange = YES; _playerLayer.needsDisplayOnBoundsChange = YES;
[self.layer addSublayer:_playerLayer]; [self.layer addSublayer:_playerLayer];
self.layer.needsDisplayOnBoundsChange = YES; self.layer.needsDisplayOnBoundsChange = YES;
[_player play];
AVPlayerItem *video = [_player currentItem];
[_eventDispatcher sendInputEventWithName:@"videoLoaded" body:@{
@"duration": [NSNumber numberWithFloat:CMTimeGetSeconds(video.asset.duration)],
@"currentTime": [NSNumber numberWithFloat:CMTimeGetSeconds(video.currentTime)],
@"canPlayReverse": [NSNumber numberWithBool:video.canPlayReverse],
@"canPlayFastForward": [NSNumber numberWithBool:video.canPlayFastForward],
@"canPlaySlowForward": [NSNumber numberWithBool:video.canPlaySlowForward],
@"canPlaySlowReverse": [NSNumber numberWithBool:video.canPlaySlowReverse],
@"canStepBackward": [NSNumber numberWithBool:video.canStepBackward],
@"canStepForward": [NSNumber numberWithBool:video.canStepForward],
@"target": self.reactTag
}];
} }
- (void)setResizeMode:(NSString*)mode - (void)setResizeMode:(NSString*)mode
@ -36,11 +55,11 @@
- (void)setPause:(BOOL)wantsToPause - (void)setPause:(BOOL)wantsToPause
{ {
if (wantsToPause) { if (wantsToPause) {
[_player pause]; [_player pause];
} else { } else {
[_player play]; [_player play];
} }
} }

View File

@ -9,7 +9,18 @@
- (UIView *)view - (UIView *)view
{ {
return [[RCTVideo alloc] init]; return [[RCTVideo alloc] initWithEventDispatcher:self.bridge.eventDispatcher];
}
/* onLoadStart, onLoad, and onError to stay consistent with Image */
- (NSDictionary *)customDirectEventTypes
{
return @{
@"videoLoaded": @{
@"registrationName": @"onLoad"
},
};
} }
RCT_EXPORT_VIEW_PROPERTY(src, NSString); RCT_EXPORT_VIEW_PROPERTY(src, NSString);
@ -25,4 +36,4 @@ RCT_EXPORT_VIEW_PROPERTY(pause, BOOL);
@"ScaleAspectFill": AVLayerVideoGravityResizeAspectFill}; @"ScaleAspectFill": AVLayerVideoGravityResizeAspectFill};
} }
@end @end

View File

@ -1,4 +1,4 @@
var React = require('React'); var React = require('react-native');
var NativeModules = require('NativeModules'); var NativeModules = require('NativeModules');
var ReactIOSViewAttributes = require('ReactIOSViewAttributes'); var ReactIOSViewAttributes = require('ReactIOSViewAttributes');
var StyleSheet = require('StyleSheet'); var StyleSheet = require('StyleSheet');
@ -18,6 +18,7 @@ var Video = React.createClass({
resizeMode: PropTypes.string, resizeMode: PropTypes.string,
repeat: PropTypes.bool, repeat: PropTypes.bool,
pause: PropTypes.bool, pause: PropTypes.bool,
onLoad: PropTypes.func,
}, },
mixins: [NativeMethodsMixin], mixins: [NativeMethodsMixin],
@ -27,7 +28,11 @@ var Video = React.createClass({
validAttributes: ReactIOSViewAttributes.UIView validAttributes: ReactIOSViewAttributes.UIView
}, },
render: function() { _onLoad(event) {
this.props.onLoad && this.props.onLoad(event.nativeEvent);
},
render() {
var style = flattenStyle([styles.base, this.props.style]); var style = flattenStyle([styles.base, this.props.style]);
var source = this.props.source; var source = this.props.source;
@ -46,6 +51,7 @@ var Video = React.createClass({
style, style,
resizeMode: resizeMode, resizeMode: resizeMode,
src: source, src: source,
onLoad: this._onLoad,
}); });
return <RCTVideo {... nativeProps} /> return <RCTVideo {... nativeProps} />
@ -54,7 +60,7 @@ var Video = React.createClass({
var RCTVideo = createReactIOSNativeComponentClass({ var RCTVideo = createReactIOSNativeComponentClass({
validAttributes: merge(ReactIOSViewAttributes.UIView, validAttributes: merge(ReactIOSViewAttributes.UIView,
{src: true, resizeMode: true, repeat: true, pause: true}), {src: true, resizeMode: true, repeat: true, pause: true}),
uiViewClassName: 'RCTVideo', uiViewClassName: 'RCTVideo',
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "react-native-video", "name": "react-native-video",
"version": "0.1.7", "version": "0.1.8",
"description": "A <Video> element for react-native", "description": "A <Video> element for react-native",
"main": "Video.ios.js", "main": "Video.ios.js",
"author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)", "author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)",