summaryrefslogtreecommitdiff
path: root/frontend/app/views/graph/components/page.new.js
blob: e7c36098d6fa47d51f473930bd8656f15f39fd0c (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 'app/store'
import actions from 'app/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)