// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T } from '@/components'; import { Alert, Intent } from '@blueprintjs/core'; import { useInactivateUser } from '@/hooks/query'; import withAlertStoreConnect from '@/containers/Alert/withAlertStoreConnect'; import withAlertActions from '@/containers/Alert/withAlertActions'; import { compose } from '@/utils'; /** * User inactivate alert. */ function UserInactivateAlert({ // #ownProps name, // #withAlertStoreConnect isOpen, payload: { userId }, // #withAlertActions closeAlert, }) { const { mutateAsync: userInactivateMutate } = useInactivateUser(); const handleConfirmInactivate = () => { userInactivateMutate(userId) .then(() => { AppToaster.show({ message: intl.get('the_user_has_been_inactivated_successfully'), intent: Intent.SUCCESS, }); closeAlert(name); }) .catch( ({ response: { data: { errors }, }, }) => { if ( errors.find( (e) => e.type === 'CANNOT.TOGGLE.ACTIVATE.AUTHORIZED.USER', ) ) { AppToaster.show({ message: 'You could not activate/inactivate the same authorized user.', intent: Intent.DANGER, }); } closeAlert(name); }, ); }; const handleCancel = () => { closeAlert(name); }; return ( } confirmButtonText={} intent={Intent.WARNING} isOpen={isOpen} onCancel={handleCancel} onConfirm={handleConfirmInactivate} >

); } export default compose( withAlertStoreConnect(), withAlertActions, )(UserInactivateAlert);