В общем через action изменяю я значит props,
отправляется open = true
ну в
componentWillReceiveProps - это изменение я пока не вижу, как мне ухитриться проверить,
сделать хочу подобное
componentWillReceiveProps() {
console.log('componentWillReceiveProps prpos:', this.props);
this.recieveProps();
if (!this.state.isOpen && this.props.open) {
let curr = this.props.todos;
this.setState({
open: true,
isOpen: true,
name: curr.name,
description: curr.description,
startDate: moment(curr.startdate, "MM/DD/YYYY"),
duedate: moment(curr.duedate, "MM/DD/YYYY"),
nodate: (curr.duedate.length > 0),
important: curr.important,
completed: curr.completed
});
}
}