summaryrefslogtreecommitdiff
path: root/frontend/views/page/components/page.header.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/views/page/components/page.header.js
parent2231a6e1c05b07bb7ec5906716aedec93d02429c (diff)
refactor to use app-rooted js imports
Diffstat (limited to 'frontend/views/page/components/page.header.js')
-rw-r--r--frontend/views/page/components/page.header.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/frontend/views/page/components/page.header.js b/frontend/views/page/components/page.header.js
deleted file mode 100644
index eb1c3b9..0000000
--- a/frontend/views/page/components/page.header.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react'
-import { bindActionCreators } from 'redux'
-import { connect } from 'react-redux'
-import { Link } from 'react-router-dom'
-
-import * as graphActions from '../../graph/graph.actions'
-import * as pageActions from '../page.actions'
-
-function PageHeader(props) {
- return (
- <header>
- <div>
- <Link to={props.graph.show.res ? "/" + props.graph.show.res.path : "/"} className="logo"><b>{props.site.siteTitle}</b></Link>
- </div>
- <div>
- <button onClick={() => props.pageActions.toggleAddTileForm()}>+ Add tile</button>
- <button onClick={() => props.pageActions.toggleTileList()}>Sort tiles</button>
- <button onClick={() => props.graphActions.toggleEditPageForm()}>Edit page</button>
- </div>
- </header>
- )
-}
-
-const mapStateToProps = (state) => ({
- // auth: state.auth,
- site: state.site,
- graph: state.graph,
- // isAuthenticated: state.auth.isAuthenticated,
-})
-
-const mapDispatchToProps = (dispatch) => ({
- graphActions: bindActionCreators({ ...graphActions }, dispatch),
- pageActions: bindActionCreators({ ...pageActions }, dispatch),
-})
-
-export default connect(mapStateToProps, mapDispatchToProps)(PageHeader)