-
-
Notifications
You must be signed in to change notification settings - Fork 484
/
Copy pathuseField.js
246 lines (222 loc) · 7.2 KB
/
useField.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
// @flow
import * as React from 'react'
import { fieldSubscriptionItems } from 'final-form'
import type {
FieldSubscription,
FieldState,
FormApi,
FormValuesShape
} from 'final-form'
import type { UseFieldConfig, FieldInputProps, FieldRenderProps } from './types'
import isReactNative from './isReactNative'
import getValue from './getValue'
import useForm from './useForm'
import useLatest from './useLatest'
import { addLazyFieldMetaState } from './getters'
const all: FieldSubscription = fieldSubscriptionItems.reduce((result, key) => {
result[key] = true
return result
}, {})
const defaultFormat = (value: ?any, name: string) =>
value === undefined ? '' : value
const defaultParse = (value: ?any, name: string) =>
value === '' ? undefined : value
const defaultIsEqual = (a: any, b: any): boolean => a === b
function useField<FormValues: FormValuesShape>(
name: string,
config: UseFieldConfig = {}
): FieldRenderProps {
const {
afterSubmit,
allowNull,
component,
data,
defaultValue,
format = defaultFormat,
formatOnBlur,
initialValue,
multiple,
parse = defaultParse,
subscription = all,
type,
validateFields,
value: _value
} = config
const form: FormApi<FormValues> = useForm<FormValues>('useField')
const configRef = useLatest(config)
const register = (callback: FieldState => void, silent: boolean) =>
// avoid using `state` const in any closures created inside `register`
// because they would refer `state` from current execution context
// whereas actual `state` would defined in the subsequent `useField` hook
// execution
// (that would be caused by `setState` call performed in `register` callback)
form.registerField(name, callback, subscription, {
afterSubmit,
beforeSubmit: () => {
const {
beforeSubmit,
formatOnBlur,
format = defaultFormat
} = configRef.current
if (formatOnBlur) {
const { value } = ((form.getFieldState(name): any): FieldState)
const formatted = format(value, name)
if (formatted !== value) {
form.change(name, formatted)
}
}
return beforeSubmit && beforeSubmit()
},
data,
defaultValue,
getValidator: () => configRef.current.validate,
initialValue,
isEqual: (a, b) => (configRef.current.isEqual || defaultIsEqual)(a, b),
silent,
validateFields
})
const firstRender = React.useRef(true)
// synchronously register and unregister to query field state for our subscription on first render
const [state, setState] = React.useState<FieldState>((): FieldState => {
let initialState: FieldState = {}
// temporarily disable destroyOnUnregister
const destroyOnUnregister = form.destroyOnUnregister
form.destroyOnUnregister = false
register(state => {
initialState = state
}, true)()
// return destroyOnUnregister to its original value
form.destroyOnUnregister = destroyOnUnregister
return initialState
})
React.useEffect(
() =>
register(state => {
if (firstRender.current) {
firstRender.current = false
} else {
setState(state)
}
}, false),
// eslint-disable-next-line react-hooks/exhaustive-deps
[
name,
data,
defaultValue,
// If we want to allow inline fat-arrow field-level validation functions, we
// cannot reregister field every time validate function !==.
// validate,
initialValue
// The validateFields array is often passed as validateFields={[]}, creating
// a !== new array every time. If it needs to be changed, a rerender/reregister
// can be forced by changing the key prop
// validateFields
]
)
const handlers = {
onBlur: React.useCallback(
(event: ?SyntheticFocusEvent<*>) => {
state.blur()
if (formatOnBlur) {
/**
* Here we must fetch the value directly from Final Form because we cannot
* trust that our `state` closure has the most recent value. This is a problem
* if-and-only-if the library consumer has called `onChange()` immediately
* before calling `onBlur()`, but before the field has had a chance to receive
* the value update from Final Form.
*/
const fieldState: any = form.getFieldState(state.name)
state.change(format(fieldState.value, state.name))
}
},
// eslint-disable-next-line react-hooks/exhaustive-deps
[state.blur, state.name, format, formatOnBlur]
),
onChange: React.useCallback(
(event: SyntheticInputEvent<*> | any) => {
// istanbul ignore next
if (process.env.NODE_ENV !== 'production' && event && event.target) {
const targetType = event.target.type
const unknown =
~['checkbox', 'radio', 'select-multiple'].indexOf(targetType) &&
!type &&
component !== 'select'
const value: any =
targetType === 'select-multiple' ? state.value : _value
if (unknown) {
console.error(
`You must pass \`type="${
targetType === 'select-multiple' ? 'select' : targetType
}"\` prop to your Field(${name}) component.\n` +
`Without it we don't know how to unpack your \`value\` prop - ${
Array.isArray(value) ? `[${value}]` : `"${value}"`
}.`
)
}
}
const value: any =
event && event.target
? getValue(event, state.value, _value, isReactNative)
: event
state.change(parse(value, name))
},
// eslint-disable-next-line react-hooks/exhaustive-deps
[_value, name, parse, state.change, state.value, type]
),
onFocus: React.useCallback(
(event: ?SyntheticFocusEvent<*>) => {
state.focus()
},
// eslint-disable-next-line react-hooks/exhaustive-deps
[state.focus]
)
}
const meta = {}
addLazyFieldMetaState(meta, state)
const input: FieldInputProps = {
name,
get value() {
let value = state.value
if (formatOnBlur) {
if (component === 'input') {
value = defaultFormat(value, name)
}
} else {
value = format(value, name)
}
if (value === null && !allowNull) {
value = ''
}
if (type === 'checkbox' || type === 'radio') {
return _value
} else if (component === 'select' && multiple) {
return value || []
}
return value
},
get checked() {
let value = state.value;
if (type === 'checkbox') {
value = format(value, name)
if (_value === undefined) {
return !!value
} else {
return !!(Array.isArray(value) && ~value.indexOf(_value))
}
} else if (type === 'radio') {
return format(value, name) === _value
}
return undefined
},
...handlers
}
if (multiple) {
input.multiple = multiple
}
if (type !== undefined) {
input.type = type
}
const renderProps: FieldRenderProps = { input, meta } // assign to force Flow check
return renderProps
}
export default useField