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

19 lines
525 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
2017-07-16 18:29:46 +02:00
import { formatCredits } from "utils";
2017-06-06 23:19:12 +02:00
import { connect } from "react-redux";
import { selectBalance } from "selectors/wallet";
import { doNavigate, doHistoryBack } from "actions/app";
import Header from "./view";
2017-04-22 15:17:01 +02:00
2017-06-06 06:21:55 +02:00
const select = 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()),
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);