Combining and 80 and 90 completion stages.

pull/1846/head
Warrick Corfe-Tan 4 years ago
parent d13a6824ee
commit af298936d9

@ -427,10 +427,8 @@
"dialogClearAllDataDeletionQuestion": "Would you like to clear only this device, or delete your entire account?",
"deviceOnly": "Device Only",
"entireAccount": "Entire Account",
"recoveryPhraseSecureMessage": "Secure your account by saving your recovery phrase",
"recoveryPhraseSecureTitle": "You're almost finished!",
"recoveryPhraseSecureButtonText": "Secure your account",
"recoveryPhraseRevealMessage": "Reveal your recovery phrase then store it safely to secure it",
"recoveryPhraseRevealMessage": "Secure your account by saving your recovery phrase. Reveal your recovery phrase then store it safely to secure it",
"recoveryPhraseRevealButtonText": "Reveal Recovery Phrase",
"recoveryPhraseInfoMessage": "Meet your recovery phrase Your recovery phrase is the master key to your session ID - you can use it to restore your Session ID if you lose access to your device, Store your recovery phrase in a safe place, and don't give it to anyone.",
"recoveryPhraseCompleteTitle": "Account secured!"

@ -8,6 +8,7 @@ import { UserUtils } from '../../session/utils';
import { useDispatch, useSelector } from 'react-redux';
import { disableRecoveryPhrasePrompt } from '../../state/ducks/userConfig';
import { getShowRecoveryPhrasePrompt } from '../../state/selectors/userConfig';
import { recoveryPhraseModal } from '../../state/ducks/modalDialog';
const Tab = ({
isSelected,
@ -69,9 +70,9 @@ export const LeftPaneSectionHeader = (props: Props) => {
};
export const LeftPaneBanner = () => {
const [completion, setCompletion] = useState(80);
const [bodyText, setBodyText] = useState(window.i18n('recoveryPhraseSecureMessage'));
const [buttonText, setButtonText] = useState(window.i18n('recoveryPhraseSecureButtonText'));
const [completion, setCompletion] = useState(90);
const [bodyText, setBodyText] = useState(window.i18n('recoveryPhraseRevealMessage'));
const [buttonText, setButtonText] = useState(window.i18n('recoveryPhraseRevealButtonText'));
const [recoveryPhraseHidden, setRecoveryPhraseHidden] = useState(true);
const [isCompleted, setIsCompleted] = useState(false);
const [bannerTitle, setBannerTitle] = useState(window.i18n('recoveryPhraseSecureTitle'));
@ -79,20 +80,18 @@ export const LeftPaneBanner = () => {
const secondsBeforeRemoval = 2 * 1000;
const completionText = `${completion}%`;
const dispatch = useDispatch();
const handleShowRecoveryClick = () => {
setRecoveryPhraseHidden(false);
setBodyText(window.i18n('recoveryPhraseInfoMessage'));
setButtonText(window.i18n('copy'));
};
// setRecoveryPhraseHidden(false);
// setBodyText(window.i18n('recoveryPhraseInfoMessage'));
// setButtonText(window.i18n('copy'));
const handleSecureClick = () => {
if (completion === 80) {
setCompletion(90);
setBodyText(window.i18n('recoveryPhraseRevealMessage'));
setButtonText(window.i18n('recoveryPhraseRevealButtonText'));
}
// show a modal
dispatch(recoveryPhraseModal({}))
};
const BannerInner = (props: any) => {
const dispatch = useDispatch();
@ -111,9 +110,7 @@ export const LeftPaneBanner = () => {
};
const onClick =
completion === 80
? handleSecureClick
: completion === 90
completion === 90
? recoveryPhraseHidden
? handleShowRecoveryClick
: handleCopyPhraseClick

Loading…
Cancel
Save