1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/gallery/search/autocomplete.service.ts

25 lines
815 B
TypeScript
Raw Normal View History

2016-05-04 17:20:21 +02:00
import {Injectable} from "@angular/core";
import {NetworkService} from "../../model/network/network.service";
2016-05-04 18:34:54 +02:00
import {AutoCompleteItem} from "../../../../common/entities/AutoCompleteItem";
2017-07-29 23:39:06 +02:00
import {GalleryCacheService} from "../cache.gallery.service";
@Injectable()
export class AutoCompleteService {
2017-07-29 23:39:06 +02:00
constructor(private _networkService: NetworkService,
private galleryCacheService: GalleryCacheService) {
}
2016-05-09 17:04:56 +02:00
2017-07-29 23:39:06 +02:00
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;
}
}