2020-03-15 14:50:25 +00:00
|
|
|
/**
|
|
|
|
Users can add dimmers, a particular kind of switch that can also modify the intensity level of a given light.
|
|
|
|
There are two types of dimmers:
|
|
|
|
• A dimmer with state stores a given intensity level and sets the light to that level. <-- StatefulDimmer
|
|
|
|
• A dimmer without state can just increase or decrease the intensity of a light. <-- DefualtDimmer
|
|
|
|
|
|
|
|
The user can change the state of a dimmer through an intuitive UI in SmartHut .
|
|
|
|
**/
|
|
|
|
|
2020-03-25 16:20:53 +00:00
|
|
|
import React, { Component } from "react";
|
2020-03-25 11:13:15 +00:00
|
|
|
import {
|
2020-03-25 16:20:53 +00:00
|
|
|
CircularInput,
|
|
|
|
CircularProgress,
|
|
|
|
CircularThumb,
|
2020-03-25 11:13:15 +00:00
|
|
|
} from "react-circular-input";
|
2020-03-25 16:20:53 +00:00
|
|
|
import {
|
|
|
|
ButtonDimmerContainer,
|
|
|
|
MinusPanel,
|
|
|
|
PlusPanel,
|
|
|
|
ThumbText,
|
|
|
|
} from "./styleComponents";
|
2020-03-25 11:13:15 +00:00
|
|
|
import Settings from "./DeviceSettings";
|
|
|
|
import {
|
2020-03-25 16:20:53 +00:00
|
|
|
CircularThumbStyle,
|
|
|
|
KnobDimmerStyle,
|
|
|
|
KnobProgress,
|
|
|
|
textStyle,
|
|
|
|
knobIcon,
|
|
|
|
knobContainer,
|
2020-03-25 11:13:15 +00:00
|
|
|
} from "./DimmerStyle";
|
|
|
|
|
2020-03-25 18:58:19 +00:00
|
|
|
import { call } from "../../../client_server";
|
|
|
|
|
2020-03-25 11:13:15 +00:00
|
|
|
export class ButtonDimmer extends Component {
|
2020-03-25 16:20:53 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {};
|
|
|
|
}
|
2020-03-25 11:13:15 +00:00
|
|
|
|
2020-03-25 16:20:53 +00:00
|
|
|
increaseIntensity = () => {
|
2020-03-25 18:58:19 +00:00
|
|
|
let data = {
|
|
|
|
dimType: "UP",
|
|
|
|
id: this.props.device.id,
|
|
|
|
};
|
|
|
|
call.deviceUpdate(data, "buttonDimmer/dim").then((res) => {
|
|
|
|
if (res.status === 200) {
|
|
|
|
}
|
|
|
|
});
|
2020-03-25 16:20:53 +00:00
|
|
|
};
|
|
|
|
decreaseIntensity = () => {
|
2020-03-25 18:58:19 +00:00
|
|
|
let data = {
|
|
|
|
dimType: "DOWN",
|
|
|
|
id: this.props.device.id,
|
|
|
|
};
|
|
|
|
call.deviceUpdate(data, "buttonDimmer/dim").then((res) => {
|
|
|
|
if (res.status === 200) {
|
|
|
|
}
|
|
|
|
});
|
2020-03-25 16:20:53 +00:00
|
|
|
};
|
2020-03-23 20:24:17 +00:00
|
|
|
|
2020-03-25 16:20:53 +00:00
|
|
|
componentDidMount() {}
|
2020-03-23 20:24:17 +00:00
|
|
|
|
2020-03-25 16:20:53 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<ButtonDimmerContainer>
|
|
|
|
<Settings
|
|
|
|
deviceId={this.props.device.id}
|
|
|
|
edit={this.props.edit}
|
|
|
|
onChangeData={(id, newSettings) =>
|
|
|
|
this.props.onChangeData(id, newSettings)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<img alt="icon" src="/img/buttonDimmer.svg" />
|
2020-03-25 23:15:02 +00:00
|
|
|
<span className="knob">
|
|
|
|
{this.props.device.name} ({this.props.device.id})
|
|
|
|
</span>
|
2020-03-25 18:58:19 +00:00
|
|
|
<PlusPanel name="UP" onClick={this.increaseIntensity}>
|
2020-03-25 16:20:53 +00:00
|
|
|
<span>+</span>
|
|
|
|
</PlusPanel>
|
2020-03-25 18:58:19 +00:00
|
|
|
<MinusPanel name="DOWN" onClick={this.decreaseIntensity}>
|
2020-03-25 16:20:53 +00:00
|
|
|
<span>−</span>
|
|
|
|
</MinusPanel>
|
|
|
|
</ButtonDimmerContainer>
|
|
|
|
);
|
|
|
|
}
|
2020-03-15 14:50:25 +00:00
|
|
|
}
|
|
|
|
|
2020-03-25 11:13:15 +00:00
|
|
|
export class KnobDimmer extends Component {
|
2020-03-25 16:20:53 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
pointingDevices: [],
|
|
|
|
value: 1,
|
|
|
|
};
|
|
|
|
}
|
2020-03-23 20:24:17 +00:00
|
|
|
|
2020-03-25 18:58:19 +00:00
|
|
|
setIntensity = (newValue) => {
|
|
|
|
let val = Math.round(newValue * 100) <= 1 ? 1 : Math.round(newValue * 100);
|
|
|
|
let data = {
|
|
|
|
id: this.props.device.id,
|
|
|
|
intensity: val,
|
|
|
|
};
|
|
|
|
call.deviceUpdate(data, "knobDimmer/dimTo").then((res) => {
|
|
|
|
if (res.status === 200) {
|
|
|
|
this.setState({
|
|
|
|
value: val,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.setState({
|
|
|
|
value: 1,
|
|
|
|
});
|
|
|
|
}
|
2020-03-23 20:24:17 +00:00
|
|
|
|
2020-03-25 16:20:53 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div style={knobContainer}>
|
|
|
|
<Settings
|
|
|
|
deviceId={this.props.device.id}
|
|
|
|
edit={this.props.edit}
|
|
|
|
onChangeData={(id, newSettings) =>
|
|
|
|
this.props.onChangeData(id, newSettings)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<CircularInput
|
|
|
|
style={KnobDimmerStyle}
|
2020-03-25 18:58:19 +00:00
|
|
|
value={+(Math.round(this.state.value / 100 + "e+2") + "e-2")}
|
|
|
|
onChange={this.setIntensity}
|
2020-03-25 16:20:53 +00:00
|
|
|
>
|
|
|
|
<text
|
|
|
|
style={textStyle}
|
|
|
|
x={100}
|
|
|
|
y={120}
|
|
|
|
textAnchor="middle"
|
|
|
|
dy="0.3em"
|
|
|
|
fontWeight="bold"
|
|
|
|
>
|
2020-03-25 23:15:02 +00:00
|
|
|
{this.props.device.name} ({this.props.device.id})
|
2020-03-25 16:20:53 +00:00
|
|
|
</text>
|
|
|
|
<CircularProgress
|
|
|
|
style={{ ...KnobProgress, opacity: this.state.value + 0.1 }}
|
|
|
|
/>
|
|
|
|
<CircularThumb style={CircularThumbStyle} />
|
|
|
|
<ThumbText color={"#1a2849"} />
|
|
|
|
</CircularInput>
|
|
|
|
<img alt="Knob Icon" style={knobIcon} src="/img/knobDimmer.svg" />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2020-03-15 14:50:25 +00:00
|
|
|
}
|