2018-04-06 11:02:18 +00:00
|
|
|
import { Injectable } from '@angular/core';
|
2018-06-04 08:25:29 +00:00
|
|
|
import { Observable } from 'rxjs';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
import { RPCService } from '@loafer/ng-rpc';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
// import { PageParams, Page } from 'app/commons/model';
|
2018-06-12 05:45:21 +00:00
|
|
|
import { Sensor, SensorItem } from '@overflow/commons-typescript/model/sensor';
|
2018-05-02 08:09:39 +00:00
|
|
|
import { Domain } from '@overflow/commons-typescript/model/domain';
|
|
|
|
import { Target } from '@overflow/commons-typescript/model/target';
|
2018-06-07 07:28:27 +00:00
|
|
|
import { Page, PageParams } from '@overflow/commons-typescript/core/model';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class SensorService {
|
|
|
|
|
|
|
|
public constructor(
|
|
|
|
private rpcService: RPCService,
|
|
|
|
) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-27 14:17:07 +00:00
|
|
|
public readAllByDomainID(domainID: number, pageParams: PageParams): Observable<Page<Sensor>> {
|
|
|
|
return this.rpcService.call('SensorService.readAllByDomainID', domainID, pageParams);
|
|
|
|
}
|
2018-04-06 11:02:18 +00:00
|
|
|
|
|
|
|
public registSensorConfig(sensor: Sensor, sensorItems: SensorItem[]): Observable<Sensor> {
|
|
|
|
return this.rpcService.call('SensorService.registSensorConfig', sensor, sensorItems, null);
|
|
|
|
}
|
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
// public readAllByInfra(infraId: string, pageParams: PageParams): Observable<Page> {
|
|
|
|
// return this.rpcService.call('SensorService.readAllByInfra', infraId, pageParams);
|
|
|
|
// }
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
// public readAllByTarget(target: Target, pageParams: PageParams): Observable<Page> {
|
|
|
|
// return this.rpcService.call('SensorService.readAllByTarget', target, pageParams);
|
|
|
|
// }
|
2018-04-18 11:28:53 +00:00
|
|
|
|
2018-06-04 05:19:55 +00:00
|
|
|
public read(id: number): Observable<Sensor> {
|
2018-04-18 11:28:53 +00:00
|
|
|
return this.rpcService.call<Sensor>('SensorService.read', id);
|
|
|
|
}
|
2018-04-06 11:02:18 +00:00
|
|
|
}
|