-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
「音声をつなげて書き出し」のファイルエラーメッセージを表示する (#2131)
* generateWriteErrorMessage移動 * エラーメッセージを追加 * CONNECT_AND_EXPORT_TEXTも
- Loading branch information
Showing
2 changed files
with
74 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { ResultError } from "@/type/result"; | ||
|
||
/** ファイル書き込み時のエラーメッセージを生成する */ | ||
export function generateWriteErrorMessage(writeFileResult: ResultError) { | ||
const code = writeFileResult.code?.toUpperCase(); | ||
|
||
if (code?.startsWith("ENOSPC")) { | ||
return "空き容量が足りません。"; | ||
} | ||
|
||
if (code?.startsWith("EACCES")) { | ||
return "ファイルにアクセスする許可がありません。"; | ||
} | ||
|
||
if (code?.startsWith("EBUSY")) { | ||
return "ファイルが開かれています。"; | ||
} | ||
|
||
if (code?.startsWith("ENOENT")) { | ||
return "ファイルが見つかりません。"; | ||
} | ||
|
||
return `何らかの理由で失敗しました。${writeFileResult.message}`; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters