mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 07:29:24 +08:00
* feat: snapshort init * feat: snapshot update yarn.lock * feat: snapshot add to preset * feat: snapshot add field fix * feat: snapshot remove Table Column SnapshotField * feat: snapshot field label fix * feat: snapshot request error fix * feat: snapshot 二级关联数据打开 * feat: snapshot batch edit fix * feat: snapshot 2 level draw fix * feat: snapshot translate * feat: snapshot global historyCollection provider * feat: snapshot install initial * feat: snapshot refreshCH * feat: snapshot add transaction * feat: snapshot default collecitonField * feat: snapshot build fix * feat: snapshot useSnapshotFieldTargetCollectionKey * feat: snapshot batch update * feat: snapshot linkto support * feat: snapshot use getRepository * feat: snapshot recreate fix * feat: snapshot collectionKey to collectionName & rebuild collection * feat: snapshot remove SnapshotHistoryCollectionProvider & collectionName * feat: snapshot use historyCollections in inherit table * feat: snapshot fix TableSelectorBlock appends * feat: snapshot kanban fix * feat: snapshot snapshot association field fix * feat: snapshot add CollectionFieldProvider fallback * feat: snapshot AssociationSelect fix * feat: snapshot TableField fix
123 lines
3.8 KiB
TypeScript
123 lines
3.8 KiB
TypeScript
import { Field } from '@formily/core';
|
|
import { connect, useField, useFieldSchema } from '@formily/react';
|
|
import { merge } from '@formily/shared';
|
|
import { concat } from 'lodash';
|
|
import React, { useEffect } from 'react';
|
|
import { useActionContext, useCompile, useComponent, useFormBlockContext, useRecord } from '..';
|
|
import { CollectionFieldProvider } from './CollectionFieldProvider';
|
|
import { useCollectionField } from './hooks';
|
|
|
|
// TODO: 初步适配
|
|
const InternalField: React.FC = (props) => {
|
|
const field = useField<Field>();
|
|
const fieldSchema = useFieldSchema();
|
|
const { name, interface: interfaceType, uiSchema, defaultValue } = useCollectionField();
|
|
const collectionField = useCollectionField();
|
|
const component = useComponent(uiSchema?.['x-component']);
|
|
const compile = useCompile();
|
|
const setFieldProps = (key, value) => {
|
|
field[key] = typeof field[key] === 'undefined' ? value : field[key];
|
|
};
|
|
const setRequired = () => {
|
|
if (typeof fieldSchema['required'] === 'undefined') {
|
|
field.required = !!uiSchema['required'];
|
|
}
|
|
};
|
|
const ctx = useFormBlockContext();
|
|
|
|
useEffect(() => {
|
|
if (ctx?.field) {
|
|
ctx.field.added = ctx.field.added || new Set();
|
|
ctx.field.added.add(fieldSchema.name);
|
|
}
|
|
});
|
|
// TODO: 初步适配
|
|
useEffect(() => {
|
|
if (!uiSchema) {
|
|
return;
|
|
}
|
|
setFieldProps('content', uiSchema['x-content']);
|
|
setFieldProps('title', uiSchema.title);
|
|
setFieldProps('description', uiSchema.description);
|
|
if (ctx?.form) {
|
|
setFieldProps('initialValue', fieldSchema.default || defaultValue);
|
|
}
|
|
|
|
if (!field.validator && (uiSchema['x-validator'] || fieldSchema['x-validator'])) {
|
|
const concatSchema = concat([], uiSchema['x-validator'] || [], fieldSchema['x-validator'] || []);
|
|
field.validator = concatSchema;
|
|
}
|
|
if (fieldSchema['x-disabled'] === true) {
|
|
field.disabled = true;
|
|
}
|
|
if (fieldSchema['x-read-pretty'] === true) {
|
|
field.readPretty = true;
|
|
}
|
|
setRequired();
|
|
// @ts-ignore
|
|
field.dataSource = uiSchema.enum;
|
|
const originalProps = compile(uiSchema['x-component-props']) || {};
|
|
const componentProps = merge(originalProps, field.componentProps || {});
|
|
field.component = [component, componentProps];
|
|
|
|
// if (interfaceType === 'input') {
|
|
// field.componentProps.ellipsis = true;
|
|
// } else if (interfaceType === 'textarea') {
|
|
// field.componentProps.ellipsis = true;
|
|
// } else if (interfaceType === 'markdown') {
|
|
// field.componentProps.ellipsis = true;
|
|
// } else if (interfaceType === 'attachment') {
|
|
// field.componentProps.size = 'small';
|
|
// }
|
|
}, [JSON.stringify(uiSchema)]);
|
|
if (!uiSchema) {
|
|
return null;
|
|
}
|
|
|
|
return React.createElement(component, props, props.children);
|
|
};
|
|
|
|
export const InternalFallbackField = () => {
|
|
const { uiSchema } = useCollectionField();
|
|
const field = useField<Field>();
|
|
const fieldSchema = useFieldSchema();
|
|
const record = useRecord();
|
|
|
|
const displayKey = fieldSchema['x-component-props']?.fieldNames?.label ?? 'id';
|
|
|
|
const value = record[fieldSchema.name];
|
|
|
|
useEffect(() => {
|
|
field.title = fieldSchema.title ?? fieldSchema.name;
|
|
}, [uiSchema?.title]);
|
|
|
|
let displayText = value;
|
|
|
|
if (Array.isArray(value) || typeof value === 'object') {
|
|
displayText = []
|
|
.concat(value)
|
|
.map((i) => i[displayKey])
|
|
.join(', ');
|
|
}
|
|
|
|
return <div>{displayText}</div>;
|
|
};
|
|
|
|
export const CollectionField = connect((props) => {
|
|
const fieldSchema = useFieldSchema();
|
|
const field = fieldSchema?.['x-component-props']?.['field'];
|
|
const { snapshot } = useActionContext();
|
|
|
|
return (
|
|
<CollectionFieldProvider
|
|
name={fieldSchema.name}
|
|
field={field}
|
|
fallback={snapshot ? <InternalFallbackField /> : null}
|
|
>
|
|
<InternalField {...props} />
|
|
</CollectionFieldProvider>
|
|
);
|
|
});
|
|
|
|
export default CollectionField;
|