This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.jsx
287 lines (259 loc) · 7.42 KB
/
index.jsx
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
import React, { PropTypes } from 'react'
import classNamesBind from 'classnames/bind'
import defaultStyles from './styles.scss'
import * as programmaticFocus from '../lib/features/programmaticFocus'
import * as fieldStates from '../lib/features/fieldStates'
import * as inlinedIcon from '../lib/features/inlinedIcon'
import * as stacking from '../lib/features/stacking'
import { handleKeyDown } from '../lib/features/keyboardEvents'
import compose from '../lib/compose'
import MouseflowExclude from '../MouseflowExclude'
import themeable from '../decorators/themeable'
import overridable from '../decorators/overridable'
const baseClass = 'field'
const classes = {
icon: `${baseClass}--icon`,
iconIcon: `${baseClass}--icon__icon`,
iconIconFill: `${baseClass}--icon__icon__fill`,
iconIconStroke: `${baseClass}--icon__icon__stroke`,
iconInput: `${baseClass}--icon__input`,
iconLabel: `${baseClass}--icon__label`,
input: `${baseClass}__input`,
label: `${baseClass}__label`
}
export const icons = inlinedIcon.INLINED_ICONS
const Field = React.createClass({
displayName: 'Field',
getDefaultProps () {
return {
big: false,
centered: false,
loading: false,
nonFloatingLabel: false,
onChange: function () {},
responsive: true,
pinCode: false,
mouseflowExclude: false,
...inlinedIcon.defaultProps,
...fieldStates.defaultProps,
...stacking.position.defaultProps,
...handleKeyDown.defaultProps,
...stacking.size.defaultProps
}
},
propTypes: {
big: PropTypes.bool,
centered: PropTypes.bool,
customize: PropTypes.shape({
borderColor: PropTypes.string.isRequired,
borderColorSelected: PropTypes.string.isRequired,
borderRadius: PropTypes.string.isRequired,
labelColor: PropTypes.string.isRequired,
inputColor: PropTypes.string.isRequired
}),
id: PropTypes.string,
input: PropTypes.func,
loading: PropTypes.bool,
label: PropTypes.string.isRequired,
onBlur: PropTypes.func,
onChange: PropTypes.func,
onClick: PropTypes.func,
onFocus: PropTypes.func,
nonFloatingLabel: PropTypes.bool,
pattern: PropTypes.string,
pinCode: PropTypes.bool,
mouseflowExclude: PropTypes.bool,
responsive: PropTypes.bool,
value: PropTypes.string,
styles: PropTypes.object,
...inlinedIcon.propTypes,
...fieldStates.propTypes,
...handleKeyDown.propTypes,
...stacking.position.propTypes,
...programmaticFocus.propTypes,
...stacking.size.propTypes
},
getInitialState () {
return {
hover: false
}
},
onAutoFillStart () {
this.setState({
autoFill: true
})
},
onAutoFillCancel () {
this.setState({
autoFill: false
})
},
componentDidMount () {
programmaticFocus.maybeFocus(document)(this.props.focus, this.refs.input)
this.refs.input.addEventListener &&
this.refs.input.addEventListener('animationstart', (e) => {
switch (e.animationName) {
case defaultStyles.onAutoFillStart:
return this.onAutoFillStart()
case defaultStyles.onAutoFillCancel:
return this.onAutoFillCancel()
}
})
},
componentDidUpdate () {
programmaticFocus.maybeFocus(document)(this.props.focus, this.refs.input)
},
onMouseEnter () {
this.setState({
hover: true
})
},
onMouseLeave () {
this.setState({
hover: false
})
},
render () {
const {
big,
bottom, // eslint-disable-line no-unused-vars
center, // eslint-disable-line no-unused-vars
className,
centered,
customize,
disabled,
error,
icon,
id,
Input,
focus,
label,
left, // eslint-disable-line no-unused-vars
loading,
mouseflowExclude,
nonFloatingLabel,
onBlur,
onChange,
onClick,
onEnter, // eslint-disable-line no-unused-vars
onFocus,
onTab, // eslint-disable-line no-unused-vars
pinCode,
responsive,
right, // eslint-disable-line no-unused-vars
square,
value,
size, // eslint-disable-line no-unused-vars
style,
styles,
top, // eslint-disable-line no-unused-vars
warning,
...props
} = this.props
const classNames = classNamesBind.bind({ ...defaultStyles, ...styles })
const cls = classNames(
(icon ? classes.icon : baseClass), {
big: big || pinCode,
'is-autofill': !!this.state.autoFill,
'is-centered': centered || pinCode,
'is-filled': value != null && value !== '',
'is-loading': loading,
'non-responsive': !responsive,
'non-floating-label': pinCode || nonFloatingLabel,
'pin-code': pinCode,
square
},
fieldStates.getClassName(this.props),
programmaticFocus.getClassName(this.props),
stacking.size.getClassName(this.props),
stacking.position.getClassName(this.props),
className
)
const hasNonDefaultState = disabled || warning || error
const useDynamicStyles = customize && !hasNonDefaultState
const dynamicStyles = customize
? {
...(hasNonDefaultState ? {} : {
borderColor: this.state.hover || focus
? customize.borderColorSelected
: customize.borderColor,
boxShadow: focus && `0 0 4px ${customize.borderColorSelected}`
}),
...stacking.position.getBorderRadii(
this.props,
customize.borderRadius
)
}
: undefined
const labelDynamicStyles = useDynamicStyles
? { color: customize.labelColor }
: undefined
const inputDynamicStyles = useDynamicStyles
? { color: customize.inputColor }
: {}
const ids = id
? {
input: `${id}__input`,
label: `${id}__label`
} : {}
const inputProps = {
className: classNames(icon ? classes.iconInput : classes.input),
disabled: disabled,
id: ids.input,
value: value || '',
onBlur: onBlur,
onChange: onChange,
onKeyDown: handleKeyDown(this.props),
onFocus: onFocus,
ref: 'input',
style: {
...inputDynamicStyles,
...style
},
...props
}
const inputElement = Input
? <Input {...inputProps} />
: <input {...inputProps} />
return (
<div
className={cls}
id={id}
onClick={onClick}
style={dynamicStyles}
onMouseEnter={this.onMouseEnter}
onMouseLeave={this.onMouseLeave}>
{
inlinedIcon.renderInlinedIcon(this.props, {
icon: classNames(classes.iconIcon),
fill: classNames(classes.iconIconFill),
stroke: classNames(classes.iconIconStroke)
})
}
<label
className={classNames(icon ? classes.iconLabel : classes.label)}
id={ids.label}
style={labelDynamicStyles}>
{label}
</label>
{mouseflowExclude
? <MouseflowExclude>{inputElement}</MouseflowExclude>
: inputElement
}
</div>
)
}
})
export default compose(
themeable((customizations, props) => ({
customize: {
...props.customize,
borderColor: customizations.color_border,
borderColorSelected: customizations.color_border_selected,
borderRadius: customizations.radius_border,
labelColor: customizations.color_text_secondary,
inputColor: customizations.color_text
}
})),
overridable(defaultStyles)
)(Field)