-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTMLCheckbox.js
200 lines (195 loc) · 6.77 KB
/
HTMLCheckbox.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
import React from 'react';
import PropTypes from 'prop-types';
import RFFField from '../RFFField/RFFField';
import Checkbox from './components/Checkbox/Checkbox';
const passPropsDefault = field => ({
value: field.input.value || false,
onChange: (e) => { field.input.onChange(e.target.checked); },
});
export const HTMLCheckbox = ({
name,
label,
flexDirection,
passProps,
// rff
afterSubmit,
allowNull,
beforeSubmit,
data,
defaultValue,
format,
formatOnBlur,
initialValue,
isEqual,
parse,
subscription,
validate,
validateFields,
}) => (
<RFFField
type="checkbox"
name={name}
passProps={passProps}
afterSubmit={afterSubmit}
allowNull={allowNull}
beforeSubmit={beforeSubmit}
data={data}
defaultValue={defaultValue}
format={format}
formatOnBlur={formatOnBlur}
initialValue={initialValue}
isEqual={isEqual}
parse={parse}
subscription={subscription}
validate={validate}
validateFields={validateFields}
>
<Checkbox
label={label}
flexDirection={flexDirection}
/>
</RFFField>
);
export default HTMLCheckbox;
HTMLCheckbox.propTypes = {
/**
* props to pass to react final form field in call back have access to field as first arg
*/
passProps: PropTypes.func,
/**
* The name of your field. Field values may be deeply nested using dot-and-bracket syntax.
*/
name: PropTypes.string.isRequired,
/**
* The label content.
*/
label: PropTypes.string,
/**
* The flex-direction CSS property sets how flex items are placed in the flex container defining
the main axis and the direction (normal or reversed).
* https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction
*/
flexDirection: PropTypes.string,
/**
* REACT FINAL FORM PROPS
*/
/**
* A callback to notify fields after submission has completed successfully.
* */
afterSubmit: PropTypes.func,
/**
* By default, if your value is null,
<Field/> will convert it to '', to ensure controlled inputs.
* But if you pass true to allowNull,
<Field/> will give you a null value.
*/
allowNull: PropTypes.bool,
/**
* A function to call just before calling onSubmit.
If beforeSubmit returns false, the submission will be aborted.
If one of your fields returns false on beforeSubmit,
other fields may not have their beforeSubmit called,
as the submission is aborted on the first one that returns false.
*/
beforeSubmit: PropTypes.func,
/**
* Initial state for arbitrary values to be placed by mutators.
*/
data: PropTypes.shape(),
/**
* Optional. ⚠️ You probably want initialValue! ⚠️
* The value of the field upon creation.
This value is only needed if you want your field be dirty
upon creation (i.e. for its value to be different from its initial value).
*/
defaultValue: PropTypes.bool,
/**
* A function that takes the value from the form values
and the name of the field and formats the value to give
to the input. Common use cases include converting javascript Date values into
a localized date string. Almost always used in conjunction with parse.
* Note: If you would like to disable the default behavior of converting undefined to '',
you can pass an identity function, v => v, to format. If you do this,
making sure your inputs are "controlled" is up to you.
*/
format: PropTypes.func,
/**
* If true, the format function will only be called when the field is blurred.
If false, format will be called on every render.
*/
formatOnBlur: PropTypes.bool,
/**
* The initial value for the field. This value will be used to
calculate dirty and pristine by comparing it to the current value of the field.
If you want field to be dirty upon creation, you can set one value with initialValue
and set the value of the field with defaultValue.
* The value given here will override any initialValues given to the entire form.
*/
initialValue: PropTypes.bool,
/**
* Optional. Defaults to ===.
* A function to determine if two values are equal.
*/
isEqual: PropTypes.func,
/**
* A function that takes the value from the input and name of the field and
converts the value into the value you want stored as this field's value in the form.
Common usecases include converting strings into Numbers or parsing localized dates into actual
javascript Date objects. Almost always used in conjuction with format.
* Note: If would like to override the default behavior of converting '' to undefined,
you can pass an identity function, v => v, to parse,
thus allowing you to have form values of ''.
*/
parse: PropTypes.func,
/**
* An object of the parts of FieldState to subscribe to.
If a subscription is provided, the <Field/> will only rerender when those parts
of field state change.
* If no subscription is provided, it will default to subscribing to all field state changes.
i.e. <Field/> will rerender whenever any part of the field state changes.
*/
subscription: PropTypes.shape(),
/**
* A function that takes the field value, all the values of the form and the meta data
about the field and returns an error if the value is invalid, or undefined if the value is valid.
* ⚠️ IMPORTANT ⚠️ – By default, in order to allow inline fat-arrow validation functions,
the field will not rerender if you change your validation
function to an alternate function that has a different behavior.
If you need your field to rerender with a new validation function,
you will need to update another prop on the Field, such as key.
See the following sandbox for an example:
*/
validate: PropTypes.func,
/**
* An array of field names to validate when this field changes.
If undefined, every field will be validated when this one changes;
if [], only this field will have its field-level validation function called when it changes;
if other field names are specified,
those fields and this one will be validated when this field changes.
* ⚠️ IMPORTANT ⚠️ – By default,
in order to allow inline [] syntax,
the field will not rerender if you change your validateFields prop changes.
If you need your field to rerender with a new validateFields setting,
you will need to update another prop on the Field, such as key.
*/
validateFields: PropTypes.string,
};
HTMLCheckbox.defaultProps = {
passProps: passPropsDefault,
label: '',
flexDirection: 'column',
// rff
afterSubmit: undefined,
allowNull: false,
beforeSubmit: undefined,
data: {},
defaultValue: false,
format: undefined,
formatOnBlur: false,
initialValue: false,
isEqual: undefined,
parse: undefined,
subscription: undefined,
validate: undefined,
validateFields: undefined,
};