forked from ak1394/react-native-tts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
138 lines (113 loc) · 3.53 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
128
129
130
131
132
133
134
135
136
137
138
import { NativeModules, TurboModuleRegistry, NativeEventEmitter, Platform } from 'react-native';
const TextToSpeech = TurboModuleRegistry?TurboModuleRegistry.get('TTSNativeModule'): NativeModules.TextToSpeech;
class Tts extends NativeEventEmitter {
eventMap = {};
constructor() {
super(TextToSpeech);
}
getInitStatus() {
if (Platform.OS === 'ios' || Platform.OS === 'windows' || Platform.OS === 'harmony') {
return Promise.resolve(true);
}
return TextToSpeech.getInitStatus();
}
requestInstallEngine() {
if (Platform.OS === 'ios' || Platform.OS === 'windows' || Platform.OS === 'harmony') {
return Promise.resolve(true);
}
return TextToSpeech.requestInstallEngine();
}
requestInstallData() {
if (Platform.OS === 'ios' || Platform.OS === 'windows' || Platform.OS === 'harmony') {
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' || Platform.OS === 'harmony') {
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' || Platform.OS === 'harmony') {
return Promise.resolve([]);
}
return TextToSpeech.engines();
}
speak(utterance, options) {
// compatibility with old-style voiceId argument passing
if (typeof options === 'string') {
if (Platform.OS === 'ios' || Platform.OS === 'harmony') {
return TextToSpeech.speak(utterance, { iosVoiceId: options });
} else {
return TextToSpeech.speak(utterance, {});
}
} else {
if (Platform.OS === 'ios' || Platform.OS === 'windows' || Platform.OS === 'harmony') {
return TextToSpeech.speak(utterance, options);
} else {
return TextToSpeech.speak(utterance, options?.androidParams || {});
}
}
}
stop(onWordBoundary) {
if (Platform.OS === 'ios' || Platform.OS === 'harmony') {
return TextToSpeech.stop(onWordBoundary);
} else {
return TextToSpeech.stop();
}
}
pause(onWordBoundary) {
if (Platform.OS === 'ios' || Platform.OS === 'harmony') {
return TextToSpeech.pause(onWordBoundary);
}
return Promise.resolve(false);
}
resume() {
if (Platform.OS === 'ios' || Platform.OS === 'harmony') {
return TextToSpeech.resume();
}
return Promise.resolve(false);
}
addEventListener(type, handler) {
const fn = this.addListener(type, handler);
this.eventMap[type] = fn;
}
removeEventListener(type, handler) {
const fn = this.eventMap[type];
if (fn) {
fn.remove();
delete this.eventMap[type];
handler(type);
}
}
}
export default new Tts();