2017-07-14 05:39:09 +08:00
|
|
|
import {Injectable} from "@angular/core";
|
|
|
|
import {NetworkService} from "../../model/network/network.service";
|
|
|
|
import {IPrivateConfig} from "../../../../common/config/private/IPrivateConfig";
|
2017-07-15 18:47:11 +08:00
|
|
|
import {ClientConfig} from "../../../../common/config/public/ConfigClass";
|
2017-07-14 05:39:09 +08:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class MapSettingsService {
|
|
|
|
constructor(private _networkService: NetworkService) {
|
|
|
|
}
|
|
|
|
|
2017-07-15 18:47:11 +08:00
|
|
|
public async getSettings(): Promise<ClientConfig.MapConfig> {
|
2017-07-14 05:39:09 +08:00
|
|
|
return (await <Promise<IPrivateConfig>>this._networkService.getJson("/settings")).Client.Map;
|
|
|
|
}
|
|
|
|
|
2017-07-15 18:47:11 +08:00
|
|
|
public updateSettings(settings: ClientConfig.MapConfig): Promise<void> {
|
2017-07-14 05:39:09 +08:00
|
|
|
return this._networkService.putJson("/settings/map", {settings: settings});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|