diff --git a/_locales/en/messages.json b/_locales/en/messages.json index bd7e2f439..100ea14de 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -114,6 +114,7 @@ "clear": "Clear", "clearAllData": "Clear All Data", "deleteAccountWarning": "This will permanently delete your messages and contacts.", + "deleteAccountFromLogin": "Are you sure you want to clear your device?", "deleteContactConfirmation": "Are you sure you want to delete this conversation?", "quoteThumbnailAlt": "Thumbnail of image from quoted message", "imageAttachmentAlt": "Image attached to message", @@ -266,16 +267,16 @@ "updateGroupDialogTitle": "Updating $name$...", "showRecoveryPhrase": "Recovery Phrase", "yourSessionID": "Your Session ID", - "setAccountPasswordTitle": "Set Account Password", + "setAccountPasswordTitle": "Password", "setAccountPasswordDescription": "Require password to unlock Session.", - "changeAccountPasswordTitle": "Change Account Password", + "changeAccountPasswordTitle": "Change Password", "changeAccountPasswordDescription": "Change the password required to unlock Session.", - "removeAccountPasswordTitle": "Remove Account Password", + "removeAccountPasswordTitle": "Remove Password", "removeAccountPasswordDescription": "Remove the password required to unlock Session.", "enterPassword": "Please enter your password", "confirmPassword": "Confirm password", "enterNewPassword": "Please enter your new password", - "confirmNewPassword": "Confirm new password", + "confirmNewPassword": "Confirm password", "showRecoveryPhrasePasswordRequest": "Please enter your password", "recoveryPhraseSavePromptMain": "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.", "invalidOpenGroupUrl": "Invalid URL", @@ -295,12 +296,12 @@ "setPasswordInvalid": "Passwords do not match", "changePasswordInvalid": "The old password you entered is incorrect", "removePasswordInvalid": "Incorrect password", - "setPasswordTitle": "Set Password", - "changePasswordTitle": "Changed Password", - "removePasswordTitle": "Removed Password", + "setPasswordTitle": "Password Set", + "changePasswordTitle": "Password Changed", + "removePasswordTitle": "Password Removed", "setPasswordToastDescription": "Your password has been set. Please keep it safe.", "changePasswordToastDescription": "Your password has been changed. Please keep it safe.", - "removePasswordToastDescription": "You have removed your password.", + "removePasswordToastDescription": "Your password has been removed.", "publicChatExists": "You are already connected to this community", "connectToServerFail": "Couldn't join community", "connectingToServer": "Connecting...", @@ -414,6 +415,9 @@ "dialogClearAllDataDeletionFailedTitleQuestion": "Do you want to delete data from just this device?", "dialogClearAllDataDeletionFailedMultiple": "Data not deleted by those Service Nodes: $snodes$", "dialogClearAllDataDeletionQuestion": "Would you like to clear this device only, or delete your data from the network as well?", + "clearDevice": "Clear Device", + "tryAgain": "Try Again", + "areYouSureClearDevice": "Are you sure you want to clear your device?", "deviceOnly": "Clear Device Only", "entireAccount": "Clear Device and Network", "areYouSureDeleteDeviceOnly": "Are you sure you want to delete your device data only?", diff --git a/stylesheets/_session_password.scss b/stylesheets/_session_password.scss index 9d14c4513..2c9547813 100644 --- a/stylesheets/_session_password.scss +++ b/stylesheets/_session_password.scss @@ -1,8 +1,16 @@ .password { height: 100vh; + color: white; //TODO theming update .clear-data-wrapper { - margin: auto; + display: flex; + height: 100%; + width: 100%; + background-color: $session-color-black; + + .clear-data-container { + margin: auto; + } .warning-info-area { display: flex; diff --git a/ts/components/SessionPasswordPrompt.tsx b/ts/components/SessionPasswordPrompt.tsx index b20d519f7..8be2918df 100644 --- a/ts/components/SessionPasswordPrompt.tsx +++ b/ts/components/SessionPasswordPrompt.tsx @@ -7,15 +7,17 @@ import autoBind from 'auto-bind'; import { SessionButton, SessionButtonColor, SessionButtonType } from './basic/SessionButton'; import { SessionSpinner } from './basic/SessionSpinner'; import { switchHtmlToDarkTheme } from '../state/ducks/SessionTheme'; +import { ToastUtils } from '../session/utils'; +import { isString } from 'lodash'; interface State { - error: string; errorCount: number; clearDataView: boolean; loading: boolean; } export const MAX_LOGIN_TRIES = 3; +// tslint:disable: use-simple-attributes const TextPleaseWait = (props: { isLoading: boolean }) => { if (!props.isLoading) { @@ -31,7 +33,6 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> { super(props); this.state = { - error: '', errorCount: 0, clearDataView: false, loading: false, @@ -48,7 +49,6 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> { } public render() { - const showResetElements = this.state.errorCount >= MAX_LOGIN_TRIES; const isLoading = this.state.loading; const wrapperClass = this.state.clearDataView @@ -59,13 +59,13 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> { : 'password-prompt-container'; const infoAreaClass = this.state.clearDataView ? 'warning-info-area' : 'password-info-area'; const infoTitle = this.state.clearDataView - ? window.i18n('clearAllData') + ? window.i18n('clearDevice') : window.i18n('passwordViewTitle'); const buttonGroup = this.state.clearDataView ? this.renderClearDataViewButtons() : this.renderPasswordViewButtons(); const featureElement = this.state.clearDataView ? ( -
{window.i18n('deleteAccountWarning')}
+{window.i18n('deleteAccountFromLogin')}
) : ( { const infoIcon = this.state.clearDataView ?? (