mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
e46d414b11
* support getFieldInstance * update doc * fix lint * move func * move into hooks * update ref logic * fix lint * rm only * fix docs
29 lines
909 B
TypeScript
29 lines
909 B
TypeScript
import * as React from 'react';
|
|
import { composeRef } from 'rc-util/lib/ref';
|
|
import { FormContext } from '../context';
|
|
import { InternalNamePath } from '../interface';
|
|
|
|
export default function useItemRef() {
|
|
const { itemRef } = React.useContext(FormContext);
|
|
const cacheRef = React.useRef<{
|
|
name?: string;
|
|
originRef?: React.Ref<any>;
|
|
ref?: React.Ref<any>;
|
|
}>({});
|
|
|
|
function getRef(name: InternalNamePath, children: any) {
|
|
const childrenRef: React.Ref<React.ReactElement> =
|
|
children && typeof children === 'object' && children.ref;
|
|
const nameStr = name.join('_');
|
|
if (cacheRef.current.name !== nameStr || cacheRef.current.originRef !== childrenRef) {
|
|
cacheRef.current.name = nameStr;
|
|
cacheRef.current.originRef = childrenRef;
|
|
cacheRef.current.ref = composeRef(itemRef(name), childrenRef);
|
|
}
|
|
|
|
return cacheRef.current.ref;
|
|
}
|
|
|
|
return getRef;
|
|
}
|