32 lines
1,017 B
JavaScript
32 lines
1,017 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";
|
|
import { selectIsUpgradeAvailable } from "../../selectors/app";
|
|
import { doDownloadUpgrade } from "../../actions/app";
|
|
|
|
const select = state => ({
|
|
isBackDisabled: selectIsBackDisabled(state),
|
|
isForwardDisabled: selectIsForwardDisabled(state),
|
|
isUpgradeAvailable: selectIsUpgradeAvailable(state),
|
|
balance: formatCredits(selectBalance(state) || 0, 1),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
navigate: path => dispatch(doNavigate(path)),
|
|
back: () => dispatch(doHistoryBack()),
|
|
forward: () => dispatch(doHistoryForward()),
|
|
downloadUpgrade: () => dispatch(doDownloadUpgrade()),
|
|
});
|
|
|
|
export default connect(select, perform)(Header);
|