1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/search/autocomplete.service.ts

18 lines
474 B
TypeScript
Raw Normal View History

2016-05-04 23:20:21 +08:00
import {Injectable} from "@angular/core";
import {NetworkService} from "../../model/network/network.service";
2016-05-05 00:34:54 +08:00
import {AutoCompleteItem} from "../../../../common/entities/AutoCompleteItem";
@Injectable()
export class AutoCompleteService {
constructor(private _networkService: NetworkService) {
}
2016-05-09 23:04:56 +08:00
2017-07-04 01:17:49 +08:00
public autoComplete(text: string): Promise<Array<AutoCompleteItem>> {
return this._networkService.getJson<Array<AutoCompleteItem>>("/autocomplete/" + text);
}
}