feat: added new hide recovery password modal
when we turn on the setting we prevent any recovery phrase ui from loading and return nullpull/3083/head
parent
51534d4cc9
commit
fb3a87a5f5
@ -0,0 +1,109 @@
|
||||
import { isEmpty } from 'lodash';
|
||||
import { useDispatch } from 'react-redux';
|
||||
import styled from 'styled-components';
|
||||
import { SettingsKey } from '../../data/settings-key';
|
||||
import { updateHideRecoveryPasswordModel } from '../../state/ducks/modalDialog';
|
||||
import { showSettingsSection } from '../../state/ducks/section';
|
||||
import { SessionWrapperModal } from '../SessionWrapperModal';
|
||||
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
|
||||
import { SessionHtmlRenderer } from '../basic/SessionHTMLRenderer';
|
||||
import { SpacerMD } from '../basic/Text';
|
||||
import { ModalConfirmButtonContainer } from '../buttons/ModalConfirmButtonContainer';
|
||||
|
||||
const StyledDescriptionContainer = styled.div`
|
||||
width: 280px;
|
||||
line-height: 120%;
|
||||
`;
|
||||
|
||||
export type HideRecoveryPasswordDialogProps = {
|
||||
state: 'firstWarning' | 'secondWarning';
|
||||
};
|
||||
|
||||
export function HideRecoveryPasswordDialog(props: HideRecoveryPasswordDialogProps) {
|
||||
const { state } = props;
|
||||
|
||||
const dispatch = useDispatch();
|
||||
|
||||
const onClose = () => {
|
||||
dispatch(updateHideRecoveryPasswordModel(null));
|
||||
};
|
||||
|
||||
const onConfirmation = async () => {
|
||||
await window.setSettingValue(SettingsKey.hideRecoveryPassword, true);
|
||||
onClose();
|
||||
dispatch(showSettingsSection('privacy'));
|
||||
};
|
||||
|
||||
if (isEmpty(state)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const leftButtonProps =
|
||||
state === 'firstWarning'
|
||||
? {
|
||||
text: window.i18n('continue'),
|
||||
buttonColor: SessionButtonColor.Danger,
|
||||
onClick: () => {
|
||||
dispatch(updateHideRecoveryPasswordModel({ state: 'secondWarning' }));
|
||||
},
|
||||
dataTestId: 'session-confirm-ok-button',
|
||||
}
|
||||
: {
|
||||
text: window.i18n('cancel'),
|
||||
onClick: onClose,
|
||||
dataTestId: 'session-confirm-cancel-button',
|
||||
};
|
||||
|
||||
const rightButtonProps =
|
||||
state === 'firstWarning'
|
||||
? {
|
||||
text: window.i18n('cancel'),
|
||||
onClick: onClose,
|
||||
dataTestId: 'session-confirm-cancel-button',
|
||||
}
|
||||
: {
|
||||
text: window.i18n('yes'),
|
||||
buttonColor: SessionButtonColor.Danger,
|
||||
onClick: () => {
|
||||
void onConfirmation();
|
||||
},
|
||||
dataTestId: 'session-confirm-ok-button',
|
||||
};
|
||||
|
||||
return (
|
||||
<SessionWrapperModal
|
||||
title={window.i18n('recoveryPasswordHidePermanently')}
|
||||
onClose={onClose}
|
||||
showExitIcon={false}
|
||||
showHeader={true}
|
||||
>
|
||||
<StyledDescriptionContainer>
|
||||
<SessionHtmlRenderer
|
||||
html={
|
||||
state === 'firstWarning'
|
||||
? window.i18n('recoveryPasswordHidePermanentlyDescription1')
|
||||
: window.i18n('recoveryPasswordHidePermanentlyDescription2')
|
||||
}
|
||||
/>
|
||||
</StyledDescriptionContainer>
|
||||
<SpacerMD />
|
||||
<ModalConfirmButtonContainer
|
||||
container={true}
|
||||
justifyContent="center"
|
||||
alignItems="center"
|
||||
width="100%"
|
||||
>
|
||||
<SessionButton
|
||||
{...leftButtonProps}
|
||||
buttonType={SessionButtonType.Ghost}
|
||||
margin={'0 0 0 calc(var(--margins-lg) * -1)'}
|
||||
/>
|
||||
<SessionButton
|
||||
{...rightButtonProps}
|
||||
buttonType={SessionButtonType.Ghost}
|
||||
margin={'0 calc(var(--margins-lg) * -1) 0 0'}
|
||||
/>
|
||||
</ModalConfirmButtonContainer>
|
||||
</SessionWrapperModal>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue