@conquerplus/react-native-vimeo-iframe
v1.0.4
Published
React Native Vimeo Iframe is a library to render Vimeo videos in a React Native app. This component allows you to embed a Vimeo video in your app and have full access to the Vimeo player JS API (more information https://developer.vimeo.com/player/js-api).
Downloads
2
Maintainers
Readme
React Native Vimeo Iframe
React Native Vimeo Iframe is a library to render Vimeo videos in a React Native app. This component allows you to embed a Vimeo video in your app and have full access to the Vimeo player JS API (more information https://developer.vimeo.com/player/js-api).
Installation
Go through the instructions for installing the
React Native Webview
library: https://github.com/react-native-webview/react-native-webview.Run
npm install react-native-vimeo-iframe
oryarn add react-native-vimeo-iframe
within your project.Compile and build to make sure everything is set up properly.
Usage
const videoCallbacks = {
timeupdate: (data: any) => console.log('timeupdate: ', data),
play: (data: any) => console.log('play: ', data),
pause: (data: any) => console.log('pause: ', data),
fullscreenchange: (data: any) => console.log('fullscreenchange: ', data),
ended: (data: any) => console.log('ended: ', data),
};
return (
<Vimeo
videoId={'76979871'}
handlers={Object.keys(videoCallbacks).map((name) => ({ name, callback: videoCallbacks[name] }))}
/>
)
How it works
Internally, a webview loads a HTML page. This HTML page loads your Vimeo video in an iFrame, then uses the Froogaloop JS library provided by Vimeo to pass event information to your application.
Example
If you want to see conquer-plus/react-native-vimeo-iframe
in action, just move into the example folder and run yarn && cd ios && pod install && cd .. && yarn ios
or yarn && yarn android
. By seeing its source code, you will have a better understanding of the library usage.
Contributors
Acknowledgements
- @Myagi for
react-native-vimeo
, I based on that library to make that library with the latest versions of react-native.