import { Component, OnInit, ChangeDetectionStrategy, EventEmitter, Output, ViewChild } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { Router } from '@angular/router'; import { AssetsService } from 'src/app/services/assets.service'; import { StateService } from 'src/app/services/state.service'; import { Observable, of, Subject, merge } from 'rxjs'; import { debounceTime, distinctUntilChanged, switchMap, filter, catchError, map } from 'rxjs/operators'; import { ElectrsApiService } from 'src/app/services/electrs-api.service'; import { NgbTypeahead } from '@ng-bootstrap/ng-bootstrap'; @Component({ selector: 'app-search-form', templateUrl: './search-form.component.html', styleUrls: ['./search-form.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush }) export class SearchFormComponent implements OnInit { network = ''; assets: object = {}; isSearching = false; typeaheadSearchFn: ((text: Observable) => Observable); searchForm: FormGroup; @Output() searchTriggered = new EventEmitter(); regexAddress = /([a-km-zA-HJ-NP-Z1-9]{26,35}|[a-km-zA-HJ-NP-Z1-9]{80}|[bB]?[a-z]{2,5}1[ac-hj-np-z02-9]{8,87})/; regexBlockhash = /[0]{8}[a-fA-F0-9]{56}/; regexTransaction = /([a-fA-F0-9]{64}):?(\d+)?/; regexBlockheight = /^[0-9]+$/; @ViewChild('instance', {static: true}) instance: NgbTypeahead; focus$ = new Subject(); click$ = new Subject(); constructor( private formBuilder: FormBuilder, private router: Router, private assetsService: AssetsService, private stateService: StateService, private electrsApiService: ElectrsApiService, ) { } ngOnInit() { this.typeaheadSearchFn = this.typeaheadSearch; this.stateService.networkChanged$.subscribe((network) => this.network = network); this.searchForm = this.formBuilder.group({ searchText: ['', Validators.required], }); if (this.network === 'liquid') { this.assetsService.getAssetsMinimalJson$ .subscribe((assets) => { this.assets = assets; }); } } typeaheadSearch = (text$: Observable) => { const debouncedText$ = text$.pipe( map((text) => { if (this.network === 'bisq' && text.match(/^(b)[^c]/i)) { return text.substr(1); } return text; }), debounceTime(200), distinctUntilChanged() ); const clicksWithClosedPopup$ = this.click$.pipe(filter(() => !this.instance.isPopupOpen())); const inputFocus$ = this.focus$; return merge(debouncedText$, inputFocus$, clicksWithClosedPopup$) .pipe( switchMap((text) => { if (!text.length) { return of([]); } return this.electrsApiService.getAddressesByPrefix$(text).pipe(catchError(() => of([]))); }), map((result: string[]) => { if (this.network === 'bisq') { return result.map((address: string) => 'B' + address); } return result; }) ); } itemSelected() { setTimeout(() => this.search()); } search() { const searchText = this.searchForm.value.searchText.trim(); if (searchText) { this.isSearching = true; if (this.regexAddress.test(searchText)) { const matches = this.regexAddress.exec(searchText); this.navigate('/address/', matches[0]); } else if (this.regexBlockhash.test(searchText)) { const matches = this.regexBlockhash.exec(searchText); this.navigate('/block/', matches[0]); } else if (this.regexBlockheight.test(searchText)) { this.navigate('/block/', searchText); } else if (this.regexTransaction.test(searchText)) { const matches = this.regexTransaction.exec(searchText); if (this.network === 'liquid') { if (this.assets[matches[0]]) { this.navigate('/asset/', matches[0]); } this.electrsApiService.getAsset$(matches[0]) .subscribe( () => { this.navigate('/asset/', matches[0]); }, () => { this.navigate('/tx/', matches[0]); } ); } else { this.navigate('/tx/', matches[0]); } } else { this.isSearching = false; } } } navigate(url: string, searchText: string) { this.router.navigate([(this.network ? '/' + this.network : '') + url, searchText]); this.searchTriggered.emit(); this.searchForm.setValue({ searchText: '', }); this.isSearching = false; } }