import { Component, Input, HostListener, ViewChildren, QueryList, ElementRef } from '@angular/core' // eslint-disable-line @typescript-eslint/no-unused-vars import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { SelectorOption } from '../api/selector' /** @hidden */ @Component({ selector: 'selector-modal', template: require('./selectorModal.component.pug'), styles: [require('./selectorModal.component.scss')], }) export class SelectorModalComponent { @Input() options: SelectorOption[] @Input() filteredOptions: SelectorOption[] @Input() filter = '' @Input() name: string @Input() selectedIndex = 0 @ViewChildren('item') itemChildren: QueryList constructor ( public modalInstance: NgbActiveModal, ) { } ngOnInit (): void { this.onFilterChange() } @HostListener('keyup', ['$event']) onKeyUp (event: KeyboardEvent): void { if (event.key === 'ArrowUp') { this.selectedIndex-- } if (event.key === 'ArrowDown') { this.selectedIndex++ } if (event.key === 'Enter') { this.selectOption(this.filteredOptions[this.selectedIndex]) } if (event.key === 'Escape') { this.close() } this.selectedIndex = (this.selectedIndex + this.filteredOptions.length) % this.filteredOptions.length Array.from(this.itemChildren)[this.selectedIndex]?.nativeElement.scrollIntoView({ behavior: 'smooth', block: 'nearest', }) } onFilterChange (): void { const f = this.filter.trim().toLowerCase() if (!f) { this.filteredOptions = this.options.filter(x => !x.freeInputPattern) } else { const terms = f.split(' ') // eslint-disable-next-line @typescript-eslint/restrict-plus-operands this.filteredOptions = this.options.filter(x => x.freeInputPattern ?? terms.every(term => (x.name + (x.description ?? '')).toLowerCase().includes(term))) } this.selectedIndex = Math.max(0, this.selectedIndex) this.selectedIndex = Math.min(this.filteredOptions.length - 1, this.selectedIndex) } getOptionText (option: SelectorOption): string { if (option.freeInputPattern) { return option.freeInputPattern.replace('%s', this.filter) } return option.name } selectOption (option: SelectorOption): void { option.callback?.(this.filter) this.modalInstance.close(option.result) } close (): void { this.modalInstance.dismiss() } iconIsSVG (icon?: string): boolean { return icon?.startsWith('<') ?? false } }