2016-05-04 03:04:57 +08:00
|
|
|
///<reference path="../../../browser.d.ts"/>
|
|
|
|
|
2016-05-04 23:20:21 +08:00
|
|
|
import {Injectable} from "@angular/core";
|
2016-05-04 03:04:57 +08:00
|
|
|
import {NetworkService} from "../../model/network/network.service";
|
2016-05-05 00:34:54 +08:00
|
|
|
import {AutoCompleteItem} from "../../../../common/entities/AutoCompleteItem";
|
|
|
|
import {Message} from "../../../../common/entities/Message";
|
2016-05-04 03:04:57 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2016-05-05 23:51:51 +08:00
|
|
|
export class AutoCompleteService {
|
2016-05-04 03:04:57 +08:00
|
|
|
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
constructor(private _networkService:NetworkService) {
|
2016-05-04 03:04:57 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
|
|
|
public autoComplete(text:string):Promise<Message<Array<AutoCompleteItem> >> {
|
2016-05-17 01:36:04 +08:00
|
|
|
return this._networkService.getJson("/autocomplete/" + text);
|
2016-05-04 03:04:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|