summaryrefslogtreecommitdiff
path: root/frontend/app/views/index/containers/graph.index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-09-26 14:56:02 +0200
committerJules Laplace <julescarbon@gmail.com>2020-09-26 14:56:02 +0200
commita17b76ac75f506f5da6fe8adf9c36632b60d4226 (patch)
treeabb0af0c4409b830dea2ef808c146223ee973933 /frontend/app/views/index/containers/graph.index.js
parent2231a6e1c05b07bb7ec5906716aedec93d02429c (diff)
refactor to use app-rooted js imports
Diffstat (limited to 'frontend/app/views/index/containers/graph.index.js')
-rw-r--r--frontend/app/views/index/containers/graph.index.js53
1 files changed, 53 insertions, 0 deletions
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)