|
|
|
@ -8,7 +8,7 @@ import { LocalizerKeys } from '../../types/LocalizerKeys';
|
|
|
|
|
import type { PasswordAction } from '../../types/ReduxTypes';
|
|
|
|
|
import { assertUnreachable } from '../../types/sqlSharedTypes';
|
|
|
|
|
import { matchesHash, validatePassword } from '../../util/passwordUtils';
|
|
|
|
|
import { getPasswordHash } from '../../util/storage';
|
|
|
|
|
import { getPasswordHash, Storage } from '../../util/storage';
|
|
|
|
|
import { SessionWrapperModal } from '../SessionWrapperModal';
|
|
|
|
|
import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
|
|
|
|
|
import { SpacerSM } from '../basic/Text';
|
|
|
|
@ -193,15 +193,25 @@ export class SessionSetPasswordDialog extends Component<Props, State> {
|
|
|
|
|
this.showError();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
await window.setPassword(enteredPassword, null);
|
|
|
|
|
ToastUtils.pushToastSuccess(
|
|
|
|
|
'setPasswordSuccessToast',
|
|
|
|
|
window.i18n('setPasswordTitle'),
|
|
|
|
|
window.i18n('setPasswordToastDescription')
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
this.props.onOk();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
try {
|
|
|
|
|
const updatedHash = await window.setPassword(enteredPassword, null);
|
|
|
|
|
await Storage.put('passHash', updatedHash);
|
|
|
|
|
|
|
|
|
|
ToastUtils.pushToastSuccess(
|
|
|
|
|
'setPasswordSuccessToast',
|
|
|
|
|
window.i18n('setPasswordTitle'),
|
|
|
|
|
window.i18n('setPasswordToastDescription')
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
this.props.onOk();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
window.log.error(err);
|
|
|
|
|
this.setState({
|
|
|
|
|
error: window.i18n('setPasswordFail'),
|
|
|
|
|
});
|
|
|
|
|
this.showError();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async handleActionChange(
|
|
|
|
@ -232,16 +242,26 @@ export class SessionSetPasswordDialog extends Component<Props, State> {
|
|
|
|
|
this.showError();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
await window.setPassword(newPassword, oldPassword);
|
|
|
|
|
|
|
|
|
|
ToastUtils.pushToastSuccess(
|
|
|
|
|
'setPasswordSuccessToast',
|
|
|
|
|
window.i18n('changePasswordTitle'),
|
|
|
|
|
window.i18n('changePasswordToastDescription')
|
|
|
|
|
);
|
|
|
|
|
try {
|
|
|
|
|
const updatedHash = await window.setPassword(newPassword, oldPassword);
|
|
|
|
|
await Storage.put('passHash', updatedHash);
|
|
|
|
|
|
|
|
|
|
this.props.onOk();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
ToastUtils.pushToastSuccess(
|
|
|
|
|
'setPasswordSuccessToast',
|
|
|
|
|
window.i18n('changePasswordTitle'),
|
|
|
|
|
window.i18n('changePasswordToastDescription')
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
this.props.onOk();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
window.log.error(err);
|
|
|
|
|
this.setState({
|
|
|
|
|
error: window.i18n('changePasswordFail'),
|
|
|
|
|
});
|
|
|
|
|
this.showError();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async handleActionRemove(oldPassword: string) {
|
|
|
|
@ -254,16 +274,26 @@ export class SessionSetPasswordDialog extends Component<Props, State> {
|
|
|
|
|
this.showError();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
await window.setPassword(null, oldPassword);
|
|
|
|
|
|
|
|
|
|
ToastUtils.pushToastWarning(
|
|
|
|
|
'setPasswordSuccessToast',
|
|
|
|
|
window.i18n('removePasswordTitle'),
|
|
|
|
|
window.i18n('removePasswordToastDescription')
|
|
|
|
|
);
|
|
|
|
|
try {
|
|
|
|
|
await window.setPassword(null, oldPassword);
|
|
|
|
|
await Storage.remove('passHash');
|
|
|
|
|
|
|
|
|
|
this.props.onOk();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
ToastUtils.pushToastWarning(
|
|
|
|
|
'setPasswordSuccessToast',
|
|
|
|
|
window.i18n('removePasswordTitle'),
|
|
|
|
|
window.i18n('removePasswordToastDescription')
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
this.props.onOk();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
window.log.error(err);
|
|
|
|
|
this.setState({
|
|
|
|
|
error: window.i18n('removePasswordFail'),
|
|
|
|
|
});
|
|
|
|
|
this.showError();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async onEnterPressed(event: any) {
|
|
|
|
|