-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 内容 いつものアレです。 ## 関連 Issue - ref: #2163 ## スクリーンショット・動画など (なし) ## その他 (なし)
- Loading branch information
Showing
8 changed files
with
777 additions
and
82 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
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
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
Oops, something went wrong.