import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' import { Notifier } from '@app/core' import { splitAndGetNotEmpty, UNIQUE_HOSTS_OR_HANDLE_VALIDATOR } from '@app/shared/form-validators/host-validators' import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' import { InstanceFollowService } from '@app/shared/shared-instance' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' @Component({ selector: 'my-follow-modal', templateUrl: './follow-modal.component.html', styleUrls: [ './follow-modal.component.scss' ] }) export class FollowModalComponent extends FormReactive implements OnInit { @ViewChild('modal', { static: true }) modal: NgbModal @Output() newFollow = new EventEmitter() placeholder = 'example.com\nchocobozzz@example.com\nchocobozzz_channel@example.com' private openedModal: NgbModalRef constructor ( protected formValidatorService: FormValidatorService, private modalService: NgbModal, private followService: InstanceFollowService, private notifier: Notifier ) { super() } ngOnInit () { this.buildForm({ hostsOrHandles: UNIQUE_HOSTS_OR_HANDLE_VALIDATOR }) } openModal () { this.openedModal = this.modalService.open(this.modal, { centered: true }) } hide () { this.openedModal.close() } submit () { this.addFollowing() this.form.reset() this.hide() } httpEnabled () { return window.location.protocol === 'https:' } private async addFollowing () { const hostsOrHandles = splitAndGetNotEmpty(this.form.value['hostsOrHandles']) this.followService.follow(hostsOrHandles).subscribe( () => { this.notifier.success($localize`Follow request(s) sent!`) this.newFollow.emit() }, err => this.notifier.error(err.message) ) } }