mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 04:20:14 +08:00
26 lines
850 B
JavaScript
26 lines
850 B
JavaScript
import { compose, gql } from 'react-apollo';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect, withFragments, excludeIf } from 'plugin-api/beta/client/hocs';
|
|
import AccountDeletionRequestedSign from '../components/AccountDeletionRequestedSign';
|
|
import { notify } from 'coral-framework/actions/notification';
|
|
import { withCancelAccountDeletion } from 'plugin-api/beta/client/hocs';
|
|
|
|
const mapDispatchToProps = dispatch => bindActionCreators({ notify }, dispatch);
|
|
|
|
const withData = withFragments({
|
|
root: gql`
|
|
fragment Talk_AccountDeletionRequestedSignIn_root on RootQuery {
|
|
me {
|
|
scheduledDeletionDate
|
|
}
|
|
}
|
|
`,
|
|
});
|
|
|
|
export default compose(
|
|
connect(null, mapDispatchToProps),
|
|
withCancelAccountDeletion,
|
|
withData,
|
|
excludeIf(props => !props.root.me.scheduledDeletionDate)
|
|
)(AccountDeletionRequestedSign);
|