fix: optional fields of the child collection cannot be displayed correctly in the parent collection (#2194)

This commit is contained in:
katherinehhh 2023-07-06 16:50:10 +08:00 committed by GitHub
parent f44c5f3b4a
commit a3dc6d67e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import { SchemaKey, useFieldSchema } from '@formily/react';
import React from 'react';
import { useRecord } from '../record-provider';
import { CollectionFieldContext } from './context';
import { useCollection, useCollectionManager } from './hooks';
import { CollectionFieldOptions } from './types';
@ -12,8 +13,11 @@ export const CollectionFieldProvider: React.FC<{
const { name, field, children, fallback = null } = props;
const fieldSchema = useFieldSchema();
const { getField } = useCollection();
const { __collection } = useRecord();
const { getCollectionJoinField } = useCollectionManager();
const value = field || getField(field?.name || name) || getCollectionJoinField(fieldSchema?.['x-collection-field']);
const value = __collection
? getCollectionJoinField(`${__collection}.${name}`)
: field || getField(field?.name || name) || getCollectionJoinField(fieldSchema?.['x-collection-field']);
if (!value) {
return fallback;
}