You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { observable } from "mobx";
|
|
|
|
import { Duration } from "./Duration";
|
|
|
|
import { SprinklersDevice } from "./SprinklersDevice";
|
|
|
|
|
|
|
|
export class Section {
|
|
|
|
readonly device: SprinklersDevice;
|
|
|
|
readonly id: number;
|
|
|
|
|
|
|
|
@observable name: string = "";
|
|
|
|
@observable state: boolean = false;
|
|
|
|
|
|
|
|
constructor(device: SprinklersDevice, id: number) {
|
|
|
|
this.device = device;
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
run(duration: Duration) {
|
|
|
|
return this.device.runSection(this, duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
toString(): string {
|
|
|
|
return `Section{id=${this.id}, name="${this.name}", state=${this.state}}`;
|
|
|
|
}
|
|
|
|
}
|