2018-12-02 06:53:35 +08:00
|
|
|
import {Injectable} from '@angular/core';
|
2019-03-03 17:30:12 +08:00
|
|
|
import {NetworkService} from '../../../model/network/network.service';
|
|
|
|
import {ClientConfig} from '../../../../../common/config/public/ConfigClass';
|
2018-12-02 06:53:35 +08:00
|
|
|
import {SettingsService} from '../settings.service';
|
|
|
|
import {AbstractSettingsService} from '../_abstract/abstract.settings.service';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class MetaFileSettingsService extends AbstractSettingsService<ClientConfig.MetaFileConfig> {
|
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
_settingsService: SettingsService) {
|
|
|
|
super(_settingsService);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public isSupported(): boolean {
|
|
|
|
return this._settingsService.settings.value.Client.Map.enabled === true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public updateSettings(settings: ClientConfig.MetaFileConfig): Promise<void> {
|
|
|
|
return this._networkService.putJson('/settings/metafile', {settings: settings});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|