Respect the pause property at all times

This commit is contained in:
Brent Vatne 2015-05-10 16:01:25 -07:00
parent d9ea831321
commit 9c2184bd19
4 changed files with 11 additions and 9 deletions

View File

@ -37,6 +37,7 @@ static NSString *const statusKeyPath = @"status";
float _volume;
float _rate;
BOOL _muted;
BOOL _paused;
}
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher {
@ -158,7 +159,6 @@ static NSString *const statusKeyPath = @"status";
[self startProgressTimer];
[self attachListeners];
[_player play];
[self applyModifiers];
} else if(_playerItem.status == AVPlayerItemStatusFailed) {
[_eventDispatcher sendInputEventWithName:RNVideoEventLoadingError body:@{
@ -186,7 +186,6 @@ static NSString *const statusKeyPath = @"status";
- (void)playerItemDidReachEnd:(NSNotification *)notification {
AVPlayerItem *item = [notification object];
[item seekToTime:kCMTimeZero];
[_player play];
[self applyModifiers];
}
@ -203,8 +202,9 @@ static NSString *const statusKeyPath = @"status";
} else {
[self startProgressTimer];
[_player play];
}
_paused = paused;
}
- (void)setSeek:(float)seekTime {
@ -265,6 +265,7 @@ static NSString *const statusKeyPath = @"status";
}
[_player setRate:_rate];
[self setPaused:_paused];
}
- (void)setRepeatEnabled {

View File

@ -51,10 +51,12 @@ RCT_EXPORT_VIEW_PROPERTY(seek, float);
- (NSDictionary *)constantsToExport
{
return @{@"ScaleNone": AVLayerVideoGravityResizeAspect,
@"ScaleToFill": AVLayerVideoGravityResize,
@"ScaleAspectFit": AVLayerVideoGravityResizeAspect,
@"ScaleAspectFill": AVLayerVideoGravityResizeAspectFill};
return @{
@"ScaleNone": AVLayerVideoGravityResizeAspect,
@"ScaleToFill": AVLayerVideoGravityResize,
@"ScaleAspectFit": AVLayerVideoGravityResizeAspect,
@"ScaleAspectFill": AVLayerVideoGravityResizeAspectFill
};
}
@end

View File

@ -14,7 +14,6 @@ var deepDiffer = require('deepDiffer');
var Video = React.createClass({
propTypes: {
// should probably be a shape
source: PropTypes.object,
style: StyleSheetPropType(VideoStylePropTypes),
source: PropTypes.object,

View File

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