124 lines
4.5 KiB
TypeScript
124 lines
4.5 KiB
TypeScript
|
import { ArrayItems } from '@formily/antd';
|
||
|
import type { ISchema } from '@formily/react';
|
||
|
import { useField, useFieldSchema } from '@formily/react';
|
||
|
import { GeneralSchemaDesigner, SchemaSettings, useDesignable } from '@nocobase/client';
|
||
|
import React, { useEffect, useState } from 'react';
|
||
|
import { useTranslation } from 'react-i18next';
|
||
|
import { useShared } from './useShared';
|
||
|
|
||
|
export const ImportDesigner = () => {
|
||
|
const field = useField();
|
||
|
const fieldSchema = useFieldSchema();
|
||
|
const { t } = useTranslation();
|
||
|
const { dn } = useDesignable();
|
||
|
const [schema, setSchema] = useState<ISchema>();
|
||
|
const { importSettingsSchema } = useShared();
|
||
|
|
||
|
useEffect(() => {
|
||
|
setSchema(importSettingsSchema);
|
||
|
}, [field.address, fieldSchema?.['x-action-settings']?.['importSettings']]);
|
||
|
|
||
|
return (
|
||
|
<GeneralSchemaDesigner disableInitializer>
|
||
|
<SchemaSettings.ModalItem
|
||
|
title={t('Edit button')}
|
||
|
schema={
|
||
|
{
|
||
|
type: 'object',
|
||
|
title: t('Edit button'),
|
||
|
properties: {
|
||
|
title: {
|
||
|
'x-decorator': 'FormItem',
|
||
|
'x-component': 'Input',
|
||
|
title: t('Button title'),
|
||
|
default: fieldSchema.title,
|
||
|
'x-component-props': {},
|
||
|
// description: `原字段标题:${collectionField?.uiSchema?.title}`,
|
||
|
},
|
||
|
icon: {
|
||
|
'x-decorator': 'FormItem',
|
||
|
'x-component': 'IconPicker',
|
||
|
title: t('Button icon'),
|
||
|
default: fieldSchema?.['x-component-props']?.icon,
|
||
|
'x-component-props': {},
|
||
|
// description: `原字段标题:${collectionField?.uiSchema?.title}`,
|
||
|
},
|
||
|
type: {
|
||
|
'x-decorator': 'FormItem',
|
||
|
'x-component': 'Radio.Group',
|
||
|
title: t('Button background color'),
|
||
|
default: fieldSchema?.['x-component-props']?.danger
|
||
|
? 'danger'
|
||
|
: fieldSchema?.['x-component-props']?.type === 'primary'
|
||
|
? 'primary'
|
||
|
: 'default',
|
||
|
enum: [
|
||
|
{ value: 'default', label: '{{t("Default")}}' },
|
||
|
{ value: 'primary', label: '{{t("Highlight")}}' },
|
||
|
{ value: 'danger', label: '{{t("Danger red")}}' },
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
} as ISchema
|
||
|
}
|
||
|
onSubmit={({ title, icon, type }) => {
|
||
|
if (title) {
|
||
|
fieldSchema.title = title;
|
||
|
field.title = title;
|
||
|
field.componentProps.icon = icon;
|
||
|
field.componentProps.danger = type === 'danger';
|
||
|
field.componentProps.type = type;
|
||
|
fieldSchema['x-component-props'] = fieldSchema['x-component-props'] || {};
|
||
|
fieldSchema['x-component-props'].icon = icon;
|
||
|
fieldSchema['x-component-props'].danger = type === 'danger';
|
||
|
fieldSchema['x-component-props'].type = type;
|
||
|
dn.emit('patch', {
|
||
|
schema: {
|
||
|
['x-uid']: fieldSchema['x-uid'],
|
||
|
title,
|
||
|
'x-component-props': {
|
||
|
...fieldSchema['x-component-props'],
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
dn.refresh();
|
||
|
}
|
||
|
}}
|
||
|
/>
|
||
|
<SchemaSettings.ActionModalItem
|
||
|
title={t('Importable fields')}
|
||
|
schema={schema}
|
||
|
initialValues={{ ...(fieldSchema?.['x-action-settings']?.importSettings ?? {}) }}
|
||
|
components={{ ArrayItems }}
|
||
|
onSubmit={({ importColumns, explain }) => {
|
||
|
const columns = importColumns
|
||
|
?.filter((fieldItem) => fieldItem?.dataIndex?.length)
|
||
|
.map((item) => ({
|
||
|
dataIndex: item.dataIndex.map((di) => di.name ?? di),
|
||
|
title: item.title,
|
||
|
}));
|
||
|
fieldSchema['x-action-settings']['importSettings'] = { importColumns: columns, explain };
|
||
|
|
||
|
dn.emit('patch', {
|
||
|
schema: {
|
||
|
['x-uid']: fieldSchema['x-uid'],
|
||
|
'x-action-settings': fieldSchema['x-action-settings'],
|
||
|
},
|
||
|
});
|
||
|
dn.refresh();
|
||
|
}}
|
||
|
/>
|
||
|
<SchemaSettings.Divider />
|
||
|
<SchemaSettings.Remove
|
||
|
removeParentsIfNoChildren
|
||
|
breakRemoveOn={(s) => {
|
||
|
return s['x-component'] === 'Space' || s['x-component'].endsWith('ActionBar');
|
||
|
}}
|
||
|
confirm={{
|
||
|
title: t('Delete action'),
|
||
|
}}
|
||
|
/>
|
||
|
</GeneralSchemaDesigner>
|
||
|
);
|
||
|
};
|