mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
53 lines
1.8 KiB
JavaScript
53 lines
1.8 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { pInt, settingsSaveHelperSimpleFunction } from 'Common/Utils';
|
|
import { Capa, SaveSettingsStep } from 'Common/Enums';
|
|
import { Settings } from 'Common/Globals';
|
|
import { i18n, trigger as translatorTrigger } from 'Common/Translator';
|
|
|
|
import { showScreenPopup } from 'Knoin/Knoin';
|
|
|
|
import SettinsStore from 'Stores/User/Settings';
|
|
|
|
import Remote from 'Remote/User/Fetch';
|
|
|
|
import { TwoFactorConfigurationPopupView } from 'View/Popup/TwoFactorConfiguration';
|
|
|
|
export class SecurityUserSettings {
|
|
constructor() {
|
|
this.capaAutoLogout = Settings.capa(Capa.AutoLogout);
|
|
this.capaTwoFactor = Settings.capa(Capa.TwoFactor);
|
|
|
|
this.autoLogout = SettinsStore.autoLogout;
|
|
this.autoLogout.trigger = ko.observable(SaveSettingsStep.Idle);
|
|
|
|
let i18nLogout = (key, params) => i18n('SETTINGS_SECURITY/AUTOLOGIN_' + key, params);
|
|
this.autoLogoutOptions = ko.computed(() => {
|
|
translatorTrigger();
|
|
return [
|
|
{ 'id': 0, 'name': i18nLogout('NEVER_OPTION_NAME') },
|
|
{ 'id': 5, 'name': i18nLogout('MINUTES_OPTION_NAME', { 'MINUTES': 5 }) },
|
|
{ 'id': 10, 'name': i18nLogout('MINUTES_OPTION_NAME', { 'MINUTES': 10 }) },
|
|
{ 'id': 30, 'name': i18nLogout('MINUTES_OPTION_NAME', { 'MINUTES': 30 }) },
|
|
{ 'id': 60, 'name': i18nLogout('MINUTES_OPTION_NAME', { 'MINUTES': 60 }) },
|
|
{ 'id': 60 * 2, 'name': i18nLogout('HOURS_OPTION_NAME', { 'HOURS': 2 }) },
|
|
{ 'id': 60 * 5, 'name': i18nLogout('HOURS_OPTION_NAME', { 'HOURS': 5 }) },
|
|
{ 'id': 60 * 10, 'name': i18nLogout('HOURS_OPTION_NAME', { 'HOURS': 10 }) }
|
|
];
|
|
});
|
|
}
|
|
|
|
configureTwoFactor() {
|
|
showScreenPopup(TwoFactorConfigurationPopupView);
|
|
}
|
|
|
|
onBuild() {
|
|
if (this.capaAutoLogout) {
|
|
setTimeout(() => {
|
|
const f0 = settingsSaveHelperSimpleFunction(this.autoLogout.trigger, this);
|
|
|
|
this.autoLogout.subscribe(Remote.saveSettingsHelper('AutoLogout', pInt, f0));
|
|
});
|
|
}
|
|
}
|
|
}
|