mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 22:29:38 +00:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 KiB
TypeScript
import { Injectable, EventEmitter } from '@angular/core'
|
|
import { ElectronService } from './electron.service'
|
|
import { SearchType, SongResult, SongSearch } from 'src/electron/shared/interfaces/search.interface'
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class SearchService {
|
|
|
|
private resultsChangedEmitter = new EventEmitter<SongResult[]>() // For when any results change
|
|
private newResultsEmitter = new EventEmitter<SongResult[]>() // For when a new search happens
|
|
private results: SongResult[] = []
|
|
private awaitingResults = false // TODO: add loading icon below table when this is true
|
|
private currentQuery: SongSearch
|
|
private _allResultsVisible = true
|
|
|
|
constructor(private electronService: ElectronService) { }
|
|
|
|
async newSearch(query: string) {
|
|
this.awaitingResults = true
|
|
this.currentQuery = { query, type: SearchType.Any, offset: 0, length: 20 + 1 } // TODO: make length a setting
|
|
this.results = this.trimLastChart(await this.electronService.invoke('song-search', this.currentQuery))
|
|
this.awaitingResults = false
|
|
|
|
this.resultsChangedEmitter.emit(this.results)
|
|
this.newResultsEmitter.emit(this.results)
|
|
}
|
|
|
|
/**
|
|
* Event emitted when new search results are returned
|
|
* or when more results are added to an existing search.
|
|
* (emitted before `onNewSearch`)
|
|
*/
|
|
onSearchChanged(callback: (results: SongResult[]) => void) {
|
|
this.resultsChangedEmitter.subscribe(callback)
|
|
}
|
|
|
|
/**
|
|
* Event emitted when a new search query is typed in.
|
|
* (emitted after `onSearchChanged`)
|
|
*/
|
|
onNewSearch(callback: (results: SongResult[]) => void) {
|
|
this.newResultsEmitter.subscribe(callback)
|
|
}
|
|
|
|
get resultCount() {
|
|
return this.results.length
|
|
}
|
|
|
|
async updateScroll() {
|
|
if (!this.awaitingResults && !this._allResultsVisible) {
|
|
this.awaitingResults = true
|
|
this.currentQuery.offset += 20
|
|
this.results.push(...this.trimLastChart(await this.electronService.invoke('song-search', this.currentQuery)))
|
|
this.awaitingResults = false
|
|
|
|
this.resultsChangedEmitter.emit(this.results)
|
|
}
|
|
}
|
|
|
|
trimLastChart(results: SongResult[]) {
|
|
if (results.length > 20) {
|
|
results.splice(20, 1)
|
|
this._allResultsVisible = false
|
|
} else {
|
|
this._allResultsVisible = true
|
|
}
|
|
|
|
return results
|
|
}
|
|
|
|
get allResultsVisible() {
|
|
return this._allResultsVisible
|
|
}
|
|
} |