// FIXME: Update this file to be type safe and remove this and next line // @ts-strict-ignore import { Component, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, SimpleChanges, } from "@angular/core"; import { FormBuilder } from "@angular/forms"; import { map, ReplaySubject, skip, Subject, takeUntil, withLatestFrom } from "rxjs"; import { Account } from "@bitwarden/common/auth/abstractions/account.service"; import { CatchallGenerationOptions, CredentialGeneratorService, Generators, } from "@bitwarden/generator-core"; /** Options group for catchall emails */ @Component({ selector: "tools-catchall-settings", templateUrl: "catchall-settings.component.html", }) export class CatchallSettingsComponent implements OnInit, OnDestroy, OnChanges { /** Instantiates the component * @param accountService queries user availability * @param generatorService settings and policy logic * @param formBuilder reactive form controls */ constructor( private formBuilder: FormBuilder, private generatorService: CredentialGeneratorService, ) {} /** Binds the component to a specific user's settings. */ @Input({ required: true }) account: Account; private account$ = new ReplaySubject(1); /** Emits settings updates and completes if the settings become unavailable. * @remarks this does not emit the initial settings. If you would like * to receive live settings updates including the initial update, * use `CredentialGeneratorService.settings$(...)` instead. */ @Output() readonly onUpdated = new EventEmitter(); /** The template's control bindings */ protected settings = this.formBuilder.group({ catchallDomain: [Generators.catchall.settings.initial.catchallDomain], }); async ngOnChanges(changes: SimpleChanges) { if ("account" in changes && changes.account) { this.account$.next(this.account); } } async ngOnInit() { const settings = await this.generatorService.settings(Generators.catchall, { account$: this.account$, }); settings.pipe(takeUntil(this.destroyed$)).subscribe((s) => { this.settings.patchValue(s, { emitEvent: false }); }); // the first emission is the current value; subsequent emissions are updates settings.pipe(skip(1), takeUntil(this.destroyed$)).subscribe(this.onUpdated); // now that outputs are set up, connect inputs this.saveSettings .pipe( withLatestFrom(this.settings.valueChanges), map(([, settings]) => settings), takeUntil(this.destroyed$), ) .subscribe(settings); } private saveSettings = new Subject(); save(site: string = "component api call") { this.saveSettings.next(site); } private readonly destroyed$ = new Subject(); ngOnDestroy(): void { this.account$.complete(); this.destroyed$.next(); this.destroyed$.complete(); } }