summaryrefslogtreecommitdiff
path: root/frontend/app/views/index/containers
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/views/index/containers')
-rw-r--r--frontend/app/views/index/containers/graph.edit.js53
-rw-r--r--frontend/app/views/index/containers/graph.index.js53
-rw-r--r--frontend/app/views/index/containers/graph.new.js44
3 files changed, 150 insertions, 0 deletions
diff --git a/frontend/app/views/index/containers/graph.edit.js b/frontend/app/views/index/containers/graph.edit.js
new file mode 100644
index 0000000..b459cd8
--- /dev/null
+++ b/frontend/app/views/index/containers/graph.edit.js
@@ -0,0 +1,53 @@
+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 { Loader } from 'app/common'
+
+import GraphForm from '../components/graph.form'
+
+class GraphEdit extends Component {
+ componentDidMount() {
+ console.log(this.props.match.params.id)
+ actions.graph.show(this.props.match.params.id)
+ }
+
+ handleSubmit(data) {
+ actions.graph.update(data)
+ .then(response => {
+ // response
+ console.log(response)
+ history.push('/' + data.path)
+ })
+ }
+
+ render() {
+ const { show } = this.props.graph
+ if (show.loading || !show.res) {
+ return (
+ <div className='form'>
+ <Loader />
+ </div>
+ )
+ }
+ return (
+ <GraphForm
+ data={show.res}
+ onSubmit={this.handleSubmit.bind(this)}
+ />
+ )
+ }
+}
+
+const mapStateToProps = state => ({
+ graph: state.graph,
+})
+
+const mapDispatchToProps = dispatch => ({
+ // searchActions: bindActionCreators({ ...searchActions }, dispatch),
+})
+
+export default connect(mapStateToProps, mapDispatchToProps)(GraphEdit)
diff --git a/frontend/app/views/index/containers/graph.index.js b/frontend/app/views/index/containers/graph.index.js
new file mode 100644
index 0000000..91098a7
--- /dev/null
+++ b/frontend/app/views/index/containers/graph.index.js
@@ -0,0 +1,53 @@
+import React, { Component } from 'react'
+import { Link } from 'react-router-dom'
+import { bindActionCreators } from 'redux'
+import { connect } from 'react-redux'
+
+import { Loader } from 'app/common'
+import actions from 'app/actions'
+// import * as uploadActions from './upload.actions'
+
+class GraphIndex extends Component {
+ componentDidMount() {
+ actions.graph.index()
+ }
+ render() {
+ const { index } = this.props
+ // console.log(this.props)
+ if (!index.order) {
+ return (
+ <div className='graphIndex'>
+ <Loader />
+ </div>
+ )
+ }
+ // console.log(state)
+ return (
+ <div className='graphIndex'>
+ <div>
+ <b>welcome, swimmer</b>
+ <Link to='/index/new'>+ new project</Link>
+ </div>
+ {index.order.map(id => {
+ const graph = index.lookup[id]
+ return (
+ <div key={id}>
+ <Link to={'/' + graph.path}>{graph.title}</Link>
+ <Link to={'/index/' + id + '/edit'}>{'edit project'}</Link>
+ </div>
+ )
+ })}
+ </div>
+ )
+ }
+}
+
+const mapStateToProps = state => ({
+ index: state.graph.index,
+})
+
+const mapDispatchToProps = dispatch => ({
+ // uploadActions: bindActionCreators({ ...uploadActions }, dispatch),
+})
+
+export default connect(mapStateToProps, mapDispatchToProps)(GraphIndex)
diff --git a/frontend/app/views/index/containers/graph.new.js b/frontend/app/views/index/containers/graph.new.js
new file mode 100644
index 0000000..28d2f73
--- /dev/null
+++ b/frontend/app/views/index/containers/graph.new.js
@@ -0,0 +1,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)