lbry-desktop/ui/js/component/header/index.js

23 lines
782 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { formatCredits } from "util/formatCredits";
2017-06-06 23:19:12 +02:00
import { connect } from "react-redux";
import { selectIsBackDisabled, selectIsForwardDisabled } from "selectors/app";
2017-06-06 23:19:12 +02:00
import { selectBalance } from "selectors/wallet";
import { doNavigate, doHistoryBack, doHistoryForward } from "actions/app";
2017-06-06 23:19:12 +02:00
import Header from "./view";
2017-04-22 15:17:01 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
isBackDisabled: selectIsBackDisabled(state),
isForwardDisabled: selectIsForwardDisabled(state),
2017-07-16 18:29:46 +02:00
balance: formatCredits(selectBalance(state), 1),
publish: __("Publish"),
2017-06-06 06:21:55 +02:00
});
2017-04-22 15:17:01 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-06-06 23:19:12 +02:00
navigate: path => dispatch(doNavigate(path)),
2017-05-04 05:44:08 +02:00
back: () => dispatch(doHistoryBack()),
forward: () => dispatch(doHistoryForward()),
2017-06-06 06:21:55 +02:00
});
2017-04-22 15:17:01 +02:00
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(Header);