-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuseTTSText.ts
More file actions
1200 lines (1153 loc) · 43.5 KB
/
useTTSText.ts
File metadata and controls
1200 lines (1153 loc) · 43.5 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { useAtomValue } from 'jotai';
import { useCallback, useMemo } from 'react';
import type { Station } from '~/@types/graphql';
import { parenthesisRegexp } from '../constants';
import { APP_THEME, type AppTheme } from '../models/Theme';
import stationState from '../store/atoms/station';
import { themeAtom } from '../store/atoms/theme';
import getIsPass from '../utils/isPass';
import katakanaToHiragana from '../utils/kanaToHiragana';
import { useAfterNextStation } from './useAfterNextStation';
import { useBounds } from './useBounds';
import { useConnectedLines } from './useConnectedLines';
import { useCurrentLine } from './useCurrentLine';
import { useCurrentStation } from './useCurrentStation';
import { useCurrentTrainType } from './useCurrentTrainType';
import { useIsTerminus } from './useIsTerminus';
import { useLoopLine } from './useLoopLine';
import { useLoopLineBound } from './useLoopLineBound';
import { useNextStation } from './useNextStation';
import { useSlicedStations } from './useSlicedStations';
import { useStationNumberIndexFunc } from './useStationNumberIndexFunc';
import { useStoppingState } from './useStoppingState';
import { useTransferLines } from './useTransferLines';
const EMPTY_TTS_TEXT = {
[APP_THEME.TOKYO_METRO]: { NEXT: '', ARRIVING: '' },
[APP_THEME.TY]: { NEXT: '', ARRIVING: '' },
[APP_THEME.YAMANOTE]: { NEXT: '', ARRIVING: '' },
[APP_THEME.JR_WEST]: { NEXT: '', ARRIVING: '' },
[APP_THEME.SAIKYO]: { NEXT: '', ARRIVING: '' },
[APP_THEME.TOEI]: { NEXT: '', ARRIVING: '' },
[APP_THEME.LED]: { NEXT: '', ARRIVING: '' },
[APP_THEME.JO]: { NEXT: '', ARRIVING: '' },
[APP_THEME.JL]: { NEXT: '', ARRIVING: '' },
[APP_THEME.JR_KYUSHU]: { NEXT: '', ARRIVING: '' },
};
export const useTTSText = (
firstSpeech = true,
enabled = false
): [string, string] | [] => {
const theme = useAtomValue(themeAtom);
const {
selectedBound: selectedBoundOrigin,
selectedDirection,
stations,
} = useAtomValue(stationState);
const station = useCurrentStation();
const currentLineOrigin = useCurrentLine();
const connectedLines = useConnectedLines();
const transferLines = useTransferLines();
const currentTrainTypeOrigin = useCurrentTrainType();
const loopLineBoundJa = useLoopLineBound(false, 'JA');
const loopLineBoundEn = useLoopLineBound(false, 'EN');
const { directionalStops } = useBounds(stations);
const nextStationOrigin = useNextStation();
const isNextStopTerminus = useIsTerminus(nextStationOrigin);
const { isLoopLine, isPartiallyLoopLine, isYamanoteLine } = useLoopLine();
const slicedStationsOrigin = useSlicedStations();
const stoppingState = useStoppingState();
const getStationNumberIndex = useStationNumberIndexFunc();
const nextStationNumber = useMemo(() => {
if (!nextStationOrigin) {
return;
}
if (!nextStationOrigin.stationNumbers) {
return;
}
const stationNumberIndex = getStationNumberIndex(nextStationOrigin);
// Validate stationNumberIndex is a valid integer within array bounds
if (
!Number.isInteger(stationNumberIndex) ||
stationNumberIndex < 0 ||
stationNumberIndex >= nextStationOrigin.stationNumbers.length
) {
return;
}
return nextStationOrigin.stationNumbers[stationNumberIndex];
}, [getStationNumberIndex, nextStationOrigin]);
const replaceJapaneseText = useCallback(
(
name: string | undefined | null,
nameKatakana: string | undefined | null
) =>
!name || !nameKatakana
? `<sub alias="かくえきていしゃ">各駅停車</sub>`
: `<sub alias="${katakanaToHiragana(nameKatakana)}">${name}</sub>`,
[]
);
const currentLine = useMemo(
() => currentLineOrigin ?? null,
[currentLineOrigin]
);
const selectedBound = useMemo(
() => selectedBoundOrigin ?? null,
[selectedBoundOrigin]
);
const currentTrainType = useMemo(
() =>
currentTrainTypeOrigin && {
...currentTrainTypeOrigin,
nameRoman: currentTrainTypeOrigin.nameRoman?.replace(
parenthesisRegexp,
''
),
},
[currentTrainTypeOrigin]
);
const yamanoteTrainTypeJa = useMemo(() => {
if (!isYamanoteLine || !selectedDirection) {
return null;
}
return selectedDirection === 'INBOUND'
? 'やまのて線内回り'
: 'やまのて線外回り';
}, [isYamanoteLine, selectedDirection]);
const yamanoteTrainTypeEn = isYamanoteLine ? 'Yamanote Line' : null;
const boundForJa = useMemo(
() =>
isLoopLine
? // NOTE: メジャーな駅だからreplaceJapaneseTextは要らない...はず
loopLineBoundJa?.boundFor?.replace(/・/g, '<break time="250ms"/>')
: replaceJapaneseText(
`${directionalStops?.map((s) => s?.name).join('・')}${
isPartiallyLoopLine ? '方面' : ''
}`,
`${directionalStops?.map((s) => s?.nameKatakana).join('・')}${
isPartiallyLoopLine ? 'ホウメン' : ''
}`
),
[
directionalStops,
isLoopLine,
isPartiallyLoopLine,
loopLineBoundJa?.boundFor,
replaceJapaneseText,
]
);
const boundForEn = useMemo(
() =>
isLoopLine
? (loopLineBoundEn?.boundFor?.replaceAll('&', ' and ') ?? '')
: `${directionalStops?.map((s) => s?.nameRoman).join(' and ')}`,
[directionalStops, isLoopLine, loopLineBoundEn?.boundFor]
);
const nextStationNumberText = useMemo(() => {
if (!nextStationNumber) {
return '';
}
if (!nextStationNumber?.stationNumber) {
return '';
}
const split = nextStationNumber.stationNumber.split('-');
if (!split.length) {
return '';
}
if (split.length === 1) {
return `${theme === APP_THEME.JR_WEST ? '' : 'Station Number '}${Number(
nextStationNumber.stationNumber
)}`;
}
const symbol = split[0]?.split('').join(' ');
const num = split[2]
? `${Number(split[1])}-${Number(split[2])}`
: Number(split[1]).toString();
return `${
nextStationNumber.lineSymbol?.length || theme === APP_THEME.JR_WEST
? ''
: 'Station Number '
}${symbol} ${num}.`;
}, [nextStationNumber, theme]);
const nextStation = useMemo(
() =>
nextStationOrigin && {
...nextStationOrigin,
nameRoman: nextStationOrigin.nameRoman,
},
[nextStationOrigin]
);
// 直通時、同じGroupIDの駅が違う駅として扱われるのを防ぐ(ex. 渋谷の次は渋谷に止まります)
const slicedStations = Array.from(
new Set(slicedStationsOrigin.map((s) => s.groupId))
)
.map((gid) => slicedStationsOrigin.find((s) => s.groupId === gid))
.filter((s) => !!s) as Station[];
const afterNextStationOrigin = useAfterNextStation();
const afterNextStation = useMemo<Station | undefined>(() => {
if (!afterNextStationOrigin) {
return undefined;
}
return {
...afterNextStationOrigin,
nameRoman: afterNextStationOrigin?.nameRoman ?? undefined,
lines:
afterNextStationOrigin.lines?.map(
(l: { nameRoman: string | null | undefined }) => ({
...l,
nameRoman: l.nameRoman ?? undefined,
})
) ?? [],
} as Station;
}, [afterNextStationOrigin]);
const nextStationIndex = useMemo(
() => slicedStations.findIndex((s) => s.groupId === nextStation?.groupId),
[nextStation?.groupId, slicedStations]
);
const afterNextStationIndex = useMemo(
() =>
slicedStations.findIndex((s) => s.groupId === afterNextStation?.groupId),
[afterNextStation?.groupId, slicedStations]
);
const betweenNextStation = useMemo(
() =>
nextStationIndex === -1 ||
afterNextStationIndex === -1 ||
afterNextStationIndex <= nextStationIndex
? []
: slicedStations.slice(nextStationIndex + 1, afterNextStationIndex),
[afterNextStationIndex, nextStationIndex, slicedStations]
);
const isAfterNextStopTerminus = useIsTerminus(afterNextStation);
const allStops = useMemo(
() =>
slicedStations.filter((s) => {
if (s.id === station?.id) {
return false;
}
return !getIsPass(s);
}),
[slicedStations, station]
);
const viaStation = useMemo(() => {
const sortedStops = allStops
.slice()
.sort((a, b) =>
(a.lines?.length ?? 0) < (b.lines?.length ?? 0) ? 1 : -1
);
if (allStops[allStops.length - 1]?.id === sortedStops[0]?.id) {
return; // 終着駅と同じ駅の場合undefinedを返す
}
return sortedStops[0];
}, [allStops]);
const japaneseTemplate: Record<AppTheme, { [key: string]: string }> | null =
useMemo(() => {
if (!currentLine || !selectedBound) {
return EMPTY_TTS_TEXT;
}
const map = {
[APP_THEME.TOKYO_METRO]: {
NEXT: firstSpeech
? `${replaceJapaneseText(
currentLine.nameShort,
currentLine.nameKatakana
)}をご利用くださいまして、ありがとうございます。次は、${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}です。この電車は、${
connectedLines.length
? `${connectedLines
.map((l) =>
replaceJapaneseText(l.nameShort, l.nameKatakana)
)
.join('、')}直通、`
: ''
}${
yamanoteTrainTypeJa ??
(currentTrainType
? replaceJapaneseText(
currentTrainType.name,
currentTrainType.nameKatakana
)
: '各駅停車')
}、${boundForJa}ゆきです。${
currentTrainType && afterNextStation
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}の次は、${
isAfterNextStopTerminus ? '終点、' : ''
}${replaceJapaneseText(
afterNextStation?.name,
afterNextStation?.nameKatakana
)}に停まります。`
: ''
}${
betweenNextStation.length
? `${betweenNextStation
.map((s) => replaceJapaneseText(s.name, s.nameKatakana))
.join('、')}へおいでのお客様はお乗り換えです。`
: ''
}`
: `次は、${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}${isNextStopTerminus ? '、終点' : ''}です。${
transferLines.length
? `${transferLines
.map((l) =>
replaceJapaneseText(l.nameShort, l.nameKatakana)
)
.join('、')}はお乗り換えです。`
: ''
}${
currentTrainType && afterNextStation
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}の次は、${
isAfterNextStopTerminus ? '終点、' : ''
}${replaceJapaneseText(
afterNextStation?.name,
afterNextStation?.nameKatakana
)}に停まります。`
: ''
}${
betweenNextStation.length
? `${betweenNextStation
.map((s) => replaceJapaneseText(s.name, s.nameKatakana))
.join('、')}へおいでのお客様はお乗り換えです。`
: ''
}`,
ARRIVING: `まもなく、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}${isNextStopTerminus ? '終点' : ''}です。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}はお乗り換えです。`
: ''
}${
isNextStopTerminus
? `${replaceJapaneseText(
currentLine.company?.nameShort,
currentLine.company?.nameKatakana
)}をご利用くださいまして、ありがとうございました。`
: ''
}`,
},
[APP_THEME.TY]: {
NEXT: `${
firstSpeech
? `${replaceJapaneseText(
currentLine.nameShort,
currentLine.nameKatakana
)}をご利用くださいまして、ありがとうございます。この電車は${
connectedLines.length
? `${connectedLines
.map((l) =>
replaceJapaneseText(l.nameShort, l.nameKatakana)
)
.join('、')}直通、`
: ''
}${
yamanoteTrainTypeJa ??
(currentTrainType
? replaceJapaneseText(
currentTrainType.name,
currentTrainType.nameKatakana
)
: '各駅停車')
}、${boundForJa}ゆきです。`
: ''
}次は、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}${isNextStopTerminus ? '、終点' : ''}です。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}をご利用のお客様はお乗り換えです。`
: ''
}`,
ARRIVING: `まもなく、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}${isNextStopTerminus ? '、終点' : ''}です。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}をご利用のお客様はお乗り換えです。`
: ''
}${
afterNextStation
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}を出ますと、${
isAfterNextStopTerminus ? '終点、' : ''
}${replaceJapaneseText(
afterNextStation.name,
afterNextStation.nameKatakana
)}に停まります。`
: ''
}${
isNextStopTerminus
? ` ${replaceJapaneseText(
currentLine?.nameShort,
currentLine?.nameKatakana
)}をご利用くださいまして、ありがとうございました。`
: ''
}`,
},
[APP_THEME.YAMANOTE]: {
NEXT: `${
firstSpeech
? `今日も、${currentLine.company?.nameShort}をご利用くださいまして、ありがとうございます。この電車は、${boundForJa}ゆきです。`
: ''
}次は、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}${isNextStopTerminus ? '、終点です' : ''}。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}はお乗り換えです。`
: ''
}`,
ARRIVING: `まもなく、${isNextStopTerminus ? '終点、' : ''}${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}は、お乗り換えです。${
isNextStopTerminus
? `${currentLine.company?.nameShort}をご利用くださいまして、ありがとうございました。`
: ''
}`
: ''
}`,
},
[APP_THEME.JO]: {
NEXT: '',
ARRIVING: '',
},
[APP_THEME.JL]: { NEXT: '', ARRIVING: '' },
[APP_THEME.SAIKYO]: {
NEXT: `${
firstSpeech
? `今日も、${currentLine.company?.nameShort}をご利用くださいまして、ありがとうございます。この電車は、${boundForJa}ゆきです。`
: ''
}次は、${isNextStopTerminus ? '終点、' : ''}${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}は、お乗り換えです。`
: ''
}`,
ARRIVING: `まもなく、${isNextStopTerminus ? '終点、' : ''}${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}は、お乗り換えです。${
isNextStopTerminus
? `${currentLine.company?.nameShort}をご利用くださいまして、ありがとうございました。`
: ''
}`
: ''
}`,
},
[APP_THEME.JR_WEST]: {
NEXT: `${
firstSpeech
? `今日も、${
currentLine.company?.nameShort
}をご利用くださいまして、ありがとうございます。この電車は、${
yamanoteTrainTypeJa ??
replaceJapaneseText(
currentTrainType?.name,
currentTrainType?.nameKatakana
)
}、${
viaStation
? `${replaceJapaneseText(
viaStation.name,
viaStation.nameKatakana
)}方面、`
: ''
}${boundForJa}ゆきです。${allStops
.slice(0, 5)
.map((s) =>
s.id === selectedBound?.id && !isLoopLine
? `終点、${replaceJapaneseText(s.name, s.nameKatakana)}`
: replaceJapaneseText(s.name, s.nameKatakana)
)
.join('、')}の順に停まります。${
allStops
.slice(0, 5)
.filter((s) => s)
.reverse()[0]?.id === selectedBound?.id
? ''
: `${replaceJapaneseText(
allStops
.slice(0, 5)
.filter((s) => s)
.reverse()[0]?.name,
allStops
.slice(0, 5)
.filter((s) => s)
.reverse()[0]?.nameKatakana
)}から先は、後ほどご案内いたします。`
}`
: ''
}次は、${nextStation?.groupId === selectedBound?.groupId && !isLoopLine ? '終点、' : ''}${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}です。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}はお乗り換えです。`
: ''
}`,
ARRIVING: isNextStopTerminus
? `ご乗車ありがとうございました。まもなく${
replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
) ?? ''
}、${
replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
) ?? ''
}です。${
transferLines.length
? `${transferLines
.map((l) =>
replaceJapaneseText(l.nameShort, l.nameKatakana)
)
.join('、')}はお乗り換えです。`
: ''
}今日も${currentLine.company?.nameShort}をご利用くださいまして、ありがとうございました。${replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana)}、${replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana)}です。`
: `まもなく、${
replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
) ?? ''
}、${
replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
) ?? ''
}です。${
transferLines.length
? `${transferLines
.map((l) =>
replaceJapaneseText(l.nameShort, l.nameKatakana)
)
.join('、')}はお乗り換えです。`
: ''
}${
afterNextStation
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}を出ますと、次は、${replaceJapaneseText(
afterNextStation.name,
afterNextStation.nameKatakana
)}に停まります。`
: ''
}`,
},
[APP_THEME.TOEI]: {
NEXT: `${
firstSpeech
? `${replaceJapaneseText(
currentLine.nameShort,
currentLine.nameKatakana
)}をご利用くださいまして、ありがとうございます。`
: ''
}次は、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}。 ${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}はお乗り換えです。`
: ''
}この電車は、${
connectedLines.length
? `${connectedLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}直通、`
: ''
}${
yamanoteTrainTypeJa ??
(currentTrainType
? replaceJapaneseText(
currentTrainType.name,
currentTrainType.nameKatakana
)
: '各駅停車')
}、${boundForJa}ゆきです。${
currentTrainType && afterNextStation
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}の次は、${
isAfterNextStopTerminus ? '終点、' : ''
}${replaceJapaneseText(
afterNextStation?.name,
afterNextStation?.nameKatakana
)}に停まります。`
: ''
}${
betweenNextStation.length
? `通過する、${betweenNextStation
.map((s) => replaceJapaneseText(s.name, s.nameKatakana))
.join('、')}へおいでの方はお乗り換えです。`
: ''
}`,
ARRIVING: `まもなく、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}、${
replaceJapaneseText(nextStation?.name, nextStation?.nameKatakana) ??
''
}。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}はお乗り換えです。`
: ''
}${
currentTrainType && afterNextStation
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}の次は、${
isAfterNextStopTerminus ? '終点、' : ''
}${replaceJapaneseText(
afterNextStation?.name,
afterNextStation?.nameKatakana
)}に停まります。`
: ''
}${
betweenNextStation.length
? `通過する、${betweenNextStation
.map((s) => replaceJapaneseText(s.name, s.nameKatakana))
.join('、')}へおいでの方はお乗り換えです。`
: ''
}${
isNextStopTerminus
? ` ${replaceJapaneseText(
currentLine?.nameShort,
currentLine?.nameKatakana
)}をご利用くださいまして、ありがとうございました。`
: ''
}`,
},
[APP_THEME.LED]: {
NEXT: '',
ARRIVING: '',
},
[APP_THEME.JR_KYUSHU]: {
NEXT: `${
firstSpeech
? `この列車は${
yamanoteTrainTypeJa ??
(currentTrainType
? replaceJapaneseText(
currentTrainType.name,
currentTrainType.nameKatakana
)
: '普通')
}、${boundForJa}行きです。`
: ''
}次は${nextStation?.groupId === selectedBound?.groupId && !isLoopLine ? '終点、' : ''}${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}、${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}。${
transferLines.length
? `${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}では、${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join('、')}にお乗り換えいただけます。`
: ''
}`,
ARRIVING: `まもなく、${nextStation?.groupId === selectedBound?.groupId && !isLoopLine ? '終点、' : ''}${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}、${replaceJapaneseText(
nextStation?.name,
nextStation?.nameKatakana
)}。${
transferLines.length
? `${transferLines
.map((l) => replaceJapaneseText(l.nameShort, l.nameKatakana))
.join(
'、'
)}にお乗り換えいただけます。${nextStation?.groupId === selectedBound?.groupId && !isLoopLine ? `${currentLine.nameShort}をご利用くださいまして、ありがとうございました。` : ''}`
: ''
}`,
},
};
return map;
}, [
afterNextStation,
allStops,
betweenNextStation,
boundForJa,
connectedLines,
currentLine,
currentTrainType,
firstSpeech,
isAfterNextStopTerminus,
isLoopLine,
isNextStopTerminus,
nextStation?.name,
nextStation?.nameKatakana,
replaceJapaneseText,
selectedBound,
transferLines,
viaStation,
yamanoteTrainTypeJa,
nextStation?.groupId,
selectedBound?.groupId,
]);
const englishTemplate: Record<AppTheme, { [key: string]: string }> | null =
useMemo(() => {
if (!currentLine || !selectedBound) {
return EMPTY_TTS_TEXT;
}
const map = {
[APP_THEME.TOKYO_METRO]: {
NEXT: `The next stop is ${nextStation?.nameRoman}${
nextStationNumberText.length ? ` ${nextStationNumberText}` : '.'
}${
transferLines.length
? ` Please change here for ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}.`
: `the ${l.nameRoman}${a.length === 1 ? '.' : ','}`
)
.join(' ')}`
: ''
}${
firstSpeech
? ` This train is the ${
yamanoteTrainTypeEn ??
(currentTrainType ? currentTrainType.nameRoman : 'Local')
} Service on the ${
currentLine.nameRoman
} bound for ${boundForEn}. ${
currentTrainType && afterNextStation
? `The next stop after ${nextStation?.nameRoman}${`, is ${
afterNextStation?.nameRoman
}${isAfterNextStopTerminus ? ' terminal' : ''}`}.`
: ''
}${
betweenNextStation.length
? ' For stations in between, Please change trains at the next stop.'
: ''
}`
: ''
}`,
ARRIVING: `Arriving at ${
nextStation?.nameRoman
} ${nextStationNumberText}${
isNextStopTerminus ? ', the last stop.' : ''
} ${
transferLines.length
? `Please change here for ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}`
: `the ${l.nameRoman}${a.length === 1 ? '' : ','}`
)
.join(' ')}`
: ''
}. ${
isNextStopTerminus
? `Thank you for using the ${currentLine?.nameRoman}.`
: ''
}`,
},
[APP_THEME.TY]: {
NEXT: `${
firstSpeech
? `Thank you for using the ${
currentLine.nameRoman
}. This is the ${yamanoteTrainTypeEn ?? currentTrainType?.nameRoman ?? 'Local'} train ${
connectedLines[0]?.nameRoman
? `on the ${connectedLines[0]?.nameRoman}`
: ''
} to ${boundForEn}. `
: ''
}The next station is ${
nextStation?.nameRoman
} ${nextStationNumberText}${
isNextStopTerminus ? ', the last stop' : ''
} ${
transferLines.length
? `Passengers changing to ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}`
: `the ${l.nameRoman}`
)
.join(', ')}, Please transfer at this station.`
: ''
}`,
ARRIVING: `We will soon make a brief stop at ${
nextStation?.nameRoman
} ${nextStationNumberText}${
isNextStopTerminus ? ', the last stop' : ''
}${
transferLines.length
? ` Passengers changing to ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}`
: `the ${l.nameRoman}`
)
.join(', ')}, Please transfer at this station.`
: ''
}${
currentTrainType && afterNextStation
? ` The stop after ${nextStation?.nameRoman}, will be ${
afterNextStation.nameRoman
}${isAfterNextStopTerminus ? ' the last stop' : ''}.`
: ''
}${
isNextStopTerminus
? ` Thank you for using the ${currentLine?.nameRoman}.`
: ''
}`,
},
[APP_THEME.YAMANOTE]: {
NEXT: `${
firstSpeech
? `This is the ${currentLine.nameRoman} train bound for ${boundForEn}. `
: ''
}The next station is ${
nextStation?.nameRoman
} ${nextStationNumberText} ${
transferLines.length
? `Please change here for ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}.`
: `the ${l.nameRoman}${a.length === 1 ? '' : ','}`
)
.join(' ')}`
: ''
}`,
ARRIVING: `The next station is ${
nextStation?.nameRoman
} ${nextStationNumberText}${
isNextStopTerminus ? ', terminal.' : ''
} ${
transferLines.length
? `Please change here for ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}`
: `the ${l.nameRoman}${a.length === 1 ? '' : ','}`
)
.join(' ')}`
: ''
}. ${
isNextStopTerminus
? 'Thank you for traveling with us, and look forward to serving you again.'
: ''
}`,
},
[APP_THEME.JO]: {
NEXT: '',
ARRIVING: '',
},
[APP_THEME.JL]: { NEXT: '', ARRIVING: '' },
[APP_THEME.SAIKYO]: {
NEXT: `${
firstSpeech
? `This is the ${currentLine.nameRoman} train bound for ${boundForEn}. `
: ''
}The next station is ${
nextStation?.nameRoman
} ${nextStationNumberText}${isNextStopTerminus ? ', terminal' : ''} ${
transferLines.length
? `Please change here for ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}.`
: `the ${l.nameRoman}${a.length === 1 ? '' : ','}`
)
.join(' ')}`
: ''
}`,
ARRIVING: `The next station is ${
nextStation?.nameRoman
} ${nextStationNumberText}${
isNextStopTerminus ? ', terminal.' : ''
} ${
transferLines.length
? `Please change here for ${transferLines
.map((l, i, a) =>
a.length > 1 && a.length - 1 === i
? `and the ${l.nameRoman}.`
: `the ${l.nameRoman}${a.length === 1 ? '' : ','}`
)
.join(' ')}`
: ''
} ${
isNextStopTerminus
? 'Thank you for traveling with us, and look forward to serving you again.'
: ''
}`,
},
[APP_THEME.JR_WEST]: {
NEXT: `${
firstSpeech
? `Thank you for using ${currentLine?.company?.nameEnglishShort}. This is the ${yamanoteTrainTypeEn ?? currentTrainType?.nameRoman ?? 'Local'} Service bound for ${boundForEn} ${
viaStation ? `via ${viaStation.nameRoman}` : ''
}. We will be stopping at ${allStops
.slice(0, 5)
.map((s) =>
s.id === selectedBound?.id && !isLoopLine
? `${s.nameRoman} terminal`
: `${s.nameRoman}`
)
.join(', ')}. ${
allStops
.slice(0, 5)
.filter((s) => s)
.reverse()[0]?.id === selectedBound?.id
? ''
: `Stops after ${
allStops
.slice(0, 5)