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

118 lines
2.9 KiB
JavaScript
Raw Normal View History

import React, { Component } from "react";
import "./Curtains.css";
2020-04-23 14:02:02 +00:00
import { RemoteService } from "../../../remote";
import { connect } from "react-redux";
2020-05-03 16:09:53 +00:00
import mapStateToProps from "../../../deviceProps";
2020-04-23 14:02:02 +00:00
class Curtain extends Component {
2020-04-27 13:47:59 +00:00
constructor(props) {
super(props);
this.state = {
intensity: this.props.stateOrDevice.intensity,
timeout: null,
};
2020-04-23 14:02:02 +00:00
2020-04-27 13:47:59 +00:00
this.setIntensity = this.setIntensity.bind(this);
}
//getters
get turnedOn() {
return this.props.stateOrDevice.on;
}
get intensity() {
return this.props.stateOrDevice.intensity || 0;
}
onClickDevice = () => {
const on = !this.turnedOn;
if (this.props.tab === "Devices") {
this.props
.saveDevice({ ...this.props.stateOrDevice, on })
.catch((err) => console.error("curtains update error", err));
} else {
this.props.updateState(
{ id: this.props.stateOrDevice.id, on: on },
this.props.stateOrDevice.kind
);
2020-04-23 14:02:02 +00:00
}
2020-04-27 13:47:59 +00:00
};
2020-04-23 14:02:02 +00:00
2020-04-27 13:47:59 +00:00
setIntensity(intensity) {
intensity *= 100;
2020-04-23 14:02:02 +00:00
2020-04-27 13:47:59 +00:00
if (this.state.timeout) {
clearTimeout(this.state.timeout);
2020-04-23 14:02:02 +00:00
}
2020-04-27 13:47:59 +00:00
this.setState({
intensity,
timeout: setTimeout(() => {
this.saveIntensity();
2020-04-23 14:02:02 +00:00
this.setState({
2020-04-27 13:47:59 +00:00
intensity: this.state.intensity,
timeout: null,
2020-04-23 14:02:02 +00:00
});
2020-04-27 13:47:59 +00:00
}, 100),
});
}
saveIntensity = () => {
const intensity = Math.round(this.state.intensity);
if (this.props.tab === "Devices") {
this.props
.saveDevice({ ...this.props.stateOrDevice, intensity })
.catch((err) => console.error("curtain update error", err));
} else {
this.props.updateState(
{ id: this.props.stateOrDevice.id, intensity: intensity },
this.props.stateOrDevice.kind
);
2020-04-23 14:02:02 +00:00
}
2020-04-27 13:47:59 +00:00
};
helper = () => {
if (this.props.device.intensity >= 90) {
this.setIntensity(1);
this.saveIntensity();
} else {
this.setIntensity(this.props.stateOrDevice.intensity / 100 + 0.1);
this.saveIntensity();
2020-04-23 14:02:02 +00:00
}
2020-04-27 13:47:59 +00:00
};
///*this took me way too much more time than it should have*/
handleChange = (a) => {
this.setIntensity(a.target.value / 100);
this.saveIntensity();
};
render() {
return (
2020-04-27 12:14:11 +00:00
<div className="container curtain-container">
2020-04-27 13:47:59 +00:00
<div
className="open-container"
style={{
height: (9 * this.props.stateOrDevice.intensity) / 100 + "rem",
}}
></div>{" "}
<span className="span-open">
{Math.round(this.props.stateOrDevice.intensity)}%
</span>
<input
onChange={this.handleChange}
value={this.props.stateOrDevice.intensity}
className="slider"
type="range"
min="0"
max="100"
/>
</div>
);
}
2020-04-23 14:02:02 +00:00
}
const CurtainContainer = connect(mapStateToProps, RemoteService)(Curtain);
export default CurtainContainer;