1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

move vault components to jslib

This commit is contained in:
Kyle Spearrin
2018-04-05 22:21:18 -04:00
parent 22f0f97cda
commit 45ba629371
5 changed files with 757 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import { ToasterService } from 'angular2-toaster';
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';
import { PasswordHistory } from '../../models/domain/passwordHistory';
export class PasswordGeneratorHistoryComponent implements OnInit {
history: PasswordHistory[] = [];
constructor(protected passwordGenerationService: PasswordGenerationService, protected analytics: Angulartics2,
protected platformUtilsService: PlatformUtilsService, protected i18nService: I18nService,
protected toasterService: ToasterService) { }
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' });
this.platformUtilsService.copyToClipboard(password);
this.toasterService.popAsync('info', null, this.i18nService.t('valueCopied', this.i18nService.t('password')));
}
}