summaryrefslogtreecommitdiff
path: root/frontend/views/index/containers/graph.index.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/views/index/containers/graph.index.js')
-rw-r--r--frontend/views/index/containers/graph.index.js19
1 files changed, 16 insertions, 3 deletions
diff --git a/frontend/views/index/containers/graph.index.js b/frontend/views/index/containers/graph.index.js
index 7ac31da..c02ad79 100644
--- a/frontend/views/index/containers/graph.index.js
+++ b/frontend/views/index/containers/graph.index.js
@@ -13,17 +13,30 @@ class GraphIndex extends Component {
}
render() {
const { index } = this.props
- if (index.loading) {
+ console.log(this.props)
+ if (!index.order) {
return (
<div className='graphIndex'>
<Loader />
</div>
)
}
+ // console.log(state)
return (
<div className='graphIndex'>
- <b>welcome, swimmer</b>
- <Link to='/index/new'>+ new project</Link>
+ <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>
)
}