frontend/smart-hut/src/components/dashboard/devices/Light.js

150 lines
3.7 KiB
JavaScript
Raw Normal View History

2020-03-24 16:08:19 +00:00
// vim: set ts=2 sw=2 et tw=80:
/**
* 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-23 20:24:17 +00:00
import { Image } from "semantic-ui-react";
import {
CircularInput,
CircularProgress,
CircularThumb,
} from "react-circular-input";
import {
LightDimmerContainer,
LightDimmerStyle,
textStyle,
2020-03-23 20:24:17 +00:00
nameStyle,
KnobProgress,
CircularThumbStyle,
2020-03-25 16:20:53 +00:00
knobIcon,
2020-03-23 20:24:17 +00:00
} from "./LightStyle";
2020-04-10 15:25:52 +00:00
import { RemoteService } from "../../../remote";
import { connect } from "react-redux";
2020-04-10 15:25:52 +00:00
class Light extends Component {
constructor(props) {
super(props);
2020-04-11 20:47:47 +00:00
this.state = { intensity: this.props.device.intensity, timeout: null };
this.iconOn = "/img/lightOn.svg";
2020-03-25 16:20:53 +00:00
this.iconOff = "/img/lightOff.svg";
2020-04-11 20:47:47 +00:00
this.setIntensity = this.setIntensity.bind(this);
}
2020-03-25 16:20:53 +00:00
get turnedOn() {
return this.props.device.on;
}
2020-03-25 16:20:53 +00:00
get intensity() {
2020-04-11 16:29:32 +00:00
return this.props.device.intensity || 0;
}
onClickDevice = () => {
2020-04-11 16:29:32 +00:00
const on = !this.turnedOn;
this.props
.saveDevice({ ...this.props.device, on })
.catch((err) => console.error("regular light update error", err));
};
getIcon = () => {
return this.turnedOn ? this.iconOn : this.iconOff;
};
2020-04-11 20:47:47 +00:00
setIntensity(intensity) {
intensity *= 100;
if (this.state.timeout) {
clearTimeout(this.state.timeout);
}
this.setState({
intensity,
timeout: setTimeout(() => {
this.saveIntensity();
this.setState({
intensity: this.state.intensity,
timeout: null
});
}, 100)
});
}
saveIntensity = () => {
const intensity = Math.round(this.state.intensity);
2020-04-11 16:29:32 +00:00
this.props
.saveDevice({ ...this.props.device, intensity })
.catch((err) => console.error("intensity light update error", err));
};
render() {
const intensityLightView = (
<div style={LightDimmerContainer}>
2020-03-25 16:20:53 +00:00
<CircularInput
style={LightDimmerStyle}
2020-04-11 20:47:47 +00:00
value={+(Math.round(this.state.intensity / 100 + "e+2") + "e-2")}
2020-03-25 16:20:53 +00:00
onChange={this.setIntensity}
2020-04-11 20:47:47 +00:00
onMouseUp={this.saveIntensity}
2020-03-25 16:20:53 +00:00
>
<text
style={textStyle}
x={100}
y={120}
textAnchor="middle"
dy="0.3em"
fontWeight="bold"
>
Intensity light
</text>
2020-03-25 16:20:53 +00:00
<CircularProgress
style={{
...KnobProgress,
2020-04-11 20:47:47 +00:00
opacity: this.state.intensity / 100 + 0.3,
2020-03-25 16:20:53 +00:00
}}
/>
<CircularThumb style={CircularThumbStyle} />
<ThumbText color={"#ffd31d"} />
</CircularInput>
<Image style={knobIcon} src="/img/intensityLightIcon.svg" />
</div>
);
const normalLightView = (
<StyledDiv>
2020-04-10 15:25:52 +00:00
<div onClick={this.onClickDevice}>
<Image src={this.getIcon()} style={iconStyle} />
2020-03-25 15:04:02 +00:00
<BottomPanel style={{ backgroundColor: "#ffa41b" }}>
2020-04-11 16:29:32 +00:00
<h5 style={nameStyle}>Light</h5>
2020-03-25 15:04:02 +00:00
</BottomPanel>
</div>
</StyledDiv>
);
2020-03-23 20:24:17 +00:00
return (
<div>
2020-03-25 16:20:53 +00:00
{this.props.device.kind === "dimmableLight"
? intensityLightView
: normalLightView}
</div>
2020-03-25 16:20:53 +00:00
);
}
}
2020-04-10 15:25:52 +00:00
const mapStateToProps = (state, ownProps) => ({
device: state.devices[ownProps.id],
});
const LightContainer = connect(mapStateToProps, RemoteService)(Light);
export default LightContainer;