material-ui
Version:
Material Design UI components built with React
460 lines (400 loc) • 13.1 kB
JSX
const React = require('react');
const ReactDOM = require('react-dom');
const ColorManipulator = require('./utils/color-manipulator');
const StylePropable = require('./mixins/style-propable');
const Transitions = require('./styles/transitions');
const UniqueId = require('./utils/unique-id');
const EnhancedTextarea = require('./enhanced-textarea');
const DefaultRawTheme = require('./styles/raw-themes/light-raw-theme');
const ThemeManager = require('./styles/theme-manager');
const ContextPure = require('./mixins/context-pure');
/**
* Check if a value is valid to be displayed inside an input.
*
* @param The value to check.
* @returns True if the string provided is valid, false otherwise.
*/
function isValid(value) {
return value || value === 0;
}
const TextField = React.createClass({
mixins: [
ContextPure,
StylePropable,
],
contextTypes: {
muiTheme: React.PropTypes.object,
},
propTypes: {
errorStyle: React.PropTypes.object,
errorText: React.PropTypes.string,
floatingLabelStyle: React.PropTypes.object,
floatingLabelText: React.PropTypes.string,
fullWidth: React.PropTypes.bool,
hintText: React.PropTypes.oneOfType([
React.PropTypes.string,
React.PropTypes.element,
]),
hintStyle: React.PropTypes.object,
id: React.PropTypes.string,
inputStyle: React.PropTypes.object,
multiLine: React.PropTypes.bool,
onBlur: React.PropTypes.func,
onChange: React.PropTypes.func,
onEnterKeyDown: React.PropTypes.func,
onFocus: React.PropTypes.func,
onKeyDown: React.PropTypes.func,
rows: React.PropTypes.number,
rowsMax: React.PropTypes.number,
type: React.PropTypes.string,
underlineStyle: React.PropTypes.object,
underlineFocusStyle: React.PropTypes.object,
underlineDisabledStyle: React.PropTypes.object,
},
//for passing default theme context to children
childContextTypes: {
muiTheme: React.PropTypes.object,
},
getChildContext () {
return {
muiTheme: this.state.muiTheme,
};
},
getDefaultProps() {
return {
fullWidth: false,
type: 'text',
rows: 1,
};
},
statics: {
getRelevantContextKeys(muiTheme) {
const textFieldTheme = muiTheme.textField
return {
floatingLabelColor: textFieldTheme.floatingLabelColor,
focusColor: textFieldTheme.focusColor,
borderColor: textFieldTheme.borderColor,
textColor: textFieldTheme.textColor,
disabledTextColor: textFieldTheme.disabledTextColor,
backgroundColor: textFieldTheme.backgroundColor,
hintColor: textFieldTheme.hintColor,
errorColor: textFieldTheme.errorColor,
};
},
getChildrenClasses() {
return [
EnhancedTextarea,
];
},
},
getInitialState() {
let props = (this.props.children) ? this.props.children.props : this.props;
return {
errorText: this.props.errorText,
hasValue: isValid(props.value) || isValid(props.defaultValue) ||
(props.valueLink && isValid(props.valueLink.value)),
muiTheme: this.context.muiTheme ? this.context.muiTheme : ThemeManager.getMuiTheme(DefaultRawTheme),
};
},
componentDidMount() {
this._uniqueId = UniqueId.generate();
},
componentWillReceiveProps(nextProps, nextContext) {
let newState = {};
newState.muiTheme = nextContext.muiTheme ? nextContext.muiTheme : this.state.muiTheme;
newState.errorText = nextProps.errorText;
if (nextProps.children && nextProps.children.props) {
nextProps = nextProps.children.props;
}
let hasValueLinkProp = nextProps.hasOwnProperty('valueLink');
let hasValueProp = nextProps.hasOwnProperty('value');
let hasNewDefaultValue = nextProps.defaultValue !== this.props.defaultValue;
if (hasValueLinkProp) {
newState.hasValue = isValid(nextProps.valueLink.value);
}
else if (hasValueProp) {
newState.hasValue = isValid(nextProps.value);
}
else if (hasNewDefaultValue) {
newState.hasValue = isValid(nextProps.defaultValue);
}
if (newState) this.setState(newState);
},
getStyles() {
const props = this.props;
const {
floatingLabelColor,
focusColor,
borderColor,
textColor,
disabledTextColor,
backgroundColor,
hintColor,
errorColor,
} = this.constructor.getRelevantContextKeys(this.state.muiTheme);
let styles = {
root: {
fontSize: 16,
lineHeight: '24px',
width: props.fullWidth ? '100%' : 256,
height: (props.rows - 1) * 24 + (props.floatingLabelText ? 72 : 48),
display: 'inline-block',
position: 'relative',
fontFamily: this.state.muiTheme.rawTheme.fontFamily,
transition: Transitions.easeOut('200ms', 'height'),
},
error: {
position: 'relative',
bottom: 5,
fontSize: 12,
lineHeight: '12px',
color: errorColor,
transition: Transitions.easeOut(),
},
hint: {
position: 'absolute',
lineHeight: '22px',
opacity: 1,
color: hintColor,
transition: Transitions.easeOut(),
bottom: 12,
},
input: {
tapHighlightColor: 'rgba(0,0,0,0)',
padding: 0,
position: 'relative',
width: '100%',
height: '100%',
border: 'none',
outline: 'none',
backgroundColor: backgroundColor,
color: props.disabled ? disabledTextColor : textColor,
font: 'inherit',
},
underline: {
border: 'none',
borderBottom: 'solid 1px ' + borderColor,
position: 'absolute',
width: '100%',
bottom: 8,
margin: 0,
MozBoxSizing: 'content-box',
boxSizing: 'content-box',
height: 0,
},
underlineAfter: {
position: 'absolute',
width: '100%',
overflow: 'hidden',
userSelect: 'none',
cursor: 'default',
bottom: 8,
borderBottom: 'dotted 2px ' + disabledTextColor,
},
underlineFocus: {
borderBottom: 'solid 2px',
borderColor: focusColor,
transform: 'scaleX(0)',
transition: Transitions.easeOut(),
},
};
styles.error = this.mergeAndPrefix(styles.error, props.errorStyle);
styles.underline = this.mergeAndPrefix(styles.underline, props.underlineStyle);
styles.underlineAfter = this.mergeAndPrefix(styles.underlineAfter, props.underlineDisabledStyle);
styles.floatingLabel = this.mergeStyles(styles.hint, {
lineHeight: '22px',
top: 38,
bottom: 'none',
opacity: 1,
transform: 'scale(1) translate3d(0, 0, 0)',
transformOrigin: 'left top',
});
styles.textarea = this.mergeStyles(styles.input, {
marginTop: props.floatingLabelText ? 36 : 12,
marginBottom: props.floatingLabelText ? -36 : -12,
boxSizing: 'border-box',
font: 'inherit',
});
styles.focusUnderline = this.mergeStyles(styles.underline, styles.underlineFocus, props.underlineFocusStyle);
if (this.state.isFocused) {
styles.floatingLabel.color = focusColor;
styles.floatingLabel.transform = 'perspective(1px) scale(0.75) translate3d(2px, -28px, 0)';
styles.focusUnderline.transform = 'scaleX(1)';
}
if (this.state.hasValue) {
styles.floatingLabel.color = ColorManipulator.fade(props.disabled ? disabledTextColor : floatingLabelColor, 0.5);
styles.floatingLabel.transform = 'perspective(1px) scale(0.75) translate3d(2px, -28px, 0)';
styles.hint.opacity = 0;
}
if (props.floatingLabelText) {
styles.hint.opacity = 0;
styles.input.boxSizing = 'border-box';
if (this.state.isFocused && !this.state.hasValue) styles.hint.opacity = 1;
}
if (props.style && props.style.height) {
styles.hint.lineHeight = props.style.height;
}
if (this.state.errorText && this.state.isFocused) styles.floatingLabel.color = styles.error.color;
if (props.floatingLabelText && !props.multiLine) styles.input.marginTop = 14;
if (this.state.errorText) {
styles.focusUnderline.borderColor = styles.error.color;
styles.focusUnderline.transform = 'scaleX(1)';
}
return styles;
},
render() {
let {
className,
errorStyle,
errorText,
floatingLabelText,
fullWidth,
hintText,
hintStyle,
id,
multiLine,
onBlur,
onChange,
onFocus,
type,
rows,
rowsMax,
...other,
} = this.props;
let styles = this.getStyles();
let inputId = id || this._uniqueId;
let errorTextElement = this.state.errorText ? (
<div style={this.prepareStyles(styles.error)}>{this.state.errorText}</div>
) : null;
let hintTextElement = hintText ? (
<div style={this.prepareStyles(styles.hint, hintStyle)}>{hintText}</div>
) : null;
let floatingLabelTextElement = floatingLabelText ? (
<label
style={this.prepareStyles(styles.floatingLabel, this.props.floatingLabelStyle)}
htmlFor={inputId}>
{floatingLabelText}
</label>
) : null;
let inputProps;
let inputElement;
inputProps = {
id: inputId,
ref: this._getRef(),
onBlur: this._handleInputBlur,
onFocus: this._handleInputFocus,
disabled: this.props.disabled,
onKeyDown: this._handleInputKeyDown,
};
const inputStyle = this.mergeStyles(styles.input, this.props.inputStyle);
if (!this.props.hasOwnProperty('valueLink')) {
inputProps.onChange = this._handleInputChange;
}
if (this.props.children) {
inputElement = React.cloneElement(this.props.children, {...inputProps, ...this.props.children.props});
}
else {
inputElement = multiLine ? (
<EnhancedTextarea
{...other}
{...inputProps}
style={inputStyle}
rows={rows}
rowsMax={rowsMax}
onHeightChange={this._handleTextAreaHeightChange}
textareaStyle={this.mergeAndPrefix(styles.textarea)} />
) : (
<input
{...other}
{...inputProps}
style={this.prepareStyles(inputStyle)}
type={type} />
);
}
let underlineElement = this.props.disabled ? (
<div style={this.prepareStyles(styles.underlineAfter)}></div>
) : (
<hr style={this.prepareStyles(styles.underline)}/>
);
let focusUnderlineElement = <hr style={this.prepareStyles(styles.focusUnderline)} />;
return (
<div className={className} style={this.prepareStyles(styles.root, this.props.style)}>
{floatingLabelTextElement}
{hintTextElement}
{inputElement}
{underlineElement}
{focusUnderlineElement}
{errorTextElement}
</div>
);
},
blur() {
if (this.isMounted()) this._getInputNode().blur();
},
clearValue() {
this.setValue('');
},
focus() {
if (this.isMounted()) this._getInputNode().focus();
},
getValue() {
return this.isMounted() ? this._getInputNode().value : undefined;
},
setErrorText(newErrorText) {
if (process.env.NODE_ENV !== 'production' && this.props.hasOwnProperty('errorText')) {
console.error('Cannot call TextField.setErrorText when errorText is defined as a property.');
}
else if (this.isMounted()) {
this.setState({errorText: newErrorText});
}
},
setValue(newValue) {
if (process.env.NODE_ENV !== 'production' && this._isControlled()) {
console.error('Cannot call TextField.setValue when value or valueLink is defined as a property.');
}
else if (this.isMounted()) {
if (this.props.multiLine) {
this.refs[this._getRef()].setValue(newValue);
}
else {
this._getInputNode().value = newValue;
}
this.setState({hasValue: isValid(newValue)});
}
},
_getRef() {
return this.props.ref ? this.props.ref : 'input';
},
_getInputNode() {
return (this.props.children || this.props.multiLine) ?
this.refs[this._getRef()].getInputNode() : ReactDOM.findDOMNode(this.refs[this._getRef()]);
},
_handleInputBlur(e) {
this.setState({isFocused: false});
if (this.props.onBlur) this.props.onBlur(e);
},
_handleInputChange(e) {
this.setState({hasValue: isValid(e.target.value)});
if (this.props.onChange) this.props.onChange(e);
},
_handleInputFocus(e) {
if (this.props.disabled)
return;
this.setState({isFocused: true});
if (this.props.onFocus) this.props.onFocus(e);
},
_handleInputKeyDown(e) {
if (e.keyCode === 13 && this.props.onEnterKeyDown) this.props.onEnterKeyDown(e);
if (this.props.onKeyDown) this.props.onKeyDown(e);
},
_handleTextAreaHeightChange(e, height) {
let newHeight = height + 24;
if (this.props.floatingLabelText) newHeight += 24;
ReactDOM.findDOMNode(this).style.height = newHeight + 'px';
},
_isControlled() {
return this.props.hasOwnProperty('value') ||
this.props.hasOwnProperty('valueLink');
},
});
module.exports = TextField;