lbry-desktop/src/renderer/modal/modalPhoneCollection/index.js

23 lines
697 B
JavaScript
Raw Normal View History

import React from 'react';
import * as settings from 'constants/settings';
import { connect } from 'react-redux';
2018-04-19 18:51:18 +02:00
import { doHideNotification } from 'lbry-redux';
import { doSetClientSetting } from 'redux/actions/settings';
2018-01-15 14:32:01 +01:00
import { selectPhoneToVerify, selectUser } from 'redux/selectors/user';
import { doNavigate } from 'redux/actions/navigation';
2018-04-18 06:03:01 +02:00
import ModalPhoneCollection from './view';
const select = state => ({
2018-01-15 14:32:01 +01:00
phone: selectPhoneToVerify(state),
user: selectUser(state),
});
const perform = dispatch => () => ({
closeModal: () => {
2018-04-19 18:51:18 +02:00
dispatch(doHideNotification());
2018-01-15 14:32:01 +01:00
dispatch(doNavigate('/rewards'));
},
});
export default connect(select, perform)(ModalPhoneCollection);