1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-16 11:37:13 +02:00
pigallery2/frontend/app/gallery/search/autocomplete.service.ts

19 lines
529 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";
import {Message} from "../../../../common/entities/Message";
@Injectable()
export class AutoCompleteService {
2016-05-09 17:04:56 +02:00
constructor(private _networkService:NetworkService) {
}
2016-05-09 17:04:56 +02:00
public autoComplete(text:string):Promise<Message<Array<AutoCompleteItem> >> {
2016-05-16 19:36:04 +02:00
return this._networkService.getJson("/autocomplete/" + text);
}
}