|
import * as React from 'react'; |
|
import type { FormInstance as RcFormInstance } from 'rc-field-form'; |
|
import { useForm as useRcForm } from 'rc-field-form'; |
|
import { getDOM } from 'rc-util/lib/Dom/findDOMNode'; |
|
import scrollIntoView from 'scroll-into-view-if-needed'; |
|
|
|
import type { InternalNamePath, NamePath, ScrollOptions } from '../interface'; |
|
import { getFieldId, toArray } from '../util'; |
|
|
|
export interface FormInstance<Values = any> extends RcFormInstance<Values> { |
|
scrollToField: (name: NamePath, options?: ScrollOptions) => void; |
|
focusField: (name: NamePath) => void; |
|
|
|
__INTERNAL__: { |
|
|
|
name?: string; |
|
|
|
itemRef: (name: InternalNamePath) => (node: React.ReactElement) => void; |
|
}; |
|
getFieldInstance: (name: NamePath) => any; |
|
} |
|
|
|
export function toNamePathStr(name: NamePath) { |
|
const namePath = toArray(name); |
|
return namePath.join('_'); |
|
} |
|
|
|
function getFieldDOMNode(name: NamePath, wrapForm: FormInstance) { |
|
const field = wrapForm.getFieldInstance(name); |
|
const fieldDom = getDOM(field); |
|
|
|
if (fieldDom) { |
|
return fieldDom; |
|
} |
|
|
|
const fieldId = getFieldId(toArray(name), wrapForm.__INTERNAL__.name); |
|
if (fieldId) { |
|
return document.getElementById(fieldId); |
|
} |
|
} |
|
|
|
export default function useForm<Values = any>(form?: FormInstance<Values>): [FormInstance<Values>] { |
|
const [rcForm] = useRcForm(); |
|
const itemsRef = React.useRef<Record<string, React.ReactElement>>({}); |
|
|
|
const wrapForm: FormInstance<Values> = React.useMemo( |
|
() => |
|
form ?? { |
|
...rcForm, |
|
__INTERNAL__: { |
|
itemRef: (name: InternalNamePath) => (node: React.ReactElement) => { |
|
const namePathStr = toNamePathStr(name); |
|
if (node) { |
|
itemsRef.current[namePathStr] = node; |
|
} else { |
|
delete itemsRef.current[namePathStr]; |
|
} |
|
}, |
|
}, |
|
scrollToField: (name: NamePath, options: ScrollOptions = {}) => { |
|
const { focus, ...restOpt } = options; |
|
const node = getFieldDOMNode(name, wrapForm); |
|
|
|
if (node) { |
|
scrollIntoView(node, { |
|
scrollMode: 'if-needed', |
|
block: 'nearest', |
|
...restOpt, |
|
} as any); |
|
|
|
|
|
if (focus) { |
|
wrapForm.focusField(name); |
|
} |
|
} |
|
}, |
|
focusField: (name: NamePath) => { |
|
const itemRef = wrapForm.getFieldInstance(name); |
|
|
|
if (typeof itemRef?.focus === 'function') { |
|
itemRef.focus(); |
|
} else { |
|
getFieldDOMNode(name, wrapForm)?.focus?.(); |
|
} |
|
}, |
|
getFieldInstance: (name: NamePath) => { |
|
const namePathStr = toNamePathStr(name); |
|
return itemsRef.current[namePathStr]; |
|
}, |
|
}, |
|
[form, rcForm], |
|
); |
|
|
|
return [wrapForm]; |
|
} |
|
|