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

26 lines
799 B
JavaScript
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import { connect } from "react-redux";
2017-11-17 16:27:35 -05:00
import {
selectPageTitle,
selectHistoryIndex,
selectActiveHistoryEntry,
} from "redux/selectors/navigation";
2017-11-13 16:02:23 -05:00
import { selectUser } from "redux/selectors/user";
2017-11-21 16:51:12 -03:00
import { doAlertError } from "redux/actions/app";
2017-11-13 16:02:23 -05:00
import { doRecordScroll } from "redux/actions/navigation";
2017-06-06 17:19:12 -04:00
import App from "./view";
2017-04-07 12:15:22 +07:00
2017-07-27 21:13:12 -04:00
const select = (state, props) => ({
pageTitle: selectPageTitle(state),
2017-07-27 21:13:12 -04:00
user: selectUser(state),
2017-11-17 16:27:35 -05:00
currentStackIndex: selectHistoryIndex(state),
currentPageAttributes: selectActiveHistoryEntry(state),
2017-07-27 21:13:12 -04:00
});
2017-04-07 12:15:22 +07:00
2017-06-05 21:21:55 -07:00
const perform = dispatch => ({
2017-06-06 17:19:12 -04:00
alertError: errorList => dispatch(doAlertError(errorList)),
recordScroll: scrollPosition => dispatch(doRecordScroll(scrollPosition)),
2017-06-05 21:21:55 -07:00
});
2017-04-07 12:15:22 +07:00
2017-06-05 21:21:55 -07:00
export default connect(select, perform)(App);