-
Notifications
You must be signed in to change notification settings - Fork 311
/
Copy pathDialog.ts
405 lines (370 loc) · 10.3 KB
/
Dialog.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
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
import { Dialog, DialogChainObject, Notify, Loading } from "quasar";
import SaveAllResultDialog from "./SaveAllResultDialog.vue";
import { AudioKey, ConfirmedTips } from "@/type/preload";
import {
AllActions,
SaveResultObject,
SaveResult,
ErrorTypeForSaveAllResultDialog,
} from "@/store/type";
import { DotNotationDispatch } from "@/store/vuex";
import { withProgressDotNotation as withProgress } from "@/store/ui";
type MediaType = "audio" | "text";
export type CommonDialogResult = "OK" | "CANCEL";
export type CommonDialogOptions = {
alert: {
title: string;
message: string;
ok?: string;
};
confirm: {
title: string;
message: string;
html?: boolean;
actionName: string;
cancel?: string;
};
warning: {
title: string;
message: string;
actionName: string;
cancel?: string;
};
};
export type CommonDialogType = keyof CommonDialogOptions;
type CommonDialogCallback = (value: CommonDialogResult) => void;
export type NotifyAndNotShowAgainButtonOption = {
message: string;
isWarning?: boolean;
icon?: string;
tipName: keyof ConfirmedTips;
};
export type LoadingScreenOption = { message: string };
// 汎用ダイアログを表示
export const showAlertDialog = async (
options: CommonDialogOptions["alert"],
) => {
options.ok ??= "閉じる";
return new Promise((resolve: CommonDialogCallback) => {
setCommonDialogCallback(
Dialog.create({
title: options.title,
message: options.message,
ok: {
label: options.ok,
flat: true,
textColor: "display",
},
}),
resolve,
);
});
};
/**
* htmlフラグを`true`にする場合、外部からの汚染された文字列を`title`や`message`に含めてはいけません。
* see https://quasar.dev/quasar-plugins/dialog#using-html
*/
export const showConfirmDialog = async (
options: CommonDialogOptions["confirm"],
) => {
options.cancel ??= "キャンセル";
return new Promise((resolve: CommonDialogCallback) => {
setCommonDialogCallback(
Dialog.create({
title: options.title,
message: options.message,
persistent: true, // ダイアログ外側押下時・Esc押下時にユーザが設定ができたと思い込むことを防止する
focus: "ok",
html: options.html,
ok: {
flat: true,
label: options.actionName,
textColor: "display",
},
cancel: {
flat: true,
label: options.cancel,
textColor: "display",
},
}),
resolve,
);
});
};
export const showWarningDialog = async (
options: CommonDialogOptions["warning"],
) => {
options.cancel ??= "キャンセル";
return new Promise((resolve: CommonDialogCallback) => {
setCommonDialogCallback(
Dialog.create({
title: options.title,
message: options.message,
persistent: true,
focus: "cancel",
ok: {
label: options.actionName,
flat: true,
textColor: "warning",
},
cancel: {
label: options.cancel,
flat: true,
textColor: "display",
},
}),
resolve,
);
});
};
const setCommonDialogCallback = (
dialog: DialogChainObject,
resolve: (result: CommonDialogResult) => void,
) => {
return dialog
.onOk(() => {
resolve("OK");
})
.onCancel(() => {
resolve("CANCEL");
});
};
export async function generateAndSaveOneAudioWithDialog({
audioKey,
actions,
filePath,
disableNotifyOnGenerate,
}: {
audioKey: AudioKey;
actions: DotNotationDispatch<AllActions>;
filePath?: string;
disableNotifyOnGenerate: boolean;
}): Promise<void> {
const result: SaveResultObject = await withProgress(
actions.GENERATE_AND_SAVE_AUDIO({
audioKey,
filePath,
}),
actions,
);
if (result.result === "CANCELED") return;
if (result.result === "SUCCESS") {
if (disableNotifyOnGenerate) return;
// 書き出し成功時に通知をする
showWriteSuccessNotify({
mediaType: "audio",
actions,
});
} else {
showWriteErrorDialog({ mediaType: "audio", result, actions });
}
}
export async function multiGenerateAndSaveAudioWithDialog({
audioKeys,
actions,
dirPath,
disableNotifyOnGenerate,
}: {
audioKeys: AudioKey[];
actions: DotNotationDispatch<AllActions>;
dirPath?: string;
disableNotifyOnGenerate: boolean;
}): Promise<void> {
const result = await withProgress(
actions.MULTI_GENERATE_AND_SAVE_AUDIO({
audioKeys,
dirPath,
callback: (finishedCount) =>
actions.SET_PROGRESS_FROM_COUNT({
finishedCount,
totalCount: audioKeys.length,
}),
}),
actions,
);
if (result == undefined) return;
// 書き出し成功時の出力先パスを配列に格納
const successArray: (string | undefined)[] = result.flatMap((result) =>
result.result === "SUCCESS" ? result.path : [],
);
// 書き込みエラーを配列に格納
const writeErrorArray: ErrorTypeForSaveAllResultDialog[] = result.flatMap(
(result) =>
result.result === "WRITE_ERROR"
? { path: result.path ?? "", message: result.errorMessage ?? "" }
: [],
);
// エンジンエラーを配列に格納
const engineErrorArray: ErrorTypeForSaveAllResultDialog[] = result.flatMap(
(result) =>
result.result === "ENGINE_ERROR"
? { path: result.path ?? "", message: result.errorMessage ?? "" }
: [],
);
if (successArray.length === result.length) {
if (disableNotifyOnGenerate) return;
// 書き出し成功時に通知をする
showWriteSuccessNotify({
mediaType: "audio",
actions,
});
}
if (writeErrorArray.length > 0 || engineErrorArray.length > 0) {
Dialog.create({
component: SaveAllResultDialog,
componentProps: {
successArray: successArray,
writeErrorArray: writeErrorArray,
engineErrorArray: engineErrorArray,
},
});
}
}
export async function generateAndConnectAndSaveAudioWithDialog({
actions,
filePath,
disableNotifyOnGenerate,
}: {
actions: DotNotationDispatch<AllActions>;
filePath?: string;
disableNotifyOnGenerate: boolean;
}): Promise<void> {
const result = await withProgress(
actions.GENERATE_AND_CONNECT_AND_SAVE_AUDIO({
filePath,
callback: (finishedCount, totalCount) =>
actions.SET_PROGRESS_FROM_COUNT({ finishedCount, totalCount }),
}),
actions,
);
if (result == undefined || result.result === "CANCELED") return;
if (result.result === "SUCCESS") {
if (disableNotifyOnGenerate) return;
showWriteSuccessNotify({
mediaType: "audio",
actions,
});
} else {
showWriteErrorDialog({ mediaType: "audio", result, actions });
}
}
export async function connectAndExportTextWithDialog({
actions,
filePath,
disableNotifyOnGenerate,
}: {
actions: DotNotationDispatch<AllActions>;
filePath?: string;
disableNotifyOnGenerate: boolean;
}): Promise<void> {
const result = await actions.CONNECT_AND_EXPORT_TEXT({
filePath,
});
if (result == undefined || result.result === "CANCELED") return;
if (result.result === "SUCCESS") {
if (disableNotifyOnGenerate) return;
showWriteSuccessNotify({
mediaType: "text",
actions,
});
} else {
showWriteErrorDialog({ mediaType: "text", result, actions });
}
}
// 書き出し成功時の通知を表示
const showWriteSuccessNotify = ({
mediaType,
actions,
}: {
mediaType: MediaType;
actions: DotNotationDispatch<AllActions>;
}): void => {
const mediaTypeNames: Record<MediaType, string> = {
audio: "音声",
text: "テキスト",
};
void actions.SHOW_NOTIFY_AND_NOT_SHOW_AGAIN_BUTTON({
message: `${mediaTypeNames[mediaType]}を書き出しました`,
tipName: "notifyOnGenerate",
});
};
// 書き出し失敗時のダイアログを表示
const showWriteErrorDialog = ({
mediaType,
result,
actions,
}: {
mediaType: MediaType;
result: SaveResultObject;
actions: DotNotationDispatch<AllActions>;
}) => {
if (mediaType === "text") {
// テキスト書き出し時のエラーを出力
void actions.SHOW_ALERT_DIALOG({
title: "テキストの書き出しに失敗しました。",
message:
"書き込みエラーによって失敗しました。空き容量があることや、書き込み権限があることをご確認ください。",
});
} else {
const defaultErrorMessages: Partial<Record<SaveResult, string>> = {
WRITE_ERROR:
"何らかの理由で書き出しに失敗しました。ログを参照してください。",
ENGINE_ERROR:
"エンジンのエラーによって失敗しました。エンジンの再起動をお試しください。",
UNKNOWN_ERROR:
"何らかの理由で書き出しに失敗しました。ログを参照してください。",
};
// 音声書き出し時のエラーを出力
void actions.SHOW_ALERT_DIALOG({
title: "書き出しに失敗しました。",
message: result.errorMessage ?? defaultErrorMessages[result.result] ?? "",
});
}
};
const NOTIFY_TIMEOUT = 7000;
export const showNotifyAndNotShowAgainButton = (
{
actions,
}: {
actions: DotNotationDispatch<AllActions>;
},
options: NotifyAndNotShowAgainButtonOption,
) => {
options.icon ??= options.isWarning ? "warning" : "info";
const suffix = options.isWarning ? "-warning" : "";
Notify.create({
message: options.message,
color: "toast" + suffix,
textColor: "toast-display" + suffix,
icon: options.isWarning ? "warning" : "info",
timeout: NOTIFY_TIMEOUT,
actions: [
{
label: "今後このメッセージを表示しない",
textColor: "toast-button-display" + suffix,
handler: () => {
void actions.SET_CONFIRMED_TIP({
confirmedTip: {
[options.tipName]: true,
},
});
},
},
{
label: "閉じる",
color: "toast-button-display" + suffix,
},
],
});
};
export const showLoadingScreen = (options: LoadingScreenOption) => {
Loading.show({
spinnerColor: "primary",
spinnerSize: 50,
boxClass: "bg-background text-display",
message: options.message,
});
};
export const hideAllLoadingScreen = () => {
Loading.hide();
};