diff options
Diffstat (limited to 'frontend/views/graph/components/page.edit.js')
| -rw-r--r-- | frontend/views/graph/components/page.edit.js | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/frontend/views/graph/components/page.edit.js b/frontend/views/graph/components/page.edit.js new file mode 100644 index 0000000..f4f351b --- /dev/null +++ b/frontend/views/graph/components/page.edit.js @@ -0,0 +1,55 @@ +import React, { Component } from 'react' +import { Link } from 'react-router-dom' +import { connect } from 'react-redux' + +import { history } from '../../../store' +import actions from '../../../actions' + +import { Loader } from '../../../common' + +import PageForm from '../components/page.form' + +class PageEdit extends Component { + componentDidMount() { + console.log(this.props.match.params.id) + actions.page.show(this.props.match.params.id) + } + + handleSubmit(data) { + actions.page.update(data) + .then(response => { + // response + console.log(response) + history.push('/' + data.path) + }) + } + + render() { + const { show } = this.props.page + if (show.loading || !show.res) { + return ( + <div className='form'> + <Loader /> + </div> + ) + } + return ( + <PageForm + data={show.res} + graph={this.props.graph.show.res} + onSubmit={this.handleSubmit.bind(this)} + /> + ) + } +} + +const mapStateToProps = state => ({ + graph: state.graph, + page: state.page, +}) + +const mapDispatchToProps = dispatch => ({ + // searchActions: bindActionCreators({ ...searchActions }, dispatch), +}) + +export default connect(mapStateToProps, mapDispatchToProps)(PageEdit) |
