forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext-field.jsx
More file actions
231 lines (185 loc) · 4.17 KB
/
text-field.jsx
File metadata and controls
231 lines (185 loc) · 4.17 KB
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
/**
* MUI React TextInput Component
* @module react/text-field
*/
'use strict';
import React from 'react';
import * as util from '../js/lib/util';
import { controlledMessage } from './_helpers';
const PropTypes = React.PropTypes;
/**
* Input constructor
* @class
*/
class Input extends React.Component {
constructor(props) {
super(props);
let value = props.value;
let innerValue = value || props.defaultValue;
this.state = {
innerValue: innerValue,
isDirty: Boolean(innerValue)
};
// warn if value defined but onChange is not
if (value !== undefined && !props.onChange) {
util.raiseError(controlledMessage, true);
}
let cb = util.callback;
this.onChangeCB = cb(this, 'onChange');
this.onFocusCB = cb(this, 'onFocus');
}
static propTypes = {
hint: PropTypes.string,
invalid: PropTypes.bool,
rows: PropTypes.number
};
static defaultProps = {
hint: null,
invalid: false,
rows: 2
};
componentDidMount() {
// disable MUI js
this.refs.inputEl._muiTextfield = true;
}
onChange(ev) {
this.setState({innerValue: ev.target.value});
// execute callback
let fn = this.props.onChange;
if (fn) fn(ev);
}
onFocus(ev) {
this.setState({isDirty: true});
}
triggerFocus() {
// hack to enable IE10 pointer-events shim
this.refs.inputEl.focus();
}
render() {
let cls = {},
isNotEmpty = Boolean(this.state.innerValue),
inputEl;
const { hint, invalid, rows, type, ...reactProps } = this.props;
cls['mui--is-empty'] = !isNotEmpty;
cls['mui--is-not-empty'] = isNotEmpty;
cls['mui--is-dirty'] = this.state.isDirty;
cls['mui--is-invalid'] = invalid;
cls = util.classNames(cls);
if (type === 'textarea') {
inputEl = (
<textarea
{ ...reactProps }
ref="inputEl"
className={cls}
rows={rows}
placeholder={hint}
onChange={this.onChangeCB}
onFocus={this.onFocusCB}
/>
);
} else {
inputEl = (
<input
{ ...reactProps }
ref="inputEl"
className={cls}
type={type}
placeholder={this.props.hint}
onChange={this.onChangeCB}
onFocus={this.onFocusCB}
/>
);
}
return inputEl;
}
}
/**
* 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}
>
{this.props.text}
</label>
);
}
}
/**
* TextField constructor
* @class
*/
class TextField extends React.Component {
constructor(props) {
super(props);
this.onClickCB = util.callback(this, 'onClick');
}
static propTypes = {
label: PropTypes.string,
floatingLabel: PropTypes.bool
};
static defaultProps = {
className: '',
label: '',
floatingLabel: false
};
onClick(ev) {
// pointer-events shim
if (util.supportsPointerEvents() === false) {
ev.target.style.cursor = 'text';
this.refs.inputEl.triggerFocus();
}
}
render() {
let cls = {},
labelEl;
const { children, className, style, label, floatingLabel,
...other } = this.props;
if (label.length) {
labelEl = <Label text={label} onClick={this.onClickCB} />;
}
cls['mui-textfield'] = true;
cls['mui-textfield--float-label'] = floatingLabel;
cls = util.classNames(cls);
return (
<div
className={cls + ' ' + className}
style={style}
>
<Input ref="inputEl" { ...other } />
{labelEl}
</div>
);
}
}
/** Define module API */
export { TextField };