2024-10-13 18:33:43 +08:00
|
|
|
|
/**
|
|
|
|
|
* 通用组件共同的使用的基础组件,原先放在 adapter/form 内部,限制了使用范围,这里提取出来,方便其他地方使用
|
|
|
|
|
* 可用于 vben-form、vben-modal、vben-drawer 等组件使用,
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import type { BaseFormComponentType } from '@vben/common-ui';
|
|
|
|
|
|
|
|
|
|
import type { Component, SetupContext } from 'vue';
|
|
|
|
|
import { h } from 'vue';
|
|
|
|
|
|
2024-12-04 22:56:29 +08:00
|
|
|
|
import { ApiSelect, globalShareState, IconPicker } from '@vben/common-ui';
|
2024-10-13 18:33:43 +08:00
|
|
|
|
import { $t } from '@vben/locales';
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
NButton,
|
|
|
|
|
NCheckbox,
|
|
|
|
|
NCheckboxGroup,
|
|
|
|
|
NDatePicker,
|
|
|
|
|
NDivider,
|
|
|
|
|
NInput,
|
|
|
|
|
NInputNumber,
|
2024-12-08 19:23:46 +08:00
|
|
|
|
NRadio,
|
|
|
|
|
NRadioButton,
|
2024-10-13 18:33:43 +08:00
|
|
|
|
NRadioGroup,
|
|
|
|
|
NSelect,
|
|
|
|
|
NSpace,
|
|
|
|
|
NSwitch,
|
|
|
|
|
NTimePicker,
|
|
|
|
|
NTreeSelect,
|
|
|
|
|
NUpload,
|
|
|
|
|
} from 'naive-ui';
|
|
|
|
|
|
|
|
|
|
import { message } from '#/adapter/naive';
|
|
|
|
|
|
|
|
|
|
const withDefaultPlaceholder = <T extends Component>(
|
|
|
|
|
component: T,
|
|
|
|
|
type: 'input' | 'select',
|
|
|
|
|
) => {
|
|
|
|
|
return (props: any, { attrs, slots }: Omit<SetupContext, 'expose'>) => {
|
2024-10-19 14:28:21 +08:00
|
|
|
|
const placeholder = props?.placeholder || $t(`ui.placeholder.${type}`);
|
2024-10-13 18:33:43 +08:00
|
|
|
|
return h(component, { ...props, ...attrs, placeholder }, slots);
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 这里需要自行根据业务组件库进行适配,需要用到的组件都需要在这里类型说明
|
|
|
|
|
export type ComponentType =
|
2024-12-04 22:56:29 +08:00
|
|
|
|
| 'ApiSelect'
|
2024-12-09 12:47:33 +08:00
|
|
|
|
| 'ApiTreeSelect'
|
2024-10-13 18:33:43 +08:00
|
|
|
|
| 'Checkbox'
|
|
|
|
|
| 'CheckboxGroup'
|
|
|
|
|
| 'DatePicker'
|
|
|
|
|
| 'Divider'
|
2024-12-04 21:42:21 +08:00
|
|
|
|
| 'IconPicker'
|
2024-10-13 18:33:43 +08:00
|
|
|
|
| 'Input'
|
|
|
|
|
| 'InputNumber'
|
|
|
|
|
| 'RadioGroup'
|
|
|
|
|
| 'Select'
|
|
|
|
|
| 'Space'
|
|
|
|
|
| 'Switch'
|
|
|
|
|
| 'TimePicker'
|
|
|
|
|
| 'TreeSelect'
|
|
|
|
|
| 'Upload'
|
|
|
|
|
| BaseFormComponentType;
|
|
|
|
|
|
|
|
|
|
async function initComponentAdapter() {
|
|
|
|
|
const components: Partial<Record<ComponentType, Component>> = {
|
|
|
|
|
// 如果你的组件体积比较大,可以使用异步加载
|
|
|
|
|
// Button: () =>
|
|
|
|
|
// import('xxx').then((res) => res.Button),
|
|
|
|
|
|
2024-12-04 22:56:29 +08:00
|
|
|
|
ApiSelect: (props, { attrs, slots }) => {
|
|
|
|
|
return h(
|
|
|
|
|
ApiSelect,
|
|
|
|
|
{
|
2024-12-09 14:03:46 +08:00
|
|
|
|
placeholder: $t('ui.placeholder.select'),
|
2024-12-04 22:56:29 +08:00
|
|
|
|
...props,
|
|
|
|
|
...attrs,
|
|
|
|
|
component: NSelect,
|
2024-12-09 12:47:33 +08:00
|
|
|
|
modelPropName: 'value',
|
|
|
|
|
},
|
|
|
|
|
slots,
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
ApiTreeSelect: (props, { attrs, slots }) => {
|
|
|
|
|
return h(
|
|
|
|
|
ApiSelect,
|
|
|
|
|
{
|
2024-12-09 14:03:46 +08:00
|
|
|
|
placeholder: $t('ui.placeholder.select'),
|
2024-12-09 12:47:33 +08:00
|
|
|
|
...props,
|
|
|
|
|
...attrs,
|
|
|
|
|
component: NTreeSelect,
|
|
|
|
|
nodeKey: 'value',
|
|
|
|
|
loadingSlot: 'arrow',
|
|
|
|
|
keyField: 'value',
|
|
|
|
|
modelPropName: 'value',
|
|
|
|
|
optionsPropName: 'options',
|
|
|
|
|
visibleEvent: 'onVisibleChange',
|
2024-12-04 22:56:29 +08:00
|
|
|
|
},
|
|
|
|
|
slots,
|
|
|
|
|
);
|
|
|
|
|
},
|
2024-10-13 18:33:43 +08:00
|
|
|
|
Checkbox: NCheckbox,
|
2024-12-08 19:23:46 +08:00
|
|
|
|
CheckboxGroup: (props, { attrs, slots }) => {
|
|
|
|
|
let defaultSlot;
|
|
|
|
|
if (Reflect.has(slots, 'default')) {
|
|
|
|
|
defaultSlot = slots.default;
|
|
|
|
|
} else {
|
|
|
|
|
const { options } = attrs;
|
|
|
|
|
if (Array.isArray(options)) {
|
|
|
|
|
defaultSlot = () => options.map((option) => h(NCheckbox, option));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return h(
|
|
|
|
|
NCheckboxGroup,
|
|
|
|
|
{ ...props, ...attrs },
|
|
|
|
|
{ default: defaultSlot },
|
|
|
|
|
);
|
|
|
|
|
},
|
2024-10-13 18:33:43 +08:00
|
|
|
|
DatePicker: NDatePicker,
|
|
|
|
|
// 自定义默认按钮
|
|
|
|
|
DefaultButton: (props, { attrs, slots }) => {
|
2024-10-21 20:14:25 +08:00
|
|
|
|
return h(NButton, { ...props, attrs, type: 'default' }, slots);
|
2024-10-13 18:33:43 +08:00
|
|
|
|
},
|
|
|
|
|
// 自定义主要按钮
|
|
|
|
|
PrimaryButton: (props, { attrs, slots }) => {
|
|
|
|
|
return h(NButton, { ...props, attrs, type: 'primary' }, slots);
|
|
|
|
|
},
|
|
|
|
|
Divider: NDivider,
|
2024-12-06 13:46:52 +08:00
|
|
|
|
IconPicker: (props, { attrs, slots }) => {
|
|
|
|
|
return h(
|
|
|
|
|
IconPicker,
|
|
|
|
|
{ iconSlot: 'suffix', inputComponent: NInput, ...props, ...attrs },
|
|
|
|
|
slots,
|
|
|
|
|
);
|
|
|
|
|
},
|
2024-10-13 18:33:43 +08:00
|
|
|
|
Input: withDefaultPlaceholder(NInput, 'input'),
|
|
|
|
|
InputNumber: withDefaultPlaceholder(NInputNumber, 'input'),
|
2024-12-08 19:23:46 +08:00
|
|
|
|
RadioGroup: (props, { attrs, slots }) => {
|
|
|
|
|
let defaultSlot;
|
|
|
|
|
if (Reflect.has(slots, 'default')) {
|
|
|
|
|
defaultSlot = slots.default;
|
|
|
|
|
} else {
|
|
|
|
|
const { options } = attrs;
|
|
|
|
|
if (Array.isArray(options)) {
|
|
|
|
|
defaultSlot = () =>
|
|
|
|
|
options.map((option) =>
|
|
|
|
|
h(attrs.isButton ? NRadioButton : NRadio, option),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const groupRender = h(
|
|
|
|
|
NRadioGroup,
|
|
|
|
|
{ ...props, ...attrs },
|
|
|
|
|
{ default: defaultSlot },
|
|
|
|
|
);
|
|
|
|
|
return attrs.isButton
|
|
|
|
|
? h(NSpace, { vertical: true }, () => groupRender)
|
|
|
|
|
: groupRender;
|
|
|
|
|
},
|
2024-10-13 18:33:43 +08:00
|
|
|
|
Select: withDefaultPlaceholder(NSelect, 'select'),
|
|
|
|
|
Space: NSpace,
|
|
|
|
|
Switch: NSwitch,
|
|
|
|
|
TimePicker: NTimePicker,
|
|
|
|
|
TreeSelect: withDefaultPlaceholder(NTreeSelect, 'select'),
|
|
|
|
|
Upload: NUpload,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 将组件注册到全局共享状态中
|
|
|
|
|
globalShareState.setComponents(components);
|
|
|
|
|
|
|
|
|
|
// 定义全局共享状态中的消息提示
|
|
|
|
|
globalShareState.defineMessage({
|
|
|
|
|
// 复制成功消息提示
|
|
|
|
|
copyPreferencesSuccess: (title, content) => {
|
|
|
|
|
message.success(content || title, {
|
|
|
|
|
duration: 0,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export { initComponentAdapter };
|