mirror of https://github.com/halo-dev/halo
155 lines
3.5 KiB
Vue
155 lines
3.5 KiB
Vue
![]() |
<script lang="ts" setup>
|
||
![]() |
import { Toast, VButton, VModal, VSpace } from "@halo-dev/components";
|
||
![]() |
import SubmitButton from "@/components/button/SubmitButton.vue";
|
||
![]() |
import type { Menu } from "@halo-dev/api-client";
|
||
![]() |
import { computed, ref, watch } from "vue";
|
||
![]() |
import { apiClient } from "@/utils/api-client";
|
||
![]() |
import { reset } from "@formkit/core";
|
||
![]() |
import { cloneDeep } from "lodash-es";
|
||
![]() |
import { setFocus } from "@/formkit/utils/focus";
|
||
![]() |
import { useI18n } from "vue-i18n";
|
||
![]() |
|
||
![]() |
const props = withDefaults(
|
||
|
defineProps<{
|
||
|
visible: boolean;
|
||
![]() |
menu?: Menu;
|
||
![]() |
}>(),
|
||
|
{
|
||
|
visible: false,
|
||
![]() |
menu: undefined,
|
||
![]() |
}
|
||
|
);
|
||
![]() |
|
||
![]() |
const emit = defineEmits<{
|
||
|
(event: "update:visible", visible: boolean): void;
|
||
|
(event: "close"): void;
|
||
![]() |
(event: "created", menu: Menu): void;
|
||
![]() |
}>();
|
||
![]() |
|
||
![]() |
const { t } = useI18n();
|
||
|
|
||
![]() |
const initialFormState: Menu = {
|
||
|
spec: {
|
||
|
displayName: "",
|
||
|
menuItems: [],
|
||
|
},
|
||
|
apiVersion: "v1alpha1",
|
||
|
kind: "Menu",
|
||
|
metadata: {
|
||
![]() |
name: "",
|
||
|
generateName: "menu-",
|
||
![]() |
},
|
||
|
};
|
||
|
|
||
|
const formState = ref<Menu>(cloneDeep(initialFormState));
|
||
|
const saving = ref(false);
|
||
|
|
||
|
const isUpdateMode = computed(() => {
|
||
|
return !!formState.value.metadata.creationTimestamp;
|
||
|
});
|
||
|
|
||
![]() |
const modalTitle = computed(() => {
|
||
![]() |
return isUpdateMode.value
|
||
|
? t("core.menu.menu_editing_modal.titles.update")
|
||
|
: t("core.menu.menu_editing_modal.titles.create");
|
||
![]() |
});
|
||
|
|
||
![]() |
const handleCreateMenu = async () => {
|
||
|
try {
|
||
|
saving.value = true;
|
||
|
if (isUpdateMode.value) {
|
||
![]() |
await apiClient.extension.menu.updatev1alpha1Menu({
|
||
|
name: formState.value.metadata.name,
|
||
|
menu: formState.value,
|
||
|
});
|
||
![]() |
} else {
|
||
![]() |
const { data } = await apiClient.extension.menu.createv1alpha1Menu({
|
||
|
menu: formState.value,
|
||
|
});
|
||
![]() |
emit("created", data);
|
||
![]() |
}
|
||
|
onVisibleChange(false);
|
||
![]() |
|
||
![]() |
Toast.success(t("core.common.toast.save_success"));
|
||
![]() |
} catch (e) {
|
||
|
console.error("Failed to create menu", e);
|
||
|
} finally {
|
||
|
saving.value = false;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const onVisibleChange = (visible: boolean) => {
|
||
|
emit("update:visible", visible);
|
||
|
if (!visible) {
|
||
|
emit("close");
|
||
|
}
|
||
|
};
|
||
|
|
||
![]() |
const handleResetForm = () => {
|
||
![]() |
formState.value = cloneDeep(initialFormState);
|
||
![]() |
reset("menu-form");
|
||
![]() |
};
|
||
|
|
||
|
watch(
|
||
|
() => props.visible,
|
||
|
(visible) => {
|
||
|
if (visible) {
|
||
![]() |
setFocus("menuDisplayNameInput");
|
||
![]() |
} else {
|
||
|
handleResetForm();
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
|
||
|
watch(
|
||
|
() => props.menu,
|
||
|
(menu) => {
|
||
|
if (menu) {
|
||
|
formState.value = cloneDeep(menu);
|
||
|
} else {
|
||
|
handleResetForm();
|
||
|
}
|
||
|
}
|
||
|
);
|
||
![]() |
</script>
|
||
|
<template>
|
||
|
<VModal
|
||
|
:visible="visible"
|
||
|
:width="500"
|
||
![]() |
:title="modalTitle"
|
||
![]() |
@update:visible="onVisibleChange"
|
||
|
>
|
||
|
<FormKit
|
||
|
id="menu-form"
|
||
![]() |
name="menu-form"
|
||
![]() |
type="form"
|
||
![]() |
:config="{ validationVisibility: 'submit' }"
|
||
![]() |
@submit="handleCreateMenu"
|
||
|
>
|
||
|
<FormKit
|
||
![]() |
id="menuDisplayNameInput"
|
||
![]() |
v-model="formState.spec.displayName"
|
||
![]() |
:label="$t('core.menu.menu_editing_modal.fields.display_name.label')"
|
||
![]() |
type="text"
|
||
![]() |
name="displayName"
|
||
![]() |
validation="required|length:0,100"
|
||
![]() |
></FormKit>
|
||
|
</FormKit>
|
||
|
<template #footer>
|
||
|
<VSpace>
|
||
![]() |
<SubmitButton
|
||
|
v-if="visible"
|
||
![]() |
:loading="saving"
|
||
![]() |
type="secondary"
|
||
![]() |
:text="$t('core.common.buttons.submit')"
|
||
![]() |
@submit="$formkit.submit('menu-form')"
|
||
|
>
|
||
|
</SubmitButton>
|
||
![]() |
<VButton @click="onVisibleChange(false)">
|
||
|
{{ $t("core.common.buttons.cancel_and_shortcut") }}
|
||
|
</VButton>
|
||
![]() |
</VSpace>
|
||
|
</template>
|
||
|
</VModal>
|
||
|
</template>
|