import { Component, NgZone, OnDestroy, OnInit, ViewChild, } from '@angular/core'; import { BroadcasterService } from 'jslib-common/abstractions/broadcaster.service'; import { EnvironmentService } from 'jslib-common/abstractions/environment.service'; import { I18nService } from 'jslib-common/abstractions/i18n.service'; import { LogService } from 'jslib-common/abstractions/log.service'; import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service'; import { PolicyService } from 'jslib-common/abstractions/policy.service'; import { SearchService } from 'jslib-common/abstractions/search.service'; import { SendService } from 'jslib-common/abstractions/send.service'; import { UserService } from 'jslib-common/abstractions/user.service'; import { SendComponent as BaseSendComponent } from 'jslib-angular/components/send/send.component'; import { invokeMenu, RendererMenuItem } from 'jslib-electron/utils'; import { SendView } from 'jslib-common/models/view/sendView'; import { AddEditComponent } from './add-edit.component'; enum Action { None = '', Add = 'add', Edit = 'edit', } const BroadcasterSubscriptionId = 'SendComponent'; @Component({ selector: 'app-send', templateUrl: 'send.component.html', }) export class SendComponent extends BaseSendComponent implements OnInit, OnDestroy { @ViewChild(AddEditComponent) addEditComponent: AddEditComponent; sendId: string; action: Action = Action.None; constructor(sendService: SendService, i18nService: I18nService, platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService, private broadcasterService: BroadcasterService, ngZone: NgZone, searchService: SearchService, policyService: PolicyService, userService: UserService, logService: LogService) { super(sendService, i18nService, platformUtilsService, environmentService, ngZone, searchService, policyService, userService, logService); } async ngOnInit() { super.ngOnInit(); this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => { this.ngZone.run(async () => { switch (message.command) { case 'syncCompleted': await this.load(); break; } }); }); await this.load(); } ngOnDestroy() { this.broadcasterService.unsubscribe(BroadcasterSubscriptionId); } addSend() { this.action = Action.Add; if (this.addEditComponent != null) { this.addEditComponent.sendId = null; this.addEditComponent.send = null; this.addEditComponent.load(); } } cancel(s: SendView) { this.action = Action.None; this.sendId = null; } async deletedSend(s: SendView) { await this.refresh(); this.action = Action.None; this.sendId = null; } async savedSend(s: SendView) { await this.refresh(); this.selectSend(s.id); } async selectSend(sendId: string) { if (sendId === this.sendId && this.action === Action.Edit) { return; } this.action = Action.Edit; this.sendId = sendId; if (this.addEditComponent != null) { this.addEditComponent.sendId = sendId; await this.addEditComponent.refresh(); } } get selectedSendType() { return this.sends.find(s => s.id === this.sendId)?.type; } viewSendMenu(send: SendView) { const menu: RendererMenuItem[] = []; menu.push({ label: this.i18nService.t('copyLink'), click: () => this.copy(send), }); menu.push({ label: this.i18nService.t('delete'), click: async () => { await this.delete(send); await this.deletedSend(send); }, }); invokeMenu(menu); } }