bitwarden-estensione-browser/src/angular/components/password-generator-history....

35 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-04-06 04:21:18 +02:00
import { Angulartics2 } from 'angulartics2';
import { OnInit } from '@angular/core';
import { I18nService } from '../../abstractions/i18n.service';
import { PasswordGenerationService } from '../../abstractions/passwordGeneration.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
2018-07-27 22:44:20 +02:00
import { GeneratedPasswordHistory } from '../../models/domain/generatedPasswordHistory';
2018-04-06 04:21:18 +02:00
export class PasswordGeneratorHistoryComponent implements OnInit {
2018-07-27 22:44:20 +02:00
history: GeneratedPasswordHistory[] = [];
2018-04-06 04:21:18 +02:00
constructor(protected passwordGenerationService: PasswordGenerationService, protected analytics: Angulartics2,
protected platformUtilsService: PlatformUtilsService, protected i18nService: I18nService,
2018-10-03 05:09:19 +02:00
private win: Window) { }
2018-04-06 04:21:18 +02:00
async ngOnInit() {
this.history = await this.passwordGenerationService.getHistory();
}
clear() {
this.history = [];
this.passwordGenerationService.clear();
}
copy(password: string) {
this.analytics.eventTrack.next({ action: 'Copied Historical Password' });
2018-08-17 18:24:56 +02:00
const copyOptions = this.win != null ? { window: this.win } : null;
2018-04-19 14:00:54 +02:00
this.platformUtilsService.copyToClipboard(password, copyOptions);
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('info', null,
this.i18nService.t('valueCopied', this.i18nService.t('password')));
2018-04-06 04:21:18 +02:00
}
}