-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.ios.ts
91 lines (78 loc) · 2.03 KB
/
index.ios.ts
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import { NativeModules } from 'react-native'
const RNAudioSession = NativeModules.RNAudioSession
export type AudioCategory =
| 'Ambient'
| 'SoloAmbient'
| 'Playback'
| 'Record'
| 'PlayAndRecord'
| 'MultiRoute'
export type AudioCategoryOptions =
| 'MixWithOthers'
| 'DuckOthers'
| 'InterruptSpokenAudioAndMixWithOthers'
| 'AllowBluetooth'
| 'AllowBluetoothA2DP'
| 'AllowAirPlay'
| 'DefaultToSpeaker'
export type AudioMode =
| 'Default'
| 'VoiceChat'
| 'VideoChat'
| 'GameChat'
| 'VideoRecording'
| 'Measurement'
| 'MoviePlayback'
| 'SpokenAudio'
const currentCategory = () =>
new Promise<AudioCategory>((resolve, reject) => {
RNAudioSession.category((category?: AudioCategory) => {
if (category) {
resolve(category)
} else {
reject('Unable to get current category')
}
})
})
const currentCategoryOptions = () =>
new Promise<AudioCategoryOptions>((resolve, reject) => {
RNAudioSession.options((options?: AudioCategoryOptions) => {
if (options) {
resolve(options)
} else {
reject('Unable to get current options')
}
})
})
const currentMode = () =>
new Promise<AudioMode>((resolve, reject) => {
RNAudioSession.mode((mode: AudioMode) => {
if (mode) {
resolve(mode)
} else {
reject('Unable to get current mode')
}
})
})
const setActive = (active: boolean): Promise<void> =>
RNAudioSession.setActive(active)
const setCategory = (
category: AudioCategory,
options?: AudioCategoryOptions
): Promise<void> => RNAudioSession.setCategory(category, options)
const setMode = (mode: AudioMode): Promise<void> => RNAudioSession.setMode(mode)
const setCategoryAndMode = (
category: AudioCategory,
mode: AudioMode,
options?: AudioCategoryOptions
): Promise<void> => RNAudioSession.setCategoryAndMode(category, mode, options)
const AudioSession = {
currentCategory,
currentCategoryOptions,
currentMode,
setActive,
setCategory,
setMode,
setCategoryAndMode
}
export default AudioSession