bitwarden-estensione-browser/src/app/accounts/settings.component.ts

97 lines
4.0 KiB
TypeScript
Raw Normal View History

2018-02-10 05:41:29 +01:00
import {
Component,
OnInit,
} from '@angular/core';
import { ToasterService } from 'angular2-toaster';
import { Angulartics2 } from 'angulartics2';
import { I18nService } from 'jslib/abstractions/i18n.service';
2018-02-11 05:24:22 +01:00
import { LockService } from 'jslib/abstractions/lock.service';
2018-02-12 21:06:39 +01:00
import { MessagingService } from 'jslib/abstractions/messaging.service';
2018-02-10 05:41:29 +01:00
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-02-12 21:06:39 +01:00
import { StateService } from 'jslib/abstractions/state.service';
2018-02-11 05:24:22 +01:00
import { StorageService } from 'jslib/abstractions/storage.service';
import { ConstantsService } from 'jslib/services/constants.service';
2018-02-10 05:41:29 +01:00
import { SupportedTranslationLocales } from '../../services/i18n.service';
2018-02-10 05:41:29 +01:00
@Component({
selector: 'app-settings',
templateUrl: 'settings.component.html',
2018-02-10 05:41:29 +01:00
})
export class SettingsComponent implements OnInit {
2018-02-11 05:24:22 +01:00
lockOptions: any[];
lockOption: number = null;
disableGa: boolean = false;
disableFavicons: boolean = false;
locales: any[];
locale: string;
2018-02-10 05:41:29 +01:00
2018-02-11 05:24:22 +01:00
constructor(private analytics: Angulartics2, private toasterService: ToasterService,
private i18nService: I18nService, private platformUtilsService: PlatformUtilsService,
2018-02-12 21:06:39 +01:00
private storageService: StorageService, private lockService: LockService,
private stateService: StateService, private messagingService: MessagingService) {
2018-02-11 05:24:22 +01:00
this.lockOptions = [
// { name: i18nService.t('immediately'), value: 0 },
{ name: i18nService.t('oneMinute'), value: 1 },
{ name: i18nService.t('fiveMinutes'), value: 5 },
{ name: i18nService.t('fifteenMinutes'), value: 15 },
{ name: i18nService.t('thirtyMinutes'), value: 30 },
{ name: i18nService.t('oneHour'), value: 60 },
{ name: i18nService.t('fourHours'), value: 240 },
2018-02-11 06:09:47 +01:00
{ name: i18nService.t('onIdle'), value: -4 },
2018-02-11 05:24:22 +01:00
{ name: i18nService.t('onSleep'), value: -3 },
// { name: i18nService.t('onLocked'), value: -2 },
{ name: i18nService.t('onRestart'), value: -1 },
{ name: i18nService.t('never'), value: null },
];
this.locales = [ { locale: null, language: 'Default' } ];
Object.keys(SupportedTranslationLocales).forEach((localId) => {
this.locales.push({locale: localId, language: i18nService.t(localId)});
});
2018-02-10 05:41:29 +01:00
}
2018-02-11 05:24:22 +01:00
async ngOnInit() {
this.lockOption = await this.storageService.get<number>(ConstantsService.lockOptionKey);
this.disableFavicons = await this.storageService.get<boolean>(ConstantsService.disableFaviconKey);
this.locale = await this.storageService.get<string>('locale');
2018-02-27 06:00:31 +01:00
const disableGa = await this.storageService.get<boolean>(ConstantsService.disableGaKey);
const disableGaByDefault = this.platformUtilsService.isFirefox() || this.platformUtilsService.isMacAppStore();
this.disableGa = disableGa || (disableGa == null && disableGaByDefault);
2018-02-11 05:24:22 +01:00
}
2018-02-10 05:41:29 +01:00
2018-02-12 21:06:39 +01:00
async saveLockOption() {
2018-02-11 05:24:22 +01:00
await this.lockService.setLockOption(this.lockOption != null ? this.lockOption : null);
2018-02-12 21:06:39 +01:00
}
async saveGa() {
if (this.disableGa) {
this.callAnalytics('Analytics', !this.disableGa);
}
2018-02-11 05:24:22 +01:00
await this.storageService.save(ConstantsService.disableGaKey, this.disableGa);
2018-02-12 21:06:39 +01:00
if (!this.disableGa) {
this.callAnalytics('Analytics', !this.disableGa);
}
}
async saveFavicons() {
2018-02-11 05:24:22 +01:00
await this.storageService.save(ConstantsService.disableFaviconKey, this.disableFavicons);
2018-02-12 21:06:39 +01:00
await this.stateService.save(ConstantsService.disableFaviconKey, this.disableFavicons);
this.messagingService.send('refreshCiphers');
this.callAnalytics('Favicons', !this.disableGa);
}
private callAnalytics(name: string, enabled: boolean) {
const status = enabled ? 'Enabled' : 'Disabled';
this.analytics.eventTrack.next({ action: `${status} ${name}` });
2018-02-10 05:41:29 +01:00
}
async saveLocale() {
await this.storageService.save('locale', this.locale);
}
2018-02-10 05:41:29 +01:00
}