forked from johnsonsu/react-native-sound-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
43 lines (34 loc) · 845 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* @flow
*/
'use strict'
import { NativeModules, NativeEventEmitter } from 'react-native'
const { RNSoundPlayer } = NativeModules
const _soundPlayerEmitter = new NativeEventEmitter(RNSoundPlayer)
let _finishedPlayingListener = null
module.exports = {
playSoundFile: (name: string, type: string) => {
RNSoundPlayer.playSoundFile(name, type)
},
playUrl: (url: string) => {
RNSoundPlayer.playUrl(url)
},
onFinishedPlaying: (callback: (success: boolean) => any) => {
_finishedPlayingListener = _soundPlayerEmitter.addListener(
'FinishedPlaying',
callback
)
},
pause: () => {
RNSoundPlayer.pause()
},
resume: () => {
RNSoundPlayer.resume()
},
stop: () => {
RNSoundPlayer.stop()
},
unmount: () => {
_finishedPlayingListener && _finishedPlayingListener.remove()
}
}