2017-06-06 17:19:12 -04:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-08-30 08:48:32 -04:00
|
|
|
import { selectCurrentPage, selectHeaderLinks } from "selectors/navigation";
|
|
|
|
import { doNavigate } from "actions/navigation";
|
2017-06-06 17:19:12 -04:00
|
|
|
import SubHeader from "./view";
|
2017-05-05 12:28:28 +07:00
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
currentPage: selectCurrentPage(state),
|
|
|
|
subLinks: selectHeaderLinks(state),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-05 12:28:28 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 17:19:12 -04:00
|
|
|
navigate: path => dispatch(doNavigate(path)),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-05 12:28:28 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
export default connect(select, perform)(SubHeader);
|