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.

91 lines
3.1 KiB

import * as classNames from "classnames";
import { observer } from "mobx-react";
import * as React from "react";
import { Grid, Header, Icon, Item } from "semantic-ui-react";
import { injectState, StateBase } from "@app/state";
import { ConnectionState as ConState, SprinklersDevice } from "@common/sprinklers";
7 years ago
import { ProgramTable, RunSectionForm, SectionRunnerView, SectionTable } from ".";
import "./DeviceView.scss";
const ConnectionState = observer(({ connectionState, className }:
{ connectionState: ConState, className?: string }) => {
const connected = connectionState.isConnected;
const classes = classNames({
connectionState: true,
connected: connected, /* tslint:disable-line:object-literal-shorthand */
disconnected: !connected,
}, className);
let connectionText: string;
if (connected) {
connectionText = "Connected";
} else if (connectionState.serverToBroker) {
connectionText = "Device Disconnected";
} else if (connectionState.clientToServer) {
connectionText = "Broker Disconnected";
} else {
connectionText = "Server Disconnected";
}
return (
<div className={classes}>
<Icon name={connected ? "linkify" : "unlinkify"}/>&nbsp;
{connectionText}
</div>
);
});
7 years ago
interface DeviceViewProps {
deviceId: string;
state: StateBase;
7 years ago
}
class DeviceView extends React.Component<DeviceViewProps> {
device!: SprinklersDevice;
7 years ago
componentWillMount() {
this.updateDevice();
}
componentWillUpdate() {
this.updateDevice();
}
render() {
const { id, connectionState, sections, programs, sectionRunner } = this.device;
const { uiStore } = this.props.state;
return (
<Item>
<Item.Image src={require("@app/images/raspberry_pi.png")}/>
<Item.Content className="device">
<Header as="h1">
<div>Device <kbd>{id}</kbd></div>
<ConnectionState connectionState={connectionState}/>
</Header>
<Item.Meta>
Raspberry Pi Grinklers Device
</Item.Meta>
<Grid stackable>
<Grid.Column width="8">
<SectionTable sections={sections}/>
</Grid.Column>
<Grid.Column width="8">
<RunSectionForm sections={sections} uiStore={uiStore}/>
</Grid.Column>
</Grid>
<ProgramTable programs={programs} sections={sections}/>
<SectionRunnerView sectionRunner={sectionRunner} sections={sections}/>
</Item.Content>
</Item>
);
}
7 years ago
private updateDevice() {
const { state, deviceId } = this.props;
if (!this.device || this.device.id !== deviceId) {
this.device = state.sprinklersApi.getDevice(deviceId);
}
}
}
7 years ago
export default injectState(observer(DeviceView));