-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy path_textfieldHelpers.jsx
211 lines (174 loc) · 4.42 KB
/
_textfieldHelpers.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
/**
* MUI React Textfield Helpers
* @module react/_textfieldHelpers
*/
'use strict';
import React from 'react';
import shallowCompare from 'react-addons-shallow-compare';
import * as jqLite from '../js/lib/jqLite';
import * as util from '../js/lib/util';
import { controlledMessage } from './_helpers';
/**
* Textfield Wrapper
* @function
*/
const textfieldWrapper = (TextfieldComponent) => class extends React.Component {
constructor(props) {
super(props);
// set initial state
this.state = {
isEmpty: isEmpty(('value' in props) ? props.value : props.defaultValue),
isTouched: false,
isPristine: true
};
// warn if value defined but onChange is not
if ('value' in props && !props.onChange) {
util.raiseError(controlledMessage, true);
}
// callbacks
let cb = util.callback;
this.onBlurCB = cb(this, 'onBlur');
this.onChangeCB = cb(this, 'onChange');
this.onLabelClickCB = cb(this, 'onLabelClick');
}
static defaultProps = {
className: '',
hint: null,
invalid: false,
label: null,
floatingLabel: false
};
onBlur(ev) {
// ignore if event is a window blur
if (document.activeElement !== this.controlEl) {
this.setState({ isTouched: true });
}
// execute callback
let fn = this.props.onBlur;
fn && fn(ev);
}
onChange(ev) {
this.setState({
isEmpty: isEmpty(ev.target.value),
isPristine: false
});
// execute callback
let fn = this.props.onChange;
fn && fn(ev);
}
onLabelClick(ev) {
// pointer-events shim
if (util.supportsPointerEvents() === false) {
ev.target.style.cursor = 'text';
this.controlEl.focus();
}
}
UNSAFE_componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
this.setState({isEmpty: isEmpty(nextProps.value)});
}
}
shouldComponentUpdate(nextProps, nextState) {
return shallowCompare(this, nextProps, nextState);
}
componentDidMount() {
// disable MUI js
this.controlEl._muiTextfield = true;
}
render() {
let wrapperCls = {},
inputCls = {},
labelEl;
const { children, className, style, hint, invalid, label, floatingLabel,
...other } = this.props;
const labelType = jqLite.type(label);
if ((labelType == 'string' && label.length) || labelType == 'object') {
labelEl = (
<Label
text={label}
onClick={this.onClickCB}
htmlFor={this.props.id}
/>
);
}
wrapperCls['mui-textfield'] = true;
wrapperCls['mui-textfield--float-label'] = floatingLabel;
wrapperCls = util.classNames(wrapperCls);
inputCls['mui--is-touched'] = this.state.isTouched;
inputCls['mui--is-untouched'] = !this.state.isTouched;
inputCls['mui--is-pristine'] = this.state.isPristine;
inputCls['mui--is-dirty'] = !this.state.isPristine;
inputCls['mui--is-empty'] = this.state.isEmpty;
inputCls['mui--is-not-empty'] = !this.state.isEmpty;
inputCls['mui--is-invalid'] = invalid;
inputCls = util.classNames(inputCls);
return (
<div
className={wrapperCls + ' ' + className}
style={style}
>
<TextfieldComponent
className={inputCls}
inputRef={el => { this.controlEl = el }}
placeholder={hint}
{ ...other }
onBlur={this.onBlurCB}
onChange={this.onChangeCB}
/>
{labelEl}
</div>
);
}
}
/**
* Label constructor
* @class
*/
class Label extends React.Component {
state = {
style: {}
};
static defaultProps = {
text: '',
onClick: null
};
componentDidMount() {
this.styleTimer = setTimeout(() => {
const s = '.15s ease-out';
let style;
style = {
transition: s,
WebkitTransition: s,
MozTransition: s,
OTransition: s,
msTransform: s
};
this.setState({ style });
}, 150);
}
componentWillUnmount() {
// clear timer
clearTimeout(this.styleTimer);
}
render() {
return (
<label
style={this.state.style}
onClick={this.props.onClick}
htmlFor={this.props.htmlFor}
tabIndex="-1" // firefox bugfix (see #252)
>
{this.props.text}
</label>
);
}
}
/**
* isEmpty helper
* @function
*/
function isEmpty(value) {
return (value === undefined || value === null || value === '');
}
/** Define module API */
export { textfieldWrapper };