mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:25:52 +00:00
refactor: code improve
This commit is contained in:
parent
515e730048
commit
df4d84348a
@ -1,12 +1,13 @@
|
||||
import { useField, useFieldSchema } from '@formily/react';
|
||||
import { useField, useFieldSchema, observer } from '@formily/react';
|
||||
import React, { useMemo } from 'react';
|
||||
import { useCollectionManager } from '../../../collection-manager';
|
||||
import { AssociationFieldContext } from './context';
|
||||
|
||||
export function AssociationFieldProvider(props) {
|
||||
export const AssociationFieldProvider = observer((props) => {
|
||||
const field = useField();
|
||||
const { getCollectionJoinField, getCollection } = useCollectionManager();
|
||||
const fieldSchema = useFieldSchema();
|
||||
|
||||
const collectionField = useMemo(
|
||||
() => getCollectionJoinField(fieldSchema['x-collection-field']),
|
||||
[fieldSchema['x-collection-field'], fieldSchema.name],
|
||||
@ -15,9 +16,13 @@ export function AssociationFieldProvider(props) {
|
||||
() => getCollection(collectionField?.target)?.template === 'file',
|
||||
[fieldSchema['x-collection-field']],
|
||||
);
|
||||
const currentMode = useMemo(
|
||||
() => fieldSchema['x-component-props'].mode || (isFileCollection ? 'FileManager' : 'Select'),
|
||||
[fieldSchema['x-component-props'].mode],
|
||||
);
|
||||
return collectionField ? (
|
||||
<AssociationFieldContext.Provider value={{ options: collectionField, field, isFileCollection }}>
|
||||
<AssociationFieldContext.Provider value={{ options: collectionField, field, currentMode }}>
|
||||
{props.children}
|
||||
</AssociationFieldContext.Provider>
|
||||
) : null;
|
||||
}
|
||||
});
|
||||
|
@ -11,16 +11,12 @@ import { InternalFileManager } from './FileManager';
|
||||
import { useAssociationFieldContext } from './hooks';
|
||||
|
||||
const EditableAssociationField = observer((props: any) => {
|
||||
useEffect(() => {
|
||||
props.mode && setCurrentMode(props.mode);
|
||||
}, [props.mode]);
|
||||
const { multiple } = props;
|
||||
const field: any = useField();
|
||||
const form = useForm();
|
||||
const fieldSchema = useFieldSchema();
|
||||
console.log(useAssociationFieldContext());
|
||||
const { options: collectionField, isFileCollection } = useAssociationFieldContext();
|
||||
const [currentMode, setCurrentMode] = useState(props.mode || (isFileCollection ? 'FileManager' : 'Select'));
|
||||
const { options: collectionField, currentMode } = useAssociationFieldContext();
|
||||
|
||||
const useCreateActionProps = () => {
|
||||
const { onClick } = useCAP();
|
||||
const actionField: any = useField();
|
||||
|
@ -8,11 +8,8 @@ import { FileManageReadPretty } from './FileManager';
|
||||
import { useAssociationFieldContext } from './hooks';
|
||||
|
||||
const ReadPrettyAssociationField = observer((props: any) => {
|
||||
const { isFileCollection } = useAssociationFieldContext();
|
||||
const [currentMode, setCurrentMode] = useState(props.mode || (isFileCollection ? 'FileManager' : 'Select'));
|
||||
useEffect(() => {
|
||||
props.mode && setCurrentMode(props.mode);
|
||||
}, [props.mode]);
|
||||
const { currentMode } = useAssociationFieldContext();
|
||||
|
||||
return (
|
||||
<>
|
||||
{['Select', 'Picker'].includes(currentMode) && <ReadPrettyInternalViewer {...props} />}
|
||||
|
@ -4,7 +4,7 @@ import { createContext } from 'react';
|
||||
export interface AssociationFieldContextProps {
|
||||
options?: any;
|
||||
field?: GeneralField;
|
||||
isFileCollection?: boolean;
|
||||
currentMode?:string;
|
||||
}
|
||||
|
||||
export const AssociationFieldContext = createContext<AssociationFieldContextProps>({});
|
||||
|
@ -30,7 +30,7 @@ export const useInsertSchema = (component) => {
|
||||
};
|
||||
|
||||
export function useAssociationFieldContext<F extends GeneralField>() {
|
||||
return useContext(AssociationFieldContext) as { options: any; field: F; isFileCollection: boolean };
|
||||
return useContext(AssociationFieldContext) as { options: any; field: F; currentMode: string };
|
||||
}
|
||||
|
||||
export default function useServiceOptions(props) {
|
||||
|
Loading…
Reference in New Issue
Block a user