1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/gallery/search/autocomplete.service.ts
Patrik J. Braun 0d3b8823e4 ui directory refactoring
adding thumbnail loader for faces
2019-03-03 10:30:12 +01:00

25 lines
821 B
TypeScript

import {Injectable} from '@angular/core';
import {NetworkService} from '../../../model/network/network.service';
import {AutoCompleteItem} from '../../../../../common/entities/AutoCompleteItem';
import {GalleryCacheService} from '../cache.gallery.service';
@Injectable()
export class AutoCompleteService {
constructor(private _networkService: NetworkService,
private galleryCacheService: GalleryCacheService) {
}
public async autoComplete(text: string): Promise<Array<AutoCompleteItem>> {
let items: Array<AutoCompleteItem> = this.galleryCacheService.getAutoComplete(text);
if (items == null) {
items = await this._networkService.getJson<Array<AutoCompleteItem>>('/autocomplete/' + text);
this.galleryCacheService.setAutoComplete(text, items);
}
return items;
}
}