mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
feat: show save failed error messages on the profile config page (#2274)
This commit is contained in:
parent
f45f51d44b
commit
357fac4d49
3 changed files with 43 additions and 2 deletions
|
@ -51,6 +51,7 @@
|
|||
"boost_count": "{0}",
|
||||
"boosted": "Boosted",
|
||||
"clear_publish_failed": "Clear publish errors",
|
||||
"clear_save_failed": "Clear save errors",
|
||||
"clear_upload_failed": "Clear file upload errors",
|
||||
"close": "Close",
|
||||
"compose": "Compose",
|
||||
|
@ -557,6 +558,7 @@
|
|||
"loading": "Loading...",
|
||||
"publish_failed": "Publish failed",
|
||||
"publishing": "Publishing",
|
||||
"save_failed": "Save failed",
|
||||
"upload_failed": "Upload failed",
|
||||
"uploading": "Uploading..."
|
||||
},
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
"boost_count": "{0}",
|
||||
"boosted": "ブースト済み",
|
||||
"clear_publish_failed": "投稿エラーをクリア",
|
||||
"clear_save_failed": "保存エラーをクリア",
|
||||
"clear_upload_failed": "ファイルアップロードエラーをクリア",
|
||||
"close": "閉じる",
|
||||
"compose": "投稿",
|
||||
|
@ -499,6 +500,7 @@
|
|||
"loading": "読込中...",
|
||||
"publish_failed": "投稿に失敗しました",
|
||||
"publishing": "投稿中",
|
||||
"save_failed": "保存に失敗しました",
|
||||
"upload_failed": "アップロードに失敗しました",
|
||||
"uploading": "更新中..."
|
||||
},
|
||||
|
|
|
@ -57,6 +57,7 @@ const { form, reset, submitter, isDirty, isError } = useForm({
|
|||
})
|
||||
|
||||
const isCanSubmit = computed(() => !isError.value && isDirty.value)
|
||||
const failedMessages = $ref<string[]>([])
|
||||
|
||||
const { submit, submitting } = submitter(async ({ dirtyFields }) => {
|
||||
if (!isCanSubmit.value)
|
||||
|
@ -67,8 +68,8 @@ const { submit, submitting } = submitter(async ({ dirtyFields }) => {
|
|||
.catch((error: Error) => ({ error }))
|
||||
|
||||
if ('error' in res) {
|
||||
// TODO: Show error message
|
||||
console.error('Error(updateCredentials):', res.error)
|
||||
console.error(res.error)
|
||||
failedMessages.push(res.error.message)
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -200,6 +201,7 @@ onReactivated(refreshInfo)
|
|||
</button>
|
||||
|
||||
<button
|
||||
v-if="failedMessages.length === 0"
|
||||
type="submit"
|
||||
btn-solid rounded-full text-sm
|
||||
flex gap-x-2 items-center
|
||||
|
@ -211,7 +213,42 @@ onReactivated(refreshInfo)
|
|||
<span v-else aria-hidden="true" block i-ri:save-line />
|
||||
{{ $t('action.save') }}
|
||||
</button>
|
||||
|
||||
<button
|
||||
v-else
|
||||
type="submit"
|
||||
btn-danger rounded-full text-sm
|
||||
flex gap-x-2 items-center
|
||||
>
|
||||
<span
|
||||
aria-hidden="true" block i-carbon:face-dizzy-filled
|
||||
/>
|
||||
<span>{{ $t('state.save_failed') }}</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<CommonErrorMessage v-if="failedMessages.length > 0" described-by="save-failed">
|
||||
<header id="save-failed" flex justify-between>
|
||||
<div flex items-center gap-x-2 font-bold>
|
||||
<div aria-hidden="true" i-ri:error-warning-fill />
|
||||
<p>{{ $t('state.save_failed') }}</p>
|
||||
</div>
|
||||
<CommonTooltip placement="bottom" :content="$t('action.clear_save_failed')">
|
||||
<button
|
||||
flex rounded-4 p1 hover:bg-active cursor-pointer transition-100 :aria-label="$t('action.clear_save_failed')"
|
||||
@click="failedMessages = []"
|
||||
>
|
||||
<span aria-hidden="true" w="1.75em" h="1.75em" i-ri:close-line />
|
||||
</button>
|
||||
</CommonTooltip>
|
||||
</header>
|
||||
<ol ps-2 sm:ps-1>
|
||||
<li v-for="(error, i) in failedMessages" :key="i" flex="~ col sm:row" gap-y-1 sm:gap-x-2>
|
||||
<strong>{{ i + 1 }}.</strong>
|
||||
<span>{{ error }}</span>
|
||||
</li>
|
||||
</ol>
|
||||
</CommonErrorMessage>
|
||||
</div>
|
||||
</form>
|
||||
</MainContent>
|
||||
|
|
Loading…
Reference in a new issue