2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
2017-11-17 22:27:35 +01:00
|
|
|
import {
|
|
|
|
selectPageTitle,
|
|
|
|
selectHistoryIndex,
|
|
|
|
selectActiveHistoryEntry,
|
2017-12-21 22:08:54 +01:00
|
|
|
} from 'redux/selectors/navigation';
|
|
|
|
import { selectUser } from 'redux/selectors/user';
|
|
|
|
import { doAlertError } from 'redux/actions/app';
|
|
|
|
import { doRecordScroll } from 'redux/actions/navigation';
|
|
|
|
import App from './view';
|
2017-04-07 07:15:22 +02:00
|
|
|
|
2017-07-28 03:13:12 +02:00
|
|
|
const select = (state, props) => ({
|
2017-08-30 14:48:32 +02:00
|
|
|
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),
|
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 => ({
|
2017-06-06 23:19:12 +02:00
|
|
|
alertError: errorList => dispatch(doAlertError(errorList)),
|
2017-07-19 10:35:03 +02:00
|
|
|
recordScroll: scrollPosition => dispatch(doRecordScroll(scrollPosition)),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-04-07 07:15:22 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
export default connect(select, perform)(App);
|