forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ToolBarCustomDialog.vue
322 lines (297 loc) · 9.95 KB
/
ToolBarCustomDialog.vue
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
<template>
<QDialog
v-model="ToolBarCustomDialogOpenComputed"
maximized
transitionShow="jump-up"
transitionHide="jump-down"
class="tool-bar-custom-dialog transparent-backdrop"
>
<QLayout container view="hHh Lpr fFf" class="bg-background">
<QPageContainer class="root">
<QHeader class="q-py-sm">
<QToolbar>
<QToolbarTitle class="text-display"
>ツールバーのカスタマイズ</QToolbarTitle
>
<QSpace />
<QBtn
unelevated
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap text-bold q-mr-sm"
:disable="isDefault"
@click="applyDefaultSetting"
>デフォルトに戻す</QBtn
>
<QBtn
unelevated
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap text-bold q-mr-sm"
:disable="!isChanged"
@click="saveCustomToolbar"
>保存</QBtn
>
<!-- close button -->
<QBtn
round
flat
icon="close"
color="display"
@click="finishOrNotDialog"
/>
</QToolbar>
</QHeader>
<QPage>
<QToolbar class="bg-toolbar preview-toolbar">
<Draggable
v-model="toolbarButtons"
:itemKey="toolbarButtonKey"
@start="toolbarButtonDragging = true"
@end="toolbarButtonDragging = false"
>
<template
#item="{ element: button }: { element: ToolbarButtonTagType }"
>
<div :class="button === 'EMPTY' ? 'radio-space' : 'radio'">
<BaseTooltip :label="usableButtonsDesc[button]">
<QBtn
unelevated
color="toolbar-button"
textColor="toolbar-button-display"
class="text-no-wrap text-bold"
>
{{ getToolbarButtonName(button) }}
</QBtn>
</BaseTooltip>
</div>
</template>
</Draggable>
<div class="preview-toolbar-drag-hint">
ドラッグでボタンの並びを変更できます。
</div>
</QToolbar>
<div class="container">
<BaseScrollArea>
<div class="inner">
<h1 class="title">表示するボタン</h1>
<div class="list">
<BaseRowCard
v-for="(desc, key) in usableButtonsDesc"
:key
:title="getToolbarButtonName(key)"
:description="desc"
clickable
tabindex="-1"
@click="toggleToolbarButtons(key)"
>
<BaseSwitch
:checked="toolbarButtons.includes(key)"
checkedLabel="表示する"
uncheckedLabel="表示しない"
/>
</BaseRowCard>
</div>
</div>
</BaseScrollArea>
</div>
</QPage>
</QPageContainer>
</QLayout>
</QDialog>
</template>
<script setup lang="ts">
import { computed, ref, watch, Ref } from "vue";
import Draggable from "vuedraggable";
import BaseSwitch from "@/components/Base/BaseSwitch.vue";
import BaseScrollArea from "@/components/Base/BaseScrollArea.vue";
import BaseRowCard from "@/components/Base/BaseRowCard.vue";
import BaseTooltip from "@/components/Base/BaseTooltip.vue";
import { useStore } from "@/store";
import { ToolbarButtonTagType, ToolbarSettingType } from "@/type/preload";
import { getToolbarButtonName } from "@/store/utility";
const props = defineProps<{
modelValue: boolean;
}>();
const emit = defineEmits<{
(e: "update:modelValue", val: boolean): void;
}>();
const store = useStore();
// computedだと値の編集ができないが、refにすると起動時に読み込まれる設定が反映されないので、watchしている
const toolbarButtons = ref([...store.state.toolbarSetting]);
const toolbarButtonKey = (button: ToolbarButtonTagType) => button;
const toolbarButtonDragging = ref(false);
const selectedButton: Ref<ToolbarButtonTagType | undefined> = ref(
toolbarButtons.value[0],
);
watch(
() => store.state.toolbarSetting,
(newData) => {
// このwatchはToolbar Setting更新時にも機能するが、
// 以下の処理はVOICEVOX起動時のみ機能してほしいので、toolbarButtonsのlengthが0の時だけ機能させる
if (!toolbarButtons.value.length) {
toolbarButtons.value = [...newData];
selectedButton.value = newData[0];
}
},
);
const defaultSetting: ToolbarSettingType = [];
void window.backend.getDefaultToolbarSetting().then((setting) => {
defaultSetting.push(...setting);
});
const toggleToolbarButtons = (key: ToolbarButtonTagType) => {
if (toolbarButtons.value.includes(key)) {
toolbarButtons.value.splice(toolbarButtons.value.indexOf(key), 1);
} else {
toolbarButtons.value.push(key);
}
};
const usableButtonsDesc: Record<ToolbarButtonTagType, string> = {
PLAY_CONTINUOUSLY:
"選択されているテキスト以降のすべてのテキストを読み上げます。",
STOP: "テキストが読み上げられているときに、それを止めます。",
EXPORT_AUDIO_SELECTED:
"選択されているテキストの読み上げを音声ファイルに書き出します。",
EXPORT_AUDIO_ALL:
"入力されているすべてのテキストの読み上げを音声ファイルに書き出します。",
EXPORT_AUDIO_CONNECT_ALL:
"入力されているすべてのテキストの読み上げを一つの音声ファイルに繋げて書き出します。",
SAVE_PROJECT: "プロジェクトを上書き保存します。",
UNDO: "操作を一つ戻します。",
REDO: "元に戻した操作をやり直します。",
IMPORT_TEXT: "テキストファイル(.txt)を読み込みます。",
EMPTY:
"これはボタンではありません。レイアウトの調整に使います。また、実際には表示されません。",
};
const ToolBarCustomDialogOpenComputed = computed({
get: () => props.modelValue || isChanged.value,
set: (val) => emit("update:modelValue", val),
});
const isChanged = computed(() => {
const nowSetting = store.state.toolbarSetting;
return (
toolbarButtons.value.length != nowSetting.length ||
toolbarButtons.value.some((e, i) => e != nowSetting[i])
);
});
const isDefault = computed(() => {
return (
toolbarButtons.value.length == defaultSetting.length &&
toolbarButtons.value.every((e, i) => e == defaultSetting[i])
);
});
// ボタンが追加されたときはそれをフォーカスし、
// 削除されたときは一番最初のボタンをフォーカスするようにする
watch(
() => toolbarButtons.value,
(newData, oldData) => {
if (oldData.length < newData.length) {
selectedButton.value = newData[newData.length - 1];
} else if (
selectedButton.value != undefined &&
oldData.includes(selectedButton.value) &&
!newData.includes(selectedButton.value)
) {
selectedButton.value = newData[0];
}
},
);
const applyDefaultSetting = async () => {
const result = await store.actions.SHOW_CONFIRM_DIALOG({
title: "ツールバーをデフォルトに戻します",
message: "ツールバーをデフォルトに戻します。\nよろしいですか?",
actionName: "はい",
cancel: "いいえ",
});
if (result === "OK") {
toolbarButtons.value = [...defaultSetting];
selectedButton.value = toolbarButtons.value[0];
}
};
const saveCustomToolbar = () => {
void store.actions.SET_TOOLBAR_SETTING({
data: [...toolbarButtons.value],
});
};
const finishOrNotDialog = async () => {
if (isChanged.value) {
const result = await store.actions.SHOW_WARNING_DIALOG({
title: "カスタマイズを終了しますか?",
message:
"保存せずに終了すると、カスタマイズは破棄されてリセットされます。",
actionName: "終了",
});
if (result === "OK") {
toolbarButtons.value = [...store.state.toolbarSetting];
selectedButton.value = toolbarButtons.value[0];
ToolBarCustomDialogOpenComputed.value = false;
}
} else {
selectedButton.value = toolbarButtons.value[0];
ToolBarCustomDialogOpenComputed.value = false;
}
};
</script>
<style lang="scss" scoped>
@use "@/styles/variables" as vars;
@use "@/styles/v2/variables" as newvars;
@use "@/styles/v2/mixin" as mixin;
@use "@/styles/v2/colors" as colors;
.tool-bar-custom-dialog .q-layout-container :deep(.absolute-full) {
right: 0 !important;
overflow-x: hidden;
> .scroll {
width: unset !important;
overflow: hidden;
}
}
.preview-toolbar {
height: calc(#{vars.$toolbar-height} + 8px);
display: block;
}
// draggableのdiv。
.preview-toolbar > div:not(.preview-toolbar-drag-hint) {
width: 100%;
display: inline-flex;
gap: 8px;
}
.preview-toolbar-drag-hint {
padding-top: 8px;
padding-bottom: 8px;
}
.radio {
& > .q-btn:hover {
cursor: grab !important;
}
}
.radio-space {
@extend .radio;
flex-grow: 1;
& > .q-btn {
color: transparent;
width: 100%;
}
}
.title {
@include mixin.headline-1;
}
.container {
// TODO: 親コンポーネントからheightを取得できないため一時的にcalcを使用、HelpDialogの構造を再設計後100%に変更する
// height: 100%;
height: calc(100vh - 164px);
background-color: colors.$background;
}
.inner {
margin: auto;
max-width: 960px;
padding: newvars.$padding-2;
display: flex;
flex-direction: column;
gap: newvars.$gap-1;
}
.list {
display: flex;
flex-direction: column;
gap: newvars.$gap-1;
}
</style>