430 lines
11 KiB
TypeScript
430 lines
11 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
||
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||
import type { InfraCodegenApi } from '#/api/infra/codegen';
|
||
import type { InfraDataSourceConfigApi } from '#/api/infra/data-source-config';
|
||
import type { SystemMenuApi } from '#/api/system/menu';
|
||
|
||
import { z } from '#/adapter/form';
|
||
import { getRangePickerDefaultProps } from '#/utils/date';
|
||
import { DICT_TYPE, getDictOptions } from '#/utils/dict';
|
||
|
||
import { useAccess } from '@vben/access';
|
||
|
||
const { hasAccessByCodes } = useAccess();
|
||
|
||
/** 导入数据库表的表单 */
|
||
export function useImportTableFormSchema(
|
||
dataSourceConfigList: InfraDataSourceConfigApi.InfraDataSourceConfig[],
|
||
): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
fieldName: 'dataSourceConfigId',
|
||
label: '数据源',
|
||
component: 'Select',
|
||
componentProps: {
|
||
options: dataSourceConfigList.map((item) => ({
|
||
label: item.name,
|
||
value: item.id,
|
||
})),
|
||
placeholder: '请选择数据源',
|
||
},
|
||
defaultValue: dataSourceConfigList[0]?.id,
|
||
rules: 'required',
|
||
},
|
||
{
|
||
fieldName: 'name',
|
||
label: '表名称',
|
||
component: 'Input',
|
||
componentProps: {
|
||
allowClear: true,
|
||
placeholder: '请输入表名称',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'comment',
|
||
label: '表描述',
|
||
component: 'Input',
|
||
componentProps: {
|
||
allowClear: true,
|
||
placeholder: '请输入表描述',
|
||
},
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 基本信息表单的 schema */
|
||
export function useBasicInfoFormSchema(): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
fieldName: 'tableName',
|
||
label: '表名称',
|
||
component: 'Input',
|
||
componentProps: {
|
||
placeholder: '请输入仓库名称',
|
||
},
|
||
rules: 'required',
|
||
},
|
||
{
|
||
fieldName: 'tableComment',
|
||
label: '表描述',
|
||
component: 'Input',
|
||
componentProps: {
|
||
placeholder: '请输入',
|
||
},
|
||
rules: 'required',
|
||
},
|
||
{
|
||
fieldName: 'className',
|
||
label: '实体类名称',
|
||
component: 'Input',
|
||
componentProps: {
|
||
placeholder: '请输入',
|
||
},
|
||
rules: 'required',
|
||
help: '默认去除表名的前缀。如果存在重复,则需要手动添加前缀,避免 MyBatis 报 Alias 重复的问题。',
|
||
},
|
||
{
|
||
fieldName: 'author',
|
||
label: '作者',
|
||
component: 'Input',
|
||
componentProps: {
|
||
placeholder: '请输入',
|
||
},
|
||
rules: 'required',
|
||
},
|
||
{
|
||
fieldName: 'remark',
|
||
label: '备注',
|
||
component: 'Textarea',
|
||
componentProps: {
|
||
rows: 3,
|
||
},
|
||
// 使用Tailwind的col-span-2让元素跨越两列
|
||
formItemClass: 'md:col-span-2',
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 生成信息表单基础 schema */
|
||
export function useGenerationInfoBaseFormSchema(menus: SystemMenuApi.SystemMenu[]): VbenFormSchema[] {
|
||
/** 菜单树选项 */
|
||
const menuTreeProps = {
|
||
value: 'id',
|
||
title: 'name',
|
||
children: 'children',
|
||
};
|
||
|
||
return [
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'templateType',
|
||
label: '生成模板',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
options: getDictOptions(DICT_TYPE.INFRA_CODEGEN_TEMPLATE_TYPE, 'number'),
|
||
},
|
||
rules: z.number().min(1, { message: '生成模板不能为空' }),
|
||
},
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'frontType',
|
||
label: '前端类型',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
options: getDictOptions(DICT_TYPE.INFRA_CODEGEN_FRONT_TYPE, 'number'),
|
||
},
|
||
rules: z.number().min(1, { message: '前端类型不能为空' }),
|
||
},
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'scene',
|
||
label: '生成场景',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
options: getDictOptions(DICT_TYPE.INFRA_CODEGEN_SCENE, 'number'),
|
||
},
|
||
rules: z.number().min(1, { message: '生成场景不能为空' }),
|
||
},
|
||
{
|
||
component: 'TreeSelect',
|
||
fieldName: 'parentMenuId',
|
||
label: '上级菜单',
|
||
help: '分配到指定菜单下,例如 系统管理',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
showSearch: true,
|
||
treeData: menus,
|
||
fieldNames: menuTreeProps,
|
||
treeNodeFilterProp: 'title',
|
||
treeDefaultExpandAll: false,
|
||
treeCheckable: false,
|
||
placeholder: '请选择系统菜单',
|
||
},
|
||
},
|
||
{
|
||
component: 'Input',
|
||
fieldName: 'moduleName',
|
||
label: '模块名',
|
||
help: '模块名,即一级目录,例如 system、infra、tool 等等',
|
||
rules: z.string().min(1, { message: '模块名不能为空' }),
|
||
},
|
||
{
|
||
component: 'Input',
|
||
fieldName: 'businessName',
|
||
label: '业务名',
|
||
help: '业务名,即二级目录,例如 user、permission、dict 等等',
|
||
rules: z.string().min(1, { message: '业务名不能为空' }),
|
||
},
|
||
{
|
||
component: 'Input',
|
||
fieldName: 'className',
|
||
label: '类名称',
|
||
help: '类名称(首字母大写),例如SysUser、SysMenu、SysDictData 等等',
|
||
rules: z.string().min(1, { message: '类名称不能为空' }),
|
||
},
|
||
{
|
||
component: 'Input',
|
||
fieldName: 'classComment',
|
||
label: '类描述',
|
||
help: '用作类描述,例如 用户',
|
||
rules: z.string().min(1, { message: '类描述不能为空' }),
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 树表信息 schema */
|
||
export function useTreeTableFormSchema(columns: InfraCodegenApi.CodegenColumn[] = []): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
component: 'Divider',
|
||
fieldName: 'treeDivider',
|
||
label: '',
|
||
renderComponentContent: () => {
|
||
return {
|
||
default: () => ['树表信息'],
|
||
};
|
||
},
|
||
formItemClass: 'md:col-span-2',
|
||
},
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'treeParentColumnId',
|
||
label: '父编号字段',
|
||
help: '树显示的父编码字段名, 如:parent_Id',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
allowClear: true,
|
||
placeholder: '请选择',
|
||
options: columns.map((column) => ({
|
||
label: column.columnName,
|
||
value: column.id,
|
||
})),
|
||
},
|
||
},
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'treeNameColumnId',
|
||
label: '名称字段',
|
||
help: '树节点显示的名称字段,一般是name',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
allowClear: true,
|
||
placeholder: '请选择',
|
||
options: columns.map((column) => ({
|
||
label: column.columnName,
|
||
value: column.id,
|
||
})),
|
||
},
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 主子表信息 schema */
|
||
export function useSubTableFormSchema(
|
||
columns: InfraCodegenApi.CodegenColumn[] = [],
|
||
tables: InfraCodegenApi.CodegenTable[] = [],
|
||
): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
component: 'Divider',
|
||
fieldName: 'subDivider',
|
||
label: '',
|
||
renderComponentContent: () => {
|
||
return {
|
||
default: () => ['主子表信息'],
|
||
};
|
||
},
|
||
formItemClass: 'md:col-span-2',
|
||
},
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'masterTableId',
|
||
label: '关联的主表',
|
||
help: '关联主表(父表)的表名, 如:system_user',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
allowClear: true,
|
||
placeholder: '请选择',
|
||
options: tables.map((table) => ({
|
||
label: `${table.tableName}:${table.tableComment}`,
|
||
value: table.id,
|
||
})),
|
||
},
|
||
},
|
||
{
|
||
component: 'Select',
|
||
fieldName: 'subJoinColumnId',
|
||
label: '子表关联的字段',
|
||
help: '子表关联的字段, 如:user_id',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
allowClear: true,
|
||
placeholder: '请选择',
|
||
options: columns.map((column) => ({
|
||
label: `${column.columnName}:${column.columnComment}`,
|
||
value: column.id,
|
||
})),
|
||
},
|
||
},
|
||
{
|
||
component: 'RadioGroup',
|
||
fieldName: 'subJoinMany',
|
||
label: '关联关系',
|
||
help: '主表与子表的关联关系',
|
||
componentProps: {
|
||
class: 'w-full',
|
||
allowClear: true,
|
||
placeholder: '请选择',
|
||
options: [
|
||
{
|
||
label: '一对多',
|
||
value: true,
|
||
},
|
||
{
|
||
label: '一对一',
|
||
value: 'false',
|
||
},
|
||
],
|
||
},
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 列表的搜索表单 */
|
||
export function useGridFormSchema(): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
fieldName: 'tableName',
|
||
label: '表名称',
|
||
component: 'Input',
|
||
componentProps: {
|
||
allowClear: true,
|
||
placeholder: '请输入表名称',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'tableComment',
|
||
label: '表描述',
|
||
component: 'Input',
|
||
componentProps: {
|
||
allowClear: true,
|
||
placeholder: '请输入表描述',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'createTime',
|
||
label: '创建时间',
|
||
component: 'RangePicker',
|
||
componentProps: {
|
||
...getRangePickerDefaultProps(),
|
||
allowClear: true,
|
||
},
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 列表的字段 */
|
||
export function useGridColumns<T = InfraCodegenApi.CodegenTable>(
|
||
onActionClick: OnActionClickFn<T>,
|
||
dataSourceConfigList: InfraDataSourceConfigApi.InfraDataSourceConfig[],
|
||
): VxeTableGridOptions['columns'] {
|
||
return [
|
||
{
|
||
field: 'dataSourceConfigId',
|
||
title: '数据源',
|
||
minWidth: 120,
|
||
formatter: ({ cellValue }) => {
|
||
const config = dataSourceConfigList.find((item) => item.id === cellValue);
|
||
return config ? config.name : '';
|
||
},
|
||
},
|
||
{
|
||
field: 'tableName',
|
||
title: '表名称',
|
||
minWidth: 200,
|
||
},
|
||
{
|
||
field: 'tableComment',
|
||
title: '表描述',
|
||
minWidth: 200,
|
||
},
|
||
{
|
||
field: 'className',
|
||
title: '实体',
|
||
minWidth: 200,
|
||
},
|
||
{
|
||
field: 'createTime',
|
||
title: '创建时间',
|
||
minWidth: 180,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
field: 'updateTime',
|
||
title: '更新时间',
|
||
minWidth: 180,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
field: 'operation',
|
||
title: '操作',
|
||
width: 300,
|
||
fixed: 'right',
|
||
align: 'center',
|
||
cellRender: {
|
||
attrs: {
|
||
nameField: 'tableName',
|
||
nameTitle: '代码生成',
|
||
onClick: onActionClick,
|
||
},
|
||
name: 'CellOperation',
|
||
options: [
|
||
{
|
||
code: 'preview',
|
||
text: '预览',
|
||
show: hasAccessByCodes(['infra:codegen:preview']),
|
||
},
|
||
{
|
||
code: 'edit',
|
||
show: hasAccessByCodes(['infra:codegen:update']),
|
||
},
|
||
{
|
||
code: 'delete',
|
||
show: hasAccessByCodes(['infra:codegen:delete']),
|
||
},
|
||
{
|
||
code: 'sync',
|
||
text: '同步',
|
||
show: hasAccessByCodes(['infra:codegen:update']),
|
||
},
|
||
{
|
||
code: 'generate',
|
||
text: '生成代码',
|
||
show: hasAccessByCodes(['infra:codegen:download']),
|
||
},
|
||
],
|
||
},
|
||
},
|
||
];
|
||
}
|