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";
|
2017-08-08 06:10:42 +02:00
|
|
|
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 => ({
|
2017-07-16 18:29:46 +02:00
|
|
|
balance: formatCredits(selectBalance(state), 1),
|
2017-05-28 16:09:56 +02:00
|
|
|
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-08-08 06:10:42 +02:00
|
|
|
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);
|