mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 21:56:55 +03:00
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
import React, { Component, PropTypes } from 'react';
|
|
import classnames from 'classnames';
|
|
import TodoTextInput from './TodoTextInput';
|
|
|
|
export default class TodoItem extends Component {
|
|
static propTypes = {
|
|
todo: PropTypes.object.isRequired,
|
|
editTodo: PropTypes.func.isRequired,
|
|
deleteTodo: PropTypes.func.isRequired,
|
|
markTodo: PropTypes.func.isRequired
|
|
};
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.state = {
|
|
editing: false
|
|
};
|
|
}
|
|
|
|
handleDoubleClick() {
|
|
this.setState({ editing: true });
|
|
}
|
|
|
|
handleSave(id, text) {
|
|
if (text.length === 0) {
|
|
this.props.deleteTodo(id);
|
|
} else {
|
|
this.props.editTodo(id, text);
|
|
}
|
|
this.setState({ editing: false });
|
|
}
|
|
|
|
render() {
|
|
const {todo, markTodo, deleteTodo} = this.props;
|
|
|
|
let element;
|
|
if (this.state.editing) {
|
|
element = (
|
|
<TodoTextInput text={todo.text}
|
|
editing={this.state.editing}
|
|
onSave={(text) => this.handleSave(todo.id, text)} />
|
|
);
|
|
} else {
|
|
element = (
|
|
<div className='view'>
|
|
<input className='toggle'
|
|
type='checkbox'
|
|
checked={todo.marked}
|
|
onChange={() => markTodo(todo.id)} />
|
|
<label onDoubleClick={::this.handleDoubleClick}>
|
|
{todo.text}
|
|
</label>
|
|
<button className='destroy'
|
|
onClick={() => deleteTodo(todo.id)} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<li className={classnames({
|
|
completed: todo.marked,
|
|
editing: this.state.editing
|
|
})}>
|
|
{element}
|
|
</li>
|
|
);
|
|
}
|
|
}
|