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

191 lines
4.8 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-05-12 13:18:33 +00:00
import React, { Component } from 'react';
import { Image } from 'semantic-ui-react';
import {
CircularInput,
CircularProgress,
CircularThumb,
} from 'react-circular-input';
import { connect } from 'react-redux';
2020-03-25 16:20:53 +00:00
import {
iconStyle,
StyledDiv,
BottomPanel,
ThumbText,
2020-05-12 13:18:33 +00:00
} from './styleComponents';
2020-03-23 20:24:17 +00:00
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-05-12 13:18:33 +00:00
} from './LightStyle';
import { RemoteService } from '../../../remote';
import mapStateToProps from '../../../deviceProps';
2020-04-10 15:25:52 +00:00
class Light extends Component {
constructor(props) {
super(props);
2020-04-25 15:46:04 +00:00
this.state = {
intensity: this.props.stateOrDevice.intensity,
timeout: null,
};
2020-04-11 20:47:47 +00:00
2020-05-12 13:18:33 +00:00
this.iconOn = '/img/lightOn.svg';
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
2020-05-02 11:58:02 +00:00
componentDidUpdate(prevProps) {
2020-04-25 15:46:04 +00:00
if (
this.props.stateOrDevice.intensity !== prevProps.stateOrDevice.intensity
) {
this.setState({
intensity: this.props.stateOrDevice.intensity,
timeout: null,
});
}
}
get turnedOn() {
return this.props.stateOrDevice.on;
}
2020-03-25 16:20:53 +00:00
get intensity() {
2020-05-03 16:09:53 +00:00
return this.state.intensity || 0;
}
onClickDevice = () => {
2020-04-11 16:29:32 +00:00
const on = !this.turnedOn;
2020-05-12 13:18:33 +00:00
if (this.props.tab !== 'Scenes') {
2020-04-25 13:37:40 +00:00
this.props
2020-05-04 09:13:19 +00:00
.saveDevice(
{ ...this.props.stateOrDevice, on },
2020-05-12 13:18:33 +00:00
this.props.tab === 'Hosts' ? this.props.activeHost : null,
2020-05-04 09:13:19 +00:00
)
2020-05-12 13:18:33 +00:00
.catch((err) => console.error('regular light update error', err));
} else if (this.props.device.kind === 'regularLight') {
2020-04-28 08:48:07 +00:00
this.props
.updateState(
{
id: this.props.stateOrDevice.id,
2020-05-12 13:18:33 +00:00
on,
2020-04-28 08:48:07 +00:00
sceneId: this.props.stateOrDevice.sceneId,
},
2020-05-12 13:18:33 +00:00
this.props.stateOrDevice.kind,
2020-04-28 08:48:07 +00:00
)
.then((res) => {
console.log(res);
});
}
};
2020-05-12 13:18:33 +00:00
getIcon = () => (this.turnedOn ? this.iconOn : this.iconOff);
2020-04-11 20:47:47 +00:00
setIntensity(intensity) {
intensity *= 100;
2020-04-12 15:49:29 +00:00
2020-04-11 20:47:47 +00:00
if (this.state.timeout) {
clearTimeout(this.state.timeout);
}
2020-04-12 15:49:29 +00:00
this.setState({
2020-04-11 20:47:47 +00:00
intensity,
timeout: setTimeout(() => {
this.saveIntensity();
this.setState({
intensity: this.state.intensity,
2020-04-12 15:49:29 +00:00
timeout: null,
2020-04-11 20:47:47 +00:00
});
2020-04-12 15:49:29 +00:00
}, 100),
2020-04-11 20:47:47 +00:00
});
}
saveIntensity = () => {
const intensity = Math.round(this.state.intensity);
2020-05-12 13:18:33 +00:00
if (this.props.tab !== 'Scenes') {
2020-04-25 13:37:40 +00:00
this.props
2020-05-04 09:13:19 +00:00
.saveDevice(
{ ...this.props.stateOrDevice, intensity },
2020-05-12 13:18:33 +00:00
this.props.tab === 'Hosts' ? this.props.activeHost : null,
2020-05-04 09:13:19 +00:00
)
2020-05-12 13:18:33 +00:00
.catch((err) => console.error('dimmable light update error', err));
2020-04-25 15:46:04 +00:00
} else {
2020-04-28 08:48:07 +00:00
this.props
.updateState(
2020-05-12 13:18:33 +00:00
{ id: this.props.stateOrDevice.id, intensity },
this.props.stateOrDevice.kind,
2020-04-28 08:48:07 +00:00
)
.then((res) => {
console.log(res, this.props.stateOrDevice.kind);
});
2020-04-25 13:37:40 +00:00
}
};
render() {
const intensityLightView = (
<div style={LightDimmerContainer}>
2020-03-25 16:20:53 +00:00
<CircularInput
style={LightDimmerStyle}
2020-05-12 13:18:33 +00:00
value={+(`${Math.round(`${this.intensity / 100}e+2`)}e-2`)}
2020-05-04 09:13:19 +00:00
onChange={this.props.disabled ? null : this.setIntensity}
onMouseUp={this.props.disabled ? null : 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-05-03 16:09:53 +00:00
opacity: this.intensity / 100 + 0.3,
2020-03-25 16:20:53 +00:00
}}
/>
<CircularThumb style={CircularThumbStyle} />
2020-05-12 13:18:33 +00:00
<ThumbText color="#ffd31d" />
</CircularInput>
<Image style={knobIcon} src="/img/intensityLightIcon.svg" />
</div>
);
const normalLightView = (
2020-04-21 10:13:01 +00:00
<StyledDiv onClick={this.onClickDevice}>
<div>
<Image src={this.getIcon()} style={iconStyle} />
2020-05-12 13:18:33 +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-05-12 13:18:33 +00:00
{this.props.device.kind === 'dimmableLight'
2020-03-25 16:20:53 +00:00
? intensityLightView
: normalLightView}
</div>
2020-03-25 16:20:53 +00:00
);
}
}
2020-04-10 15:25:52 +00:00
const LightContainer = connect(mapStateToProps, RemoteService)(Light);
export default LightContainer;