From 673bd4edd7517c3412652945cb61dc7643ab0d5e Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Sat, 28 Dec 2024 00:28:11 +0900 Subject: [PATCH] refactor --- src/components/Sing/ExportOverlay.vue | 2 +- src/sing/fileUtils.ts | 1 + src/store/audio.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Sing/ExportOverlay.vue b/src/components/Sing/ExportOverlay.vue index eff8dec98c..b36263c7ec 100644 --- a/src/components/Sing/ExportOverlay.vue +++ b/src/components/Sing/ExportOverlay.vue @@ -38,7 +38,7 @@ const nowRendering = computed(() => { return store.state.nowRendering; }); -const exportingInfo = computed((): ExportingInfo => { +const exportingInfo = computed(() => { if (store.state.exportState === "NOT_EXPORTING") { return { nowExporting: false }; } else if (store.state.exportState === "EXPORTING_AUDIO") { diff --git a/src/sing/fileUtils.ts b/src/sing/fileUtils.ts index 8c0f22f58b..504708d69f 100644 --- a/src/sing/fileUtils.ts +++ b/src/sing/fileUtils.ts @@ -1,6 +1,7 @@ /** * 指定されたファイルパスに対応するファイルが既に存在する場合、 * ファイル名に連番のサフィックスを追加してユニークなファイルパスを生成する。 + * TODO: src/store/audio.tsのchangeFileTailToNonExistent関数と統合する */ export async function generateUniqueFilePath( filePathWithoutExtension: string, diff --git a/src/store/audio.ts b/src/store/audio.ts index 85a793da09..bea3d9425f 100644 --- a/src/store/audio.ts +++ b/src/store/audio.ts @@ -129,6 +129,7 @@ function parseTextFile( return audioItems; } +// TODO: src/sing/fileUtils.tsのgenerateUniqueFilePathと統合する async function changeFileTailToNonExistent( filePath: string, extension: string,