339945018d
and refactor history
29 lines
808 B
JavaScript
29 lines
808 B
JavaScript
import React from "react";
|
|
import { formatCredits } from "util/formatCredits";
|
|
import { connect } from "react-redux";
|
|
import {
|
|
selectIsBackDisabled,
|
|
selectIsForwardDisabled,
|
|
} from "selectors/navigation";
|
|
import { selectBalance } from "selectors/wallet";
|
|
import {
|
|
doNavigate,
|
|
doHistoryBack,
|
|
doHistoryForward,
|
|
} from "actions/navigation";
|
|
import Header from "./view";
|
|
|
|
const select = state => ({
|
|
isBackDisabled: selectIsBackDisabled(state),
|
|
isForwardDisabled: selectIsForwardDisabled(state),
|
|
balance: formatCredits(selectBalance(state), 1),
|
|
publish: __("Publish"),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
navigate: path => dispatch(doNavigate(path)),
|
|
back: () => dispatch(doHistoryBack()),
|
|
forward: () => dispatch(doHistoryForward()),
|
|
});
|
|
|
|
export default connect(select, perform)(Header);
|