-
Notifications
You must be signed in to change notification settings - Fork 159
/
index.js
127 lines (106 loc) · 3.02 KB
/
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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import { NativeModules, NativeEventEmitter, Platform } from 'react-native';
const TextToSpeech = NativeModules.TextToSpeech;
class Tts extends NativeEventEmitter {
constructor() {
super(TextToSpeech);
}
getInitStatus() {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return Promise.resolve(true);
}
return TextToSpeech.getInitStatus();
}
requestInstallEngine() {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return Promise.resolve(true);
}
return TextToSpeech.requestInstallEngine();
}
requestInstallData() {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return Promise.resolve(true);
}
return TextToSpeech.requestInstallData();
}
setDucking(enabled) {
if (Platform.OS === 'windows') {
return Promise.resolve(true);
}
return TextToSpeech.setDucking(enabled);
}
setDefaultEngine(engineName) {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return Promise.resolve(true);
}
return TextToSpeech.setDefaultEngine(engineName);
}
setDefaultVoice(voiceId) {
return TextToSpeech.setDefaultVoice(voiceId);
}
setDefaultRate(rate, skipTransform) {
return TextToSpeech.setDefaultRate(rate, !!skipTransform);
}
setDefaultPitch(pitch) {
return TextToSpeech.setDefaultPitch(pitch);
}
setDefaultLanguage(language) {
return TextToSpeech.setDefaultLanguage(language);
}
setIgnoreSilentSwitch(ignoreSilentSwitch) {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return TextToSpeech.setIgnoreSilentSwitch(ignoreSilentSwitch);
}
return Promise.resolve(true);
}
voices() {
return TextToSpeech.voices();
}
engines() {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return Promise.resolve([]);
}
return TextToSpeech.engines();
}
speak(utterance, options = {}) {
// compatibility with old-style voiceId argument passing
if (typeof options === 'string') {
if (Platform.OS === 'ios') {
return TextToSpeech.speak(utterance, { iosVoiceId: options });
} else {
return TextToSpeech.speak(utterance, {});
}
} else {
if (Platform.OS === 'ios' || Platform.OS === 'windows') {
return TextToSpeech.speak(utterance, options);
} else {
return TextToSpeech.speak(utterance, options.androidParams || {});
}
}
}
stop(onWordBoundary) {
if (Platform.OS === 'ios') {
return TextToSpeech.stop(onWordBoundary);
} else {
return TextToSpeech.stop();
}
}
pause(onWordBoundary) {
if (Platform.OS === 'ios') {
return TextToSpeech.pause(onWordBoundary);
}
return Promise.resolve(false);
}
resume() {
if (Platform.OS === 'ios') {
return TextToSpeech.resume();
}
return Promise.resolve(false);
}
addEventListener(type, handler) {
return this.addListener(type, handler);
}
removeEventListener(type, handler) {
this.removeListener(type, handler);
}
}
export default new Tts();