2020-03-24 16:08:19 +00:00
|
|
|
// vim: set ts=2 sw=2 et tw=80:
|
|
|
|
|
2020-03-15 14:50:25 +00:00
|
|
|
/**
|
|
|
|
* Users can add lights in their rooms.
|
|
|
|
* Lights are devices like bulbs, LED strip lights, lamps.
|
|
|
|
* Lights may support an intensity level (from 0% to 100%).
|
|
|
|
* Lights have an internal state that can be changed and it must
|
|
|
|
* be shown accordingly in the SmartHut views (house view and room views).
|
|
|
|
*/
|
|
|
|
|
2020-03-23 20:24:17 +00:00
|
|
|
import React, { Component } from "react";
|
2020-03-25 16:20:53 +00:00
|
|
|
import {
|
|
|
|
iconStyle,
|
|
|
|
StyledDiv,
|
|
|
|
BottomPanel,
|
|
|
|
ThumbText,
|
|
|
|
} from "./styleComponents";
|
2020-03-15 14:50:25 +00:00
|
|
|
import Settings from "./DeviceSettings";
|
2020-03-23 20:24:17 +00:00
|
|
|
import { Image } from "semantic-ui-react";
|
|
|
|
import {
|
|
|
|
CircularInput,
|
|
|
|
CircularProgress,
|
|
|
|
CircularThumb,
|
|
|
|
} from "react-circular-input";
|
|
|
|
import {
|
2020-03-25 11:13:15 +00:00
|
|
|
LightDimmerContainer,
|
|
|
|
LightDimmerStyle,
|
|
|
|
textStyle,
|
2020-03-23 20:24:17 +00:00
|
|
|
nameStyle,
|
2020-03-25 11:13:15 +00:00
|
|
|
KnobProgress,
|
|
|
|
CircularThumbStyle,
|
2020-03-25 16:20:53 +00:00
|
|
|
knobIcon,
|
2020-03-23 20:24:17 +00:00
|
|
|
} from "./LightStyle";
|
2020-03-25 16:20:53 +00:00
|
|
|
import { call } from "../../../client_server";
|
2020-03-15 14:50:25 +00:00
|
|
|
|
|
|
|
export default class Light extends Component {
|
2020-03-17 22:24:40 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
turnedOn: false,
|
2020-03-25 11:13:15 +00:00
|
|
|
intensity: props.device.intensity,
|
2020-03-15 14:50:25 +00:00
|
|
|
};
|
2020-03-17 22:24:40 +00:00
|
|
|
this.iconOn = "/img/lightOn.svg";
|
2020-03-25 16:20:53 +00:00
|
|
|
this.iconOff = "/img/lightOff.svg";
|
|
|
|
|
|
|
|
this.stateCallback = (e) => {
|
|
|
|
this.setState(
|
|
|
|
Object.assign(this.state, {
|
|
|
|
intensity: e.intensity,
|
|
|
|
turnedOn: e.on,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
call.socketSubscribe(this.props.device.id, this.stateCallback);
|
2020-03-17 22:24:40 +00:00
|
|
|
}
|
2020-03-15 14:50:25 +00:00
|
|
|
|
2020-03-17 22:24:40 +00:00
|
|
|
onClickDevice = () => {
|
2020-03-23 01:17:13 +00:00
|
|
|
this.props.device.on = !this.state.turnedOn;
|
2020-03-25 16:20:53 +00:00
|
|
|
call.deviceUpdate(this.props.device, "regularLight").then((res) => {
|
|
|
|
if (res.status === 200) {
|
|
|
|
this.setState((prevState) => ({ turnedOn: !prevState.turnedOn }));
|
|
|
|
}
|
|
|
|
});
|
2020-03-17 22:24:40 +00:00
|
|
|
};
|
2020-03-15 14:50:25 +00:00
|
|
|
|
2020-03-25 11:13:15 +00:00
|
|
|
getIcon = () => {
|
|
|
|
if (this.state.turnedOn) {
|
|
|
|
return this.iconOn;
|
|
|
|
}
|
|
|
|
return this.iconOff;
|
|
|
|
};
|
|
|
|
|
2020-03-17 22:24:40 +00:00
|
|
|
setIntensity = (newValue) => {
|
2020-03-23 20:24:17 +00:00
|
|
|
this.props.device.intensity =
|
|
|
|
Math.round(newValue * 100) <= 1 ? 1 : Math.round(newValue * 100);
|
|
|
|
call.deviceUpdate(this.props.device, "dimmableLight").then((res) => {
|
|
|
|
if (res.status === 200) {
|
2020-03-25 13:34:55 +00:00
|
|
|
this.setState({
|
|
|
|
intensity:
|
|
|
|
Math.round(newValue * 100) <= 1 ? 1 : Math.round(newValue * 100),
|
|
|
|
});
|
2020-03-23 20:24:17 +00:00
|
|
|
}
|
|
|
|
});
|
2020-03-17 22:24:40 +00:00
|
|
|
};
|
2020-03-15 14:50:25 +00:00
|
|
|
|
2020-03-17 22:24:40 +00:00
|
|
|
render() {
|
|
|
|
const intensityLightView = (
|
2020-03-25 11:13:15 +00:00
|
|
|
<div style={LightDimmerContainer}>
|
|
|
|
<Settings
|
|
|
|
deviceId={this.props.device.id}
|
|
|
|
edit={this.props.edit}
|
2020-03-25 16:20:53 +00:00
|
|
|
onChangeData={(id, newSettings) =>
|
|
|
|
this.props.onChangeData(id, newSettings)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<CircularInput
|
|
|
|
style={LightDimmerStyle}
|
2020-03-25 11:13:15 +00:00
|
|
|
value={+(Math.round(this.state.intensity / 100 + "e+2") + "e-2")}
|
2020-03-25 16:20:53 +00:00
|
|
|
onChange={this.setIntensity}
|
|
|
|
>
|
|
|
|
<text
|
|
|
|
style={textStyle}
|
|
|
|
x={100}
|
|
|
|
y={120}
|
|
|
|
textAnchor="middle"
|
|
|
|
dy="0.3em"
|
|
|
|
fontWeight="bold"
|
|
|
|
>
|
2020-03-25 11:13:15 +00:00
|
|
|
{this.props.device.name}
|
|
|
|
</text>
|
2020-03-25 16:20:53 +00:00
|
|
|
<CircularProgress
|
|
|
|
style={{
|
|
|
|
...KnobProgress,
|
|
|
|
opacity: this.state.intensity / 100 + 0.3,
|
|
|
|
}}
|
|
|
|
/>
|
2020-03-25 11:13:15 +00:00
|
|
|
<CircularThumb style={CircularThumbStyle} />
|
|
|
|
<ThumbText color={"#ffd31d"} />
|
|
|
|
</CircularInput>
|
|
|
|
<Image style={knobIcon} src="/img/intensityLightIcon.svg" />
|
|
|
|
</div>
|
2020-03-17 22:24:40 +00:00
|
|
|
);
|
2020-03-15 14:50:25 +00:00
|
|
|
|
2020-03-17 22:24:40 +00:00
|
|
|
const normalLightView = (
|
2020-03-25 11:13:15 +00:00
|
|
|
<StyledDiv>
|
2020-03-25 15:04:02 +00:00
|
|
|
<Settings
|
|
|
|
deviceId={this.props.device.id}
|
|
|
|
edit={this.props.edit}
|
2020-03-25 16:20:53 +00:00
|
|
|
onChangeData={(id, newSettings) =>
|
|
|
|
this.props.onChangeData(id, newSettings)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<div onClick={this.props.edit.mode ? () => {} : this.onClickDevice}>
|
2020-03-25 11:13:15 +00:00
|
|
|
<Image src={this.getIcon()} style={iconStyle} />
|
2020-03-25 15:04:02 +00:00
|
|
|
<BottomPanel style={{ backgroundColor: "#ffa41b" }}>
|
|
|
|
<h5 style={nameStyle}>{this.props.device.name}</h5>
|
|
|
|
</BottomPanel>
|
2020-03-25 11:13:15 +00:00
|
|
|
</div>
|
|
|
|
</StyledDiv>
|
2020-03-17 22:24:40 +00:00
|
|
|
);
|
2020-03-23 20:24:17 +00:00
|
|
|
|
2020-03-17 22:24:40 +00:00
|
|
|
return (
|
2020-03-25 11:13:15 +00:00
|
|
|
<div>
|
2020-03-25 16:20:53 +00:00
|
|
|
{this.props.device.kind === "dimmableLight"
|
|
|
|
? intensityLightView
|
|
|
|
: normalLightView}
|
2020-03-25 11:13:15 +00:00
|
|
|
</div>
|
2020-03-25 16:20:53 +00:00
|
|
|
);
|
2020-03-17 22:24:40 +00:00
|
|
|
}
|
2020-03-15 14:50:25 +00:00
|
|
|
}
|