lbry-desktop/ui/js/component/authOverlay/index.jsx

23 lines
681 B
React
Raw Normal View History

2017-06-08 02:56:52 +02:00
import React from "react";
import * as modal from "constants/modal_types";
import { connect } from "react-redux";
import { doUserEmailDecline } from "actions/user";
import { doOpenModal } from "actions/app";
2017-06-01 18:20:12 +02:00
import {
selectAuthenticationIsPending,
2017-06-08 02:56:52 +02:00
selectUserIsAuthRequested,
} from "selectors/user";
import AuthOverlay from "./view";
2017-06-01 18:20:12 +02:00
2017-06-08 02:56:52 +02:00
const select = state => ({
isPending: selectAuthenticationIsPending(state),
2017-06-08 02:56:52 +02:00
isShowing: selectUserIsAuthRequested(state),
});
2017-06-01 18:20:12 +02:00
2017-06-08 02:56:52 +02:00
const perform = dispatch => ({
userEmailDecline: () => dispatch(doUserEmailDecline()),
openWelcomeModal: () => dispatch(doOpenModal(modal.WELCOME)),
});
2017-06-01 18:20:12 +02:00
2017-06-08 02:56:52 +02:00
export default connect(select, perform)(AuthOverlay);