2018-04-05 21:35:56 +02:00
|
|
|
import {
|
|
|
|
Component,
|
|
|
|
EventEmitter,
|
|
|
|
Input,
|
|
|
|
Output,
|
|
|
|
} from '@angular/core';
|
|
|
|
|
|
|
|
import { ToasterService } from 'angular2-toaster';
|
|
|
|
import { Angulartics2 } from 'angulartics2';
|
|
|
|
|
|
|
|
import { BrowserApi } from '../../browser/browserApi';
|
|
|
|
|
|
|
|
import { CipherType } from 'jslib/enums/cipherType';
|
|
|
|
|
|
|
|
import { CipherView } from 'jslib/models/view/cipherView';
|
|
|
|
|
|
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
|
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|
|
|
|
|
|
|
import { PopupUtilsService } from '../services/popup-utils.service';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-action-buttons',
|
2018-04-06 17:48:45 +02:00
|
|
|
templateUrl: 'action-buttons.component.html',
|
2018-04-05 21:35:56 +02:00
|
|
|
})
|
|
|
|
export class ActionButtonsComponent {
|
|
|
|
@Output() onView = new EventEmitter<CipherView>();
|
|
|
|
@Input() cipher: CipherView;
|
2018-04-06 20:03:35 +02:00
|
|
|
@Input() showView = false;
|
2018-04-05 21:35:56 +02:00
|
|
|
|
|
|
|
cipherType = CipherType;
|
|
|
|
|
|
|
|
constructor(private analytics: Angulartics2, private toasterService: ToasterService,
|
|
|
|
private i18nService: I18nService, private platformUtilsService: PlatformUtilsService,
|
|
|
|
private popupUtilsService: PopupUtilsService) { }
|
|
|
|
|
|
|
|
launch() {
|
|
|
|
if (this.cipher.type !== CipherType.Login || !this.cipher.login.canLaunch) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.analytics.eventTrack.next({ action: 'Launched URI From Listing' });
|
|
|
|
BrowserApi.createNewTab(this.cipher.login.uri);
|
|
|
|
if (this.popupUtilsService.inPopup(window)) {
|
|
|
|
BrowserApi.closePopup(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
copy(value: string, typeI18nKey: string, aType: string) {
|
|
|
|
if (value == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.analytics.eventTrack.next({ action: 'Copied ' + aType });
|
2018-08-13 15:44:59 +02:00
|
|
|
this.platformUtilsService.copyToClipboard(value, { window: window });
|
2018-04-05 21:35:56 +02:00
|
|
|
this.toasterService.popAsync('info', null,
|
|
|
|
this.i18nService.t('valueCopied', this.i18nService.t(typeI18nKey)));
|
|
|
|
}
|
|
|
|
|
|
|
|
view() {
|
|
|
|
this.onView.emit(this.cipher);
|
|
|
|
}
|
|
|
|
}
|