redux-devtools/packages/redux-devtools-slider-monitor/examples/todomvc/components/TodoTextInput.js

66 lines
1.4 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
export default class TodoTextInput extends Component {
static propTypes = {
onSave: PropTypes.func.isRequired,
text: PropTypes.string,
placeholder: PropTypes.string,
editing: PropTypes.bool,
newTodo: PropTypes.bool,
};
static defaultProps = {
text: '',
placeholder: '',
editing: false,
newTodo: false,
};
constructor(props, context) {
super(props, context);
this.state = {
text: this.props.text || '',
};
}
handleSubmit = (e) => {
const text = e.target.value.trim();
if (e.which === 13) {
this.props.onSave(text);
if (this.props.newTodo) {
this.setState({ text: '' });
}
}
2019-01-10 21:51:14 +03:00
};
handleChange = (e) => {
this.setState({ text: e.target.value });
2019-01-10 21:51:14 +03:00
};
handleBlur = (e) => {
if (!this.props.newTodo) {
this.props.onSave(e.target.value);
}
2019-01-10 21:51:14 +03:00
};
render() {
return (
<input
2019-01-10 21:51:14 +03:00
className={classnames({
edit: this.props.editing,
'new-todo': this.props.newTodo,
2019-01-10 21:51:14 +03:00
})}
2019-01-10 20:23:33 +03:00
type="text"
placeholder={this.props.placeholder}
autoFocus={true}
value={this.state.text}
onBlur={this.handleBlur}
onChange={this.handleChange}
onKeyDown={this.handleSubmit}
/>
);
}
}