2020-06-19 22:18:12 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doSetClientSetting } from 'redux/actions/settings';
|
|
|
|
import { selectosNotificationsEnabled } from 'redux/selectors/settings';
|
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
|
|
import SettingsPage from './view';
|
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
osNotificationsEnabled: selectosNotificationsEnabled(state),
|
2020-11-09 22:07:14 +01:00
|
|
|
isAuthenticated: Boolean(selectUserVerifiedEmail(state)),
|
2020-06-19 22:18:12 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
|
|
|
setClientSetting: (key, value) => dispatch(doSetClientSetting(key, value)),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, perform)(SettingsPage);
|