mirror of https://github.com/halo-dev/halo
refactor: improve code base of post tag-related (#5959)
#### What type of PR is this? /area ui /kind improvement /milestone 2.16.x #### What this PR does / why we need it: 优化文章标签的表单组件代码。 #### Does this PR introduce a user-facing change? ```release-note None ```pull/5972/head
parent
bbc5c979b7
commit
ea98ae5add
|
@ -27,7 +27,7 @@ import { useI18n } from "vue-i18n";
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const editingModal = ref(false);
|
const editingModal = ref(false);
|
||||||
const selectedTag = ref<Tag | null>(null);
|
const selectedTag = ref<Tag>();
|
||||||
|
|
||||||
const selectedTagNames = ref<string[]>([]);
|
const selectedTagNames = ref<string[]>([]);
|
||||||
const checkedAll = ref(false);
|
const checkedAll = ref(false);
|
||||||
|
@ -66,7 +66,7 @@ const {
|
||||||
sort: selectedSort,
|
sort: selectedSort,
|
||||||
});
|
});
|
||||||
|
|
||||||
const handleOpenEditingModal = (tag: Tag | null) => {
|
const handleOpenEditingModal = (tag?: Tag) => {
|
||||||
selectedTag.value = tag;
|
selectedTag.value = tag;
|
||||||
editingModal.value = true;
|
editingModal.value = true;
|
||||||
};
|
};
|
||||||
|
@ -132,8 +132,9 @@ const handleSelectNext = async () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const onEditingModalClose = () => {
|
const onEditingModalClose = () => {
|
||||||
selectedTag.value = null;
|
selectedTag.value = undefined;
|
||||||
queryName.value = null;
|
queryName.value = null;
|
||||||
|
editingModal.value = false;
|
||||||
handleFetchTags();
|
handleFetchTags();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -157,7 +158,7 @@ watch(selectedTagNames, (newVal) => {
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<TagEditingModal
|
<TagEditingModal
|
||||||
v-model:visible="editingModal"
|
v-if="editingModal"
|
||||||
:tag="selectedTag"
|
:tag="selectedTag"
|
||||||
@close="onEditingModalClose"
|
@close="onEditingModalClose"
|
||||||
@next="handleSelectNext"
|
@next="handleSelectNext"
|
||||||
|
|
|
@ -19,27 +19,24 @@ import SubmitButton from "@/components/button/SubmitButton.vue";
|
||||||
import type { Tag } from "@halo-dev/api-client";
|
import type { Tag } from "@halo-dev/api-client";
|
||||||
|
|
||||||
// libs
|
// libs
|
||||||
import { cloneDeep } from "lodash-es";
|
|
||||||
import { reset } from "@formkit/core";
|
|
||||||
import { setFocus } from "@/formkit/utils/focus";
|
import { setFocus } from "@/formkit/utils/focus";
|
||||||
import AnnotationsForm from "@/components/form/AnnotationsForm.vue";
|
import AnnotationsForm from "@/components/form/AnnotationsForm.vue";
|
||||||
import useSlugify from "@console/composables/use-slugify";
|
import useSlugify from "@console/composables/use-slugify";
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
import { FormType } from "@/types/slug";
|
import { FormType } from "@/types/slug";
|
||||||
|
import { onMounted } from "vue";
|
||||||
|
import { toRaw } from "vue";
|
||||||
|
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
visible: boolean;
|
tag?: Tag;
|
||||||
tag: Tag | null;
|
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
visible: false,
|
tag: undefined,
|
||||||
tag: null,
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(event: "update:visible", visible: boolean): void;
|
|
||||||
(event: "close"): void;
|
(event: "close"): void;
|
||||||
(event: "previous"): void;
|
(event: "previous"): void;
|
||||||
(event: "next"): void;
|
(event: "next"): void;
|
||||||
|
@ -47,7 +44,7 @@ const emit = defineEmits<{
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const initialFormState: Tag = {
|
const formState = ref<Tag>({
|
||||||
spec: {
|
spec: {
|
||||||
displayName: "",
|
displayName: "",
|
||||||
slug: "",
|
slug: "",
|
||||||
|
@ -60,14 +57,13 @@ const initialFormState: Tag = {
|
||||||
name: "",
|
name: "",
|
||||||
generateName: "tag-",
|
generateName: "tag-",
|
||||||
},
|
},
|
||||||
};
|
});
|
||||||
|
|
||||||
|
const modal = ref();
|
||||||
|
|
||||||
const formState = ref<Tag>(cloneDeep(initialFormState));
|
|
||||||
const saving = ref(false);
|
const saving = ref(false);
|
||||||
|
|
||||||
const isUpdateMode = computed(() => {
|
const isUpdateMode = computed(() => !!props.tag);
|
||||||
return !!formState.value.metadata.creationTimestamp;
|
|
||||||
});
|
|
||||||
|
|
||||||
const modalTitle = computed(() => {
|
const modalTitle = computed(() => {
|
||||||
return isUpdateMode.value
|
return isUpdateMode.value
|
||||||
|
@ -104,7 +100,8 @@ const handleSaveTag = async () => {
|
||||||
tag: formState.value,
|
tag: formState.value,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
onVisibleChange(false);
|
|
||||||
|
modal.value.close();
|
||||||
|
|
||||||
Toast.success(t("core.common.toast.save_success"));
|
Toast.success(t("core.common.toast.save_success"));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
@ -114,37 +111,19 @@ const handleSaveTag = async () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onVisibleChange = (visible: boolean) => {
|
onMounted(() => {
|
||||||
emit("update:visible", visible);
|
|
||||||
if (!visible) {
|
|
||||||
emit("close");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleResetForm = () => {
|
|
||||||
formState.value = cloneDeep(initialFormState);
|
|
||||||
reset("tag-form");
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.visible,
|
|
||||||
(visible) => {
|
|
||||||
if (visible) {
|
|
||||||
setFocus("displayNameInput");
|
setFocus("displayNameInput");
|
||||||
} else {
|
});
|
||||||
handleResetForm();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.tag,
|
() => props.tag,
|
||||||
(tag) => {
|
(tag) => {
|
||||||
if (tag) {
|
if (tag) {
|
||||||
formState.value = cloneDeep(tag);
|
formState.value = toRaw(tag);
|
||||||
} else {
|
|
||||||
handleResetForm();
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -164,12 +143,7 @@ const { handleGenerateSlug } = useSlugify(
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VModal
|
<VModal ref="modal" :title="modalTitle" :width="700" @close="emit('close')">
|
||||||
:title="modalTitle"
|
|
||||||
:visible="visible"
|
|
||||||
:width="700"
|
|
||||||
@update:visible="onVisibleChange"
|
|
||||||
>
|
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<span @click="emit('previous')">
|
<span @click="emit('previous')">
|
||||||
<IconArrowLeft />
|
<IconArrowLeft />
|
||||||
|
@ -278,14 +252,13 @@ const { handleGenerateSlug } = useSlugify(
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<VSpace>
|
<VSpace>
|
||||||
<SubmitButton
|
<SubmitButton
|
||||||
v-if="visible"
|
|
||||||
:loading="saving"
|
:loading="saving"
|
||||||
type="secondary"
|
type="secondary"
|
||||||
:text="$t('core.common.buttons.submit')"
|
:text="$t('core.common.buttons.submit')"
|
||||||
@submit="$formkit.submit('tag-form')"
|
@submit="$formkit.submit('tag-form')"
|
||||||
>
|
>
|
||||||
</SubmitButton>
|
</SubmitButton>
|
||||||
<VButton @click="onVisibleChange(false)">
|
<VButton @click="modal.close()">
|
||||||
{{ $t("core.common.buttons.cancel_and_shortcut") }}
|
{{ $t("core.common.buttons.cancel_and_shortcut") }}
|
||||||
</VButton>
|
</VButton>
|
||||||
</VSpace>
|
</VSpace>
|
||||||
|
|
Loading…
Reference in New Issue