blob: bc74358c7c8d76a6c20e705844e30a8f6278673b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
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 PageForm from '../components/page.form'
class PageNew extends Component {
handleSubmit(data) {
console.log(data)
actions.page.create(data)
.then(res => {
console.log(res)
const graph = this.props.graph.show.res
if (res.res && res.res.id) {
history.push('/' + graph.path + '/' + res.res.path)
}
})
.catch(err => {
console.error('error', err)
})
}
render() {
return (
<PageForm
isNew
graph={this.props.graph.show.res}
data={{}}
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)(PageNew)
|