Initial commit
This commit is contained in:
commit
ea7a7bbcf7
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
node_modules/**/*
|
||||||
|
RCTVideo.xcodeproj/xcuserdata/**/*
|
||||||
|
RCTVideo.xcodeproj/project.xcworkspace/**/*
|
5
RCTVideo.h
Normal file
5
RCTVideo.h
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
|
||||||
|
@interface RCTVideo : UIView
|
||||||
|
|
||||||
|
@end
|
60
RCTVideo.m
Normal file
60
RCTVideo.m
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
#import "RCTVideo.h"
|
||||||
|
#import "RCTLog.h"
|
||||||
|
|
||||||
|
@import MediaPlayer;
|
||||||
|
|
||||||
|
@implementation RCTVideo
|
||||||
|
{
|
||||||
|
MPMoviePlayerController *_player;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id)init
|
||||||
|
{
|
||||||
|
if ((self = [super init])) {
|
||||||
|
_player = [[MPMoviePlayerController alloc] init];
|
||||||
|
[self addSubview: _player.view];
|
||||||
|
}
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setSrc:(NSString *)source
|
||||||
|
{
|
||||||
|
NSURL *videoURL = [[NSURL alloc] initFileURLWithPath:[[NSBundle mainBundle] pathForResource:source ofType:@"mp4"]];
|
||||||
|
[_player setContentURL:videoURL];
|
||||||
|
[_player setControlStyle:MPMovieControlStyleNone];
|
||||||
|
[_player setScalingMode:MPMovieScalingModeNone];
|
||||||
|
[_player setRepeatMode:MPMovieRepeatModeOne];
|
||||||
|
[_player prepareToPlay];
|
||||||
|
[_player play];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setResizeMode:(NSInteger)mode
|
||||||
|
{
|
||||||
|
[_player setScalingMode:mode];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSArray *)reactSubviews
|
||||||
|
{
|
||||||
|
NSArray *subviews = @[_player.view];
|
||||||
|
return subviews;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)insertReactSubview:(UIView *)view atIndex:(NSInteger)atIndex
|
||||||
|
{
|
||||||
|
RCTLogError(@"video cannot have any subviews");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)removeReactSubview:(UIView *)subview
|
||||||
|
{
|
||||||
|
RCTLogError(@"video cannot have any subviews");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)layoutSubviews
|
||||||
|
{
|
||||||
|
[super layoutSubviews];
|
||||||
|
_player.view.frame = self.bounds;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
256
RCTVideo.xcodeproj/project.pbxproj
Normal file
256
RCTVideo.xcodeproj/project.pbxproj
Normal file
@ -0,0 +1,256 @@
|
|||||||
|
// !$*UTF8*$!
|
||||||
|
{
|
||||||
|
archiveVersion = 1;
|
||||||
|
classes = {
|
||||||
|
};
|
||||||
|
objectVersion = 46;
|
||||||
|
objects = {
|
||||||
|
|
||||||
|
/* Begin PBXBuildFile section */
|
||||||
|
BBD49E3F1AC8DEF000610F8E /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD49E3A1AC8DEF000610F8E /* RCTVideo.m */; };
|
||||||
|
BBD49E401AC8DEF000610F8E /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD49E3C1AC8DEF000610F8E /* RCTVideoManager.m */; };
|
||||||
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
|
/* Begin PBXCopyFilesBuildPhase section */
|
||||||
|
58B511D91A9E6C8500147676 /* CopyFiles */ = {
|
||||||
|
isa = PBXCopyFilesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
dstPath = "include/$(PRODUCT_NAME)";
|
||||||
|
dstSubfolderSpec = 16;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
|
/* End PBXCopyFilesBuildPhase section */
|
||||||
|
|
||||||
|
/* Begin PBXFileReference section */
|
||||||
|
134814201AA4EA6300B7C361 /* libRCTVideo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTVideo.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
|
BBD49E391AC8DEF000610F8E /* RCTVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTVideo.h; sourceTree = "<group>"; };
|
||||||
|
BBD49E3A1AC8DEF000610F8E /* RCTVideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTVideo.m; sourceTree = "<group>"; };
|
||||||
|
BBD49E3B1AC8DEF000610F8E /* RCTVideoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTVideoManager.h; sourceTree = "<group>"; };
|
||||||
|
BBD49E3C1AC8DEF000610F8E /* RCTVideoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTVideoManager.m; sourceTree = "<group>"; };
|
||||||
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
|
58B511D81A9E6C8500147676 /* Frameworks */ = {
|
||||||
|
isa = PBXFrameworksBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
|
/* End PBXFrameworksBuildPhase section */
|
||||||
|
|
||||||
|
/* Begin PBXGroup section */
|
||||||
|
134814211AA4EA7D00B7C361 /* Products */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
134814201AA4EA6300B7C361 /* libRCTVideo.a */,
|
||||||
|
);
|
||||||
|
name = Products;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
58B511D21A9E6C8500147676 = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
BBD49E391AC8DEF000610F8E /* RCTVideo.h */,
|
||||||
|
BBD49E3A1AC8DEF000610F8E /* RCTVideo.m */,
|
||||||
|
BBD49E3B1AC8DEF000610F8E /* RCTVideoManager.h */,
|
||||||
|
BBD49E3C1AC8DEF000610F8E /* RCTVideoManager.m */,
|
||||||
|
134814211AA4EA7D00B7C361 /* Products */,
|
||||||
|
);
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
/* End PBXGroup section */
|
||||||
|
|
||||||
|
/* Begin PBXNativeTarget section */
|
||||||
|
58B511DA1A9E6C8500147676 /* RCTVideo */ = {
|
||||||
|
isa = PBXNativeTarget;
|
||||||
|
buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RCTVideo" */;
|
||||||
|
buildPhases = (
|
||||||
|
58B511D71A9E6C8500147676 /* Sources */,
|
||||||
|
58B511D81A9E6C8500147676 /* Frameworks */,
|
||||||
|
58B511D91A9E6C8500147676 /* CopyFiles */,
|
||||||
|
);
|
||||||
|
buildRules = (
|
||||||
|
);
|
||||||
|
dependencies = (
|
||||||
|
);
|
||||||
|
name = RCTVideo;
|
||||||
|
productName = RCTDataManager;
|
||||||
|
productReference = 134814201AA4EA6300B7C361 /* libRCTVideo.a */;
|
||||||
|
productType = "com.apple.product-type.library.static";
|
||||||
|
};
|
||||||
|
/* End PBXNativeTarget section */
|
||||||
|
|
||||||
|
/* Begin PBXProject section */
|
||||||
|
58B511D31A9E6C8500147676 /* Project object */ = {
|
||||||
|
isa = PBXProject;
|
||||||
|
attributes = {
|
||||||
|
LastUpgradeCheck = 0610;
|
||||||
|
ORGANIZATIONNAME = Facebook;
|
||||||
|
TargetAttributes = {
|
||||||
|
58B511DA1A9E6C8500147676 = {
|
||||||
|
CreatedOnToolsVersion = 6.1.1;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RCTVideo" */;
|
||||||
|
compatibilityVersion = "Xcode 3.2";
|
||||||
|
developmentRegion = English;
|
||||||
|
hasScannedForEncodings = 0;
|
||||||
|
knownRegions = (
|
||||||
|
en,
|
||||||
|
);
|
||||||
|
mainGroup = 58B511D21A9E6C8500147676;
|
||||||
|
productRefGroup = 58B511D21A9E6C8500147676;
|
||||||
|
projectDirPath = "";
|
||||||
|
projectRoot = "";
|
||||||
|
targets = (
|
||||||
|
58B511DA1A9E6C8500147676 /* RCTVideo */,
|
||||||
|
);
|
||||||
|
};
|
||||||
|
/* End PBXProject section */
|
||||||
|
|
||||||
|
/* Begin PBXSourcesBuildPhase section */
|
||||||
|
58B511D71A9E6C8500147676 /* Sources */ = {
|
||||||
|
isa = PBXSourcesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
BBD49E3F1AC8DEF000610F8E /* RCTVideo.m in Sources */,
|
||||||
|
BBD49E401AC8DEF000610F8E /* RCTVideoManager.m in Sources */,
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
|
/* End PBXSourcesBuildPhase section */
|
||||||
|
|
||||||
|
/* Begin XCBuildConfiguration section */
|
||||||
|
58B511ED1A9E6C8500147676 /* Debug */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
buildSettings = {
|
||||||
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||||
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CLANG_ENABLE_OBJC_ARC = YES;
|
||||||
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||||
|
CLANG_WARN_EMPTY_BODY = YES;
|
||||||
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||||
|
CLANG_WARN_INT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||||
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
|
COPY_PHASE_STRIP = NO;
|
||||||
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
|
GCC_OPTIMIZATION_LEVEL = 0;
|
||||||
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
|
"DEBUG=1",
|
||||||
|
"$(inherited)",
|
||||||
|
);
|
||||||
|
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||||
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||||
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||||
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
||||||
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
|
SDKROOT = iphoneos;
|
||||||
|
};
|
||||||
|
name = Debug;
|
||||||
|
};
|
||||||
|
58B511EE1A9E6C8500147676 /* Release */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
buildSettings = {
|
||||||
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||||
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CLANG_ENABLE_OBJC_ARC = YES;
|
||||||
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||||
|
CLANG_WARN_EMPTY_BODY = YES;
|
||||||
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||||
|
CLANG_WARN_INT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||||
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
|
COPY_PHASE_STRIP = YES;
|
||||||
|
ENABLE_NS_ASSERTIONS = NO;
|
||||||
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||||
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||||
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
||||||
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
|
SDKROOT = iphoneos;
|
||||||
|
VALIDATE_PRODUCT = YES;
|
||||||
|
};
|
||||||
|
name = Release;
|
||||||
|
};
|
||||||
|
58B511F01A9E6C8500147676 /* Debug */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
buildSettings = {
|
||||||
|
HEADER_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||||
|
"$(SRCROOT)/node_modules/react-native/React/**",
|
||||||
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
||||||
|
OTHER_LDFLAGS = "-ObjC";
|
||||||
|
PRODUCT_NAME = RCTVideo;
|
||||||
|
SKIP_INSTALL = YES;
|
||||||
|
};
|
||||||
|
name = Debug;
|
||||||
|
};
|
||||||
|
58B511F11A9E6C8500147676 /* Release */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
buildSettings = {
|
||||||
|
HEADER_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||||
|
"$(SRCROOT)/node_modules/react-native/React/**",
|
||||||
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
||||||
|
OTHER_LDFLAGS = "-ObjC";
|
||||||
|
PRODUCT_NAME = RCTVideo;
|
||||||
|
SKIP_INSTALL = YES;
|
||||||
|
};
|
||||||
|
name = Release;
|
||||||
|
};
|
||||||
|
/* End XCBuildConfiguration section */
|
||||||
|
|
||||||
|
/* Begin XCConfigurationList section */
|
||||||
|
58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RCTVideo" */ = {
|
||||||
|
isa = XCConfigurationList;
|
||||||
|
buildConfigurations = (
|
||||||
|
58B511ED1A9E6C8500147676 /* Debug */,
|
||||||
|
58B511EE1A9E6C8500147676 /* Release */,
|
||||||
|
);
|
||||||
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
|
};
|
||||||
|
58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RCTVideo" */ = {
|
||||||
|
isa = XCConfigurationList;
|
||||||
|
buildConfigurations = (
|
||||||
|
58B511F01A9E6C8500147676 /* Debug */,
|
||||||
|
58B511F11A9E6C8500147676 /* Release */,
|
||||||
|
);
|
||||||
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
|
};
|
||||||
|
/* End XCConfigurationList section */
|
||||||
|
};
|
||||||
|
rootObject = 58B511D31A9E6C8500147676 /* Project object */;
|
||||||
|
}
|
5
RCTVideoManager.h
Normal file
5
RCTVideoManager.h
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#import "RCTViewManager.h"
|
||||||
|
|
||||||
|
@interface RCTVideoManager : RCTViewManager
|
||||||
|
|
||||||
|
@end
|
26
RCTVideoManager.m
Normal file
26
RCTVideoManager.m
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#import "RCTVideoManager.h"
|
||||||
|
#import "RCTVideo.h"
|
||||||
|
#import "RCTBridge.h"
|
||||||
|
@import MediaPlayer;
|
||||||
|
|
||||||
|
@implementation RCTVideoManager
|
||||||
|
|
||||||
|
@synthesize bridge = _bridge;
|
||||||
|
|
||||||
|
- (UIView *)view
|
||||||
|
{
|
||||||
|
return [[RCTVideo alloc] init];
|
||||||
|
}
|
||||||
|
|
||||||
|
RCT_EXPORT_VIEW_PROPERTY(src, NSString);
|
||||||
|
RCT_EXPORT_VIEW_PROPERTY(resizeMode, NSInteger);
|
||||||
|
|
||||||
|
- (NSDictionary *)constantsToExport
|
||||||
|
{
|
||||||
|
return @{@"ScaleNone": @(MPMovieScalingModeNone),
|
||||||
|
@"ScaleToFill": @(MPMovieScalingModeFill),
|
||||||
|
@"ScaleAspectFit": @(MPMovieScalingModeAspectFit),
|
||||||
|
@"ScaleAspectFill": @(MPMovieScalingModeAspectFill)};
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
4
README.md
Normal file
4
README.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
## react-native-video
|
||||||
|
|
||||||
|
A <Video> component for react-native, as seen in
|
||||||
|
[react-native-login](https://github.com/brentvatne/react-native-login).
|
11
Video.android.js
Normal file
11
Video.android.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var warning = require('warning');
|
||||||
|
|
||||||
|
var Video = {
|
||||||
|
test: function() {
|
||||||
|
warning("Not yet implemented for Android.");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = Video;
|
62
Video.ios.js
Normal file
62
Video.ios.js
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
var React = require('React');
|
||||||
|
var NativeModules = require('NativeModules');
|
||||||
|
var ReactIOSViewAttributes = require('ReactIOSViewAttributes');
|
||||||
|
var StyleSheet = require('StyleSheet');
|
||||||
|
var createReactIOSNativeComponentClass = require('createReactIOSNativeComponentClass');
|
||||||
|
var PropTypes = require('ReactPropTypes');
|
||||||
|
var StyleSheetPropType = require('StyleSheetPropType');
|
||||||
|
var VideoResizeMode = require('./VideoResizeMode');
|
||||||
|
var VideoStylePropTypes = require('./VideoStylePropTypes');
|
||||||
|
var NativeMethodsMixin = require('NativeMethodsMixin');
|
||||||
|
var flattenStyle = require('flattenStyle');
|
||||||
|
var merge = require('merge');
|
||||||
|
|
||||||
|
var Video = React.createClass({
|
||||||
|
propTypes: {
|
||||||
|
source: PropTypes.string,
|
||||||
|
style: StyleSheetPropType(VideoStylePropTypes),
|
||||||
|
},
|
||||||
|
|
||||||
|
mixins: [NativeMethodsMixin],
|
||||||
|
|
||||||
|
viewConfig: {
|
||||||
|
uiViewClassName: 'UIView',
|
||||||
|
validAttributes: ReactIOSViewAttributes.UIView
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function() {
|
||||||
|
var style = flattenStyle([styles.base, this.props.style]);
|
||||||
|
var source = this.props.source;
|
||||||
|
|
||||||
|
var resizeMode;
|
||||||
|
var contentModes = NativeModules.VideoManager;
|
||||||
|
if (style.resizeMode === VideoResizeMode.stretch) {
|
||||||
|
resizeMode = contentModes.ScaleToFill;
|
||||||
|
} else if (style.resizeMode === VideoResizeMode.contain) {
|
||||||
|
resizeMode = contentModes.ScaleAspectFit;
|
||||||
|
} else {
|
||||||
|
resizeMode = contentModes.ScaleAspectFill;
|
||||||
|
}
|
||||||
|
|
||||||
|
var nativeProps = merge(this.props, {
|
||||||
|
style,
|
||||||
|
resizeMode,
|
||||||
|
src: source,
|
||||||
|
});
|
||||||
|
|
||||||
|
return <RCTVideo {... nativeProps} />
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
var RCTVideo = createReactIOSNativeComponentClass({
|
||||||
|
validAttributes: merge(ReactIOSViewAttributes.UIView, {src: true, resizeMode: true}),
|
||||||
|
uiViewClassName: 'RCTVideo',
|
||||||
|
});
|
||||||
|
|
||||||
|
var styles = StyleSheet.create({
|
||||||
|
base: {
|
||||||
|
overflow: 'hidden',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = Video;
|
11
VideoResizeMode.js
Normal file
11
VideoResizeMode.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var keyMirror = require('keyMirror');
|
||||||
|
|
||||||
|
var VideoResizeMode = keyMirror({
|
||||||
|
contain: null,
|
||||||
|
cover: null,
|
||||||
|
stretch: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = VideoResizeMode;
|
12
VideoStylePropTypes.js
Normal file
12
VideoStylePropTypes.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var VideoResizeMode = require('./VideoResizeMode');
|
||||||
|
var LayoutPropTypes = require('LayoutPropTypes');
|
||||||
|
var ReactPropTypes = require('ReactPropTypes');
|
||||||
|
|
||||||
|
var VideoStylePropTypes = {
|
||||||
|
...LayoutPropTypes,
|
||||||
|
resizeMode: ReactPropTypes.oneOf(Object.keys(VideoResizeMode)),
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = VideoStylePropTypes;
|
16
package.json
Normal file
16
package.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"name": "react-native-video",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "A <Video> element for react-native",
|
||||||
|
"main": "Video.ios.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)",
|
||||||
|
"dependencies": {
|
||||||
|
"react-native": "^0.3.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"jest-cli": "0.2.1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user