blob: 28d2f7382c0e1c3aaef6a08cf17afed9c8c8a473 (
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
|
import React, { Component } from 'react'
import { Link } from 'react-router-dom'
import { connect } from 'react-redux'
import { history } from 'app/store'
import actions from 'app/actions'
import GraphForm from '../components/graph.form'
class GraphNew extends Component {
handleSubmit(data) {
console.log(data)
actions.graph.create(data)
.then(res => {
console.log(res)
if (res.res && res.res.id) {
history.push('/' + res.res.path)
}
})
.catch(err => {
console.error('error')
})
}
render() {
return (
<GraphForm
isNew
data={{}}
onSubmit={this.handleSubmit.bind(this)}
/>
)
}
}
const mapStateToProps = state => ({
graph: state.graph,
})
const mapDispatchToProps = dispatch => ({
// searchActions: bindActionCreators({ ...searchActions }, dispatch),
})
export default connect(mapStateToProps, mapDispatchToProps)(GraphNew)
|