mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 23:49:27 +08:00
* chore: upgrade react type to 18 * chore: update ant design icons to avoid ts error * fix: ts errors * fix: ts error after upgrade react types * fix: some icons ts error * fix: improve type validation in bulk edit form item settings * fix: lazy load component type error * fix: some ts errors * fix: unit test error after upgrade ant design icons * chore: remove ts-ignore comment for startTransition
252 lines
8.2 KiB
TypeScript
252 lines
8.2 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import { ArrayCollapse, FormLayout } from '@formily/antd-v5';
|
|
import { Field } from '@formily/core';
|
|
import { useField, useFieldSchema } from '@formily/react';
|
|
import {
|
|
SchemaSettings,
|
|
useApp,
|
|
useCollectionManager_deprecated,
|
|
useCollection_deprecated,
|
|
useDesignable,
|
|
useFieldComponentName,
|
|
useFormBlockContext,
|
|
useIsFormReadPretty,
|
|
useValidateSchema,
|
|
fieldComponentSettingsItem,
|
|
EditValidationRules,
|
|
useCompile,
|
|
} from '@nocobase/client';
|
|
import _ from 'lodash';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export const bulkEditFormItemSettings = new SchemaSettings({
|
|
name: 'fieldSettings:BulkEditFormItem',
|
|
items: [
|
|
{
|
|
name: 'decoratorOptions',
|
|
type: 'itemGroup',
|
|
hideIfNoChildren: true,
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
return {
|
|
title: t('Generic properties'),
|
|
};
|
|
},
|
|
useChildren() {
|
|
return [
|
|
{
|
|
name: 'editFieldTitle',
|
|
type: 'modal',
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
const compile = useCompile();
|
|
const { dn } = useDesignable();
|
|
const field = useField<Field>();
|
|
const fieldSchema = useFieldSchema();
|
|
const { getCollectionJoinField } = useCollectionManager_deprecated();
|
|
const { dataSource } = useCollection_deprecated();
|
|
const collectionField = getCollectionJoinField(fieldSchema['x-collection-field'], dataSource);
|
|
|
|
return {
|
|
title: t('Edit field title'),
|
|
schema: {
|
|
type: 'object',
|
|
title: t('Edit field title'),
|
|
properties: {
|
|
title: {
|
|
title: t('Field title'),
|
|
default: field?.title,
|
|
description: `${t('Original field title: ')}${collectionField?.uiSchema?.title}`,
|
|
'x-decorator': 'FormItem',
|
|
'x-component': 'Input',
|
|
'x-component-props': {},
|
|
},
|
|
},
|
|
},
|
|
onSubmit({ title }) {
|
|
const result = title.trim() === '' ? collectionField?.uiSchema?.title : title;
|
|
field.title = compile(result);
|
|
fieldSchema.title = title;
|
|
dn.emit('patch', {
|
|
schema: {
|
|
'x-uid': fieldSchema['x-uid'],
|
|
title: fieldSchema.title,
|
|
},
|
|
});
|
|
|
|
dn.refresh();
|
|
},
|
|
};
|
|
},
|
|
},
|
|
{
|
|
name: 'displayTitle',
|
|
type: 'switch',
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
const { dn } = useDesignable();
|
|
const field = useField<Field>();
|
|
const fieldSchema = useFieldSchema();
|
|
|
|
return {
|
|
title: t('Display title'),
|
|
checked: fieldSchema['x-decorator-props']?.['showTitle'] ?? true,
|
|
onChange(checked) {
|
|
fieldSchema['x-decorator-props'] = fieldSchema['x-decorator-props'] || {};
|
|
fieldSchema['x-decorator-props']['showTitle'] = checked;
|
|
field.decoratorProps.showTitle = checked;
|
|
dn.emit('patch', {
|
|
schema: {
|
|
'x-uid': fieldSchema['x-uid'],
|
|
'x-decorator-props': {
|
|
...fieldSchema['x-decorator-props'],
|
|
showTitle: checked,
|
|
},
|
|
},
|
|
});
|
|
dn.refresh();
|
|
},
|
|
};
|
|
},
|
|
},
|
|
{
|
|
name: 'editDescription',
|
|
type: 'modal',
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
const { dn } = useDesignable();
|
|
const field = useField<Field>();
|
|
const fieldSchema = useFieldSchema();
|
|
|
|
return {
|
|
title: t('Edit description'),
|
|
schema: {
|
|
type: 'object',
|
|
title: t('Edit description'),
|
|
properties: {
|
|
description: {
|
|
// title: t('Description'),
|
|
default: field?.description,
|
|
'x-decorator': 'FormItem',
|
|
'x-component': 'Input.TextArea',
|
|
'x-component-props': {},
|
|
},
|
|
},
|
|
},
|
|
onSubmit({ description }) {
|
|
field.description = description;
|
|
fieldSchema.description = description;
|
|
dn.emit('patch', {
|
|
schema: {
|
|
'x-uid': fieldSchema['x-uid'],
|
|
description: fieldSchema.description,
|
|
},
|
|
});
|
|
dn.refresh();
|
|
},
|
|
};
|
|
},
|
|
},
|
|
{
|
|
name: 'editTooltip',
|
|
type: 'modal',
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
const { dn } = useDesignable();
|
|
const field = useField<Field>();
|
|
const fieldSchema = useFieldSchema();
|
|
|
|
return {
|
|
title: t('Edit tooltip'),
|
|
schema: {
|
|
type: 'object',
|
|
title: t('Edit tooltip'),
|
|
properties: {
|
|
tooltip: {
|
|
default: fieldSchema?.['x-decorator-props']?.tooltip,
|
|
'x-decorator': 'FormItem',
|
|
'x-component': 'Input.TextArea',
|
|
'x-component-props': {},
|
|
},
|
|
},
|
|
},
|
|
onSubmit({ tooltip }) {
|
|
field.decoratorProps.tooltip = tooltip;
|
|
fieldSchema['x-decorator-props'] = fieldSchema['x-decorator-props'] || {};
|
|
fieldSchema['x-decorator-props']['tooltip'] = tooltip;
|
|
dn.emit('patch', {
|
|
schema: {
|
|
'x-uid': fieldSchema['x-uid'],
|
|
'x-decorator-props': fieldSchema['x-decorator-props'],
|
|
},
|
|
});
|
|
dn.refresh();
|
|
},
|
|
};
|
|
},
|
|
},
|
|
{
|
|
name: 'setValidationRules',
|
|
type: 'modal',
|
|
Component: EditValidationRules,
|
|
useVisible() {
|
|
const { form } = useFormBlockContext();
|
|
const isFormReadPretty = useIsFormReadPretty();
|
|
const validateSchema = useValidateSchema();
|
|
return form && !isFormReadPretty && Boolean(validateSchema);
|
|
},
|
|
},
|
|
fieldComponentSettingsItem,
|
|
];
|
|
},
|
|
},
|
|
{
|
|
name: 'componentOptions',
|
|
type: 'itemGroup',
|
|
hideIfNoChildren: true,
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
return {
|
|
title: t('Specific properties'),
|
|
};
|
|
},
|
|
useChildren() {
|
|
const app = useApp();
|
|
const fieldComponentName = useFieldComponentName();
|
|
const componentSettings = app.schemaSettingsManager.get(`fieldSettings:component:${fieldComponentName}`);
|
|
return componentSettings?.items || [];
|
|
},
|
|
},
|
|
{
|
|
name: 'divider',
|
|
type: 'divider',
|
|
},
|
|
{
|
|
name: 'delete',
|
|
type: 'remove',
|
|
sort: 100,
|
|
useComponentProps() {
|
|
const { t } = useTranslation();
|
|
|
|
return {
|
|
removeParentsIfNoChildren: true,
|
|
confirm: {
|
|
title: t('Delete field'),
|
|
},
|
|
breakRemoveOn: {
|
|
'x-component': 'Grid',
|
|
},
|
|
};
|
|
},
|
|
},
|
|
],
|
|
});
|