lbry-desktop/src/renderer/component/app/index.js

32 lines
872 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2018-11-07 17:03:42 +01:00
import {
selectPageTitle,
selectHistoryIndex,
selectActiveHistoryEntry,
doUpdateBlockHeight,
doError,
2018-11-07 17:03:42 +01:00
} from 'lbry-redux';
2018-04-18 06:03:01 +02:00
import { doRecordScroll } from 'redux/actions/navigation';
2018-09-24 05:44:42 +02:00
import { selectUser } from 'lbryinc';
2018-10-19 17:27:14 +02:00
import { selectThemePath } from 'redux/selectors/settings';
import App from './view';
2017-04-07 07:15:22 +02:00
2018-03-26 23:32:43 +02:00
const select = state => ({
pageTitle: selectPageTitle(state),
2017-07-28 03:13:12 +02:00
user: selectUser(state),
2017-11-17 22:27:35 +01:00
currentStackIndex: selectHistoryIndex(state),
currentPageAttributes: selectActiveHistoryEntry(state),
2018-10-19 17:27:14 +02:00
theme: selectThemePath(state),
2017-07-28 03:13:12 +02:00
});
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
alertError: errorList => dispatch(doError(errorList)),
recordScroll: scrollPosition => dispatch(doRecordScroll(scrollPosition)),
2018-11-07 17:03:42 +01:00
updateBlockHeight: () => dispatch(doUpdateBlockHeight()),
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
2018-09-24 05:44:42 +02:00
export default connect(
select,
perform
)(App);