2025-05-08 22:02:59 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import type { DataNode } from 'ant-design-vue/es/tree';
|
|
|
|
|
|
|
|
import type { Recordable } from '@vben/types';
|
|
|
|
|
|
|
|
import type { RoleApi } from '#/api';
|
|
|
|
|
|
|
|
import { computed, ref } from 'vue';
|
|
|
|
|
|
|
|
import { useVbenDrawer, VbenTree } from '@vben/common-ui';
|
|
|
|
import { IconifyIcon } from '@vben/icons';
|
|
|
|
|
|
|
|
import { Spin } from 'ant-design-vue';
|
|
|
|
|
|
|
|
import { useVbenForm } from '#/adapter/form';
|
2025-05-10 12:39:10 +08:00
|
|
|
import { createRole, queryMenuList, updateRole } from '#/api';
|
2025-05-08 22:02:59 +08:00
|
|
|
import { $t } from '#/locales';
|
|
|
|
|
|
|
|
import { useFormSchema } from '../data';
|
|
|
|
|
|
|
|
const emits = defineEmits(['success']);
|
|
|
|
|
2025-05-10 12:39:10 +08:00
|
|
|
const formData = ref<RoleApi.Role>();
|
2025-05-08 22:02:59 +08:00
|
|
|
|
|
|
|
const [Form, formApi] = useVbenForm({
|
|
|
|
schema: useFormSchema(),
|
|
|
|
showDefaultActions: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const permissions = ref<DataNode[]>([]);
|
|
|
|
const loadingPermissions = ref(false);
|
|
|
|
|
|
|
|
const id = ref();
|
|
|
|
const [Drawer, drawerApi] = useVbenDrawer({
|
|
|
|
async onConfirm() {
|
|
|
|
const { valid } = await formApi.validate();
|
|
|
|
if (!valid) return;
|
|
|
|
const values = await formApi.getValues();
|
|
|
|
drawerApi.lock();
|
|
|
|
(id.value ? updateRole(id.value, values) : createRole(values))
|
|
|
|
.then(() => {
|
|
|
|
emits('success');
|
|
|
|
drawerApi.close();
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
drawerApi.unlock();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onOpenChange(isOpen) {
|
|
|
|
if (isOpen) {
|
2025-05-10 12:39:10 +08:00
|
|
|
const data = drawerApi.getData<RoleApi.Role>();
|
2025-05-08 22:02:59 +08:00
|
|
|
formApi.resetForm();
|
|
|
|
if (data) {
|
|
|
|
formData.value = data;
|
|
|
|
id.value = data.id;
|
|
|
|
formApi.setValues(data);
|
|
|
|
} else {
|
|
|
|
id.value = undefined;
|
|
|
|
}
|
|
|
|
|
2025-05-10 12:39:10 +08:00
|
|
|
if (permissions.value.length === 0) {
|
|
|
|
loadPermissions();
|
|
|
|
}
|
2025-05-08 22:02:59 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2025-05-10 12:39:10 +08:00
|
|
|
async function loadPermissions() {
|
|
|
|
loadingPermissions.value = true;
|
|
|
|
try {
|
|
|
|
const res = await queryMenuList('all');
|
|
|
|
permissions.value = res as unknown as DataNode[];
|
|
|
|
} finally {
|
|
|
|
loadingPermissions.value = false;
|
|
|
|
}
|
|
|
|
}
|
2025-05-08 22:02:59 +08:00
|
|
|
|
|
|
|
const getDrawerTitle = computed(() => {
|
|
|
|
return formData.value?.id
|
|
|
|
? $t('common.edit', '角色')
|
|
|
|
: $t('common.create', '角色');
|
|
|
|
});
|
|
|
|
|
|
|
|
function getNodeClass(node: Recordable<any>) {
|
|
|
|
const classes: string[] = [];
|
|
|
|
if (node.value?.type === 'button') {
|
|
|
|
classes.push('inline-flex');
|
|
|
|
if (node.index % 3 >= 1) {
|
|
|
|
classes.push('!pl-0');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return classes.join(' ');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<Drawer :title="getDrawerTitle">
|
|
|
|
<Form>
|
|
|
|
<template #permissions="slotProps">
|
|
|
|
<Spin :spinning="loadingPermissions" wrapper-class-name="w-full">
|
|
|
|
<VbenTree
|
|
|
|
:tree-data="permissions"
|
|
|
|
multiple
|
|
|
|
bordered
|
|
|
|
:default-expanded-level="2"
|
|
|
|
:get-node-class="getNodeClass"
|
|
|
|
v-bind="slotProps"
|
|
|
|
value-field="id"
|
|
|
|
label-field="meta.title"
|
|
|
|
icon-field="meta.icon"
|
|
|
|
>
|
|
|
|
<template #node="{ value }">
|
|
|
|
<IconifyIcon v-if="value.meta.icon" :icon="value.meta.icon" />
|
|
|
|
{{ $t(value.meta.title) }}
|
|
|
|
</template>
|
|
|
|
</VbenTree>
|
|
|
|
</Spin>
|
|
|
|
</template>
|
|
|
|
</Form>
|
|
|
|
</Drawer>
|
|
|
|
</template>
|
|
|
|
<style lang="css" scoped>
|
|
|
|
:deep(.ant-tree-title) {
|
|
|
|
.tree-actions {
|
|
|
|
display: none;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.ant-tree-title:hover) {
|
|
|
|
.tree-actions {
|
|
|
|
display: flex;
|
|
|
|
flex: auto;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|