fixed scenes
This commit is contained in:
parent
af0c157205
commit
a7f05f0200
9 changed files with 176 additions and 183 deletions
|
@ -8,13 +8,14 @@ import { Grid, Button } from "semantic-ui-react";
|
|||
class ScenesPanel extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.applyScene = this.applyScene.bind(this);
|
||||
}
|
||||
|
||||
applyScene() {
|
||||
console.log(this.props.activeScene);
|
||||
this.props.sceneApply(this.props.activeScene);
|
||||
this.props.sceneApply(this.props.activeScene).then(() => {
|
||||
alert("Scene applied.");
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
|
|
|
@ -6,7 +6,10 @@ import { connect } from "react-redux";
|
|||
class Curtain extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = { intensity: this.props.stateOrDevice.intensity, timeout: null };
|
||||
this.state = {
|
||||
intensity: this.props.stateOrDevice.intensity,
|
||||
timeout: null,
|
||||
};
|
||||
|
||||
this.setIntensity = this.setIntensity.bind(this);
|
||||
}
|
||||
|
@ -27,7 +30,10 @@ class Curtain extends Component {
|
|||
.saveDevice({ ...this.props.stateOrDevice, on })
|
||||
.catch((err) => console.error("curtains update error", err));
|
||||
} else {
|
||||
this.props.updateState({ id: this.props.sceneState.id, on: on },this.props.sceneState.kind);
|
||||
this.props.updateState(
|
||||
{ id: this.props.stateOrDevice.id, on: on },
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -57,7 +63,10 @@ class Curtain extends Component {
|
|||
.saveDevice({ ...this.props.stateOrDevice, intensity })
|
||||
.catch((err) => console.error("curtain update error", err));
|
||||
} else {
|
||||
this.props.updateState({ id: this.props.sceneState.id, intensity: intensity },this.props.sceneState.kind);
|
||||
this.props.updateState(
|
||||
{ id: this.props.stateOrDevice.id, intensity: intensity },
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -71,7 +80,6 @@ class Curtain extends Component {
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
///*this took me way too much more time than it should have*/
|
||||
|
||||
handleChange = (a) => {
|
||||
|
@ -100,7 +108,6 @@ class Curtain extends Component {
|
|||
max="100"
|
||||
/>
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -77,60 +77,28 @@ class Device extends React.Component {
|
|||
/>
|
||||
);
|
||||
case "motionSensor":
|
||||
return (
|
||||
<Sensor
|
||||
tab={this.props.tab}
|
||||
sceneState={this.props.sceneState}
|
||||
id={this.props.stateOrDevice.id}
|
||||
/>
|
||||
);
|
||||
return <Sensor tab={this.props.tab} id={this.props.stateOrDevice.id} />;
|
||||
case "buttonDimmer":
|
||||
return (
|
||||
<ButtonDimmer
|
||||
tab={this.props.tab}
|
||||
sceneState={this.props.sceneState}
|
||||
id={this.props.stateOrDevice.id}
|
||||
/>
|
||||
<ButtonDimmer tab={this.props.tab} id={this.props.stateOrDevice.id} />
|
||||
);
|
||||
case "knobDimmer":
|
||||
return (
|
||||
<KnobDimmer
|
||||
tab={this.props.tab}
|
||||
sceneState={this.props.sceneState}
|
||||
id={this.props.stateOrDevice.id}
|
||||
/>
|
||||
<KnobDimmer tab={this.props.tab} id={this.props.stateOrDevice.id} />
|
||||
);
|
||||
case "smartPlug":
|
||||
return (
|
||||
<SmartPlug
|
||||
tab={this.props.tab}
|
||||
sceneState={this.props.sceneState}
|
||||
id={this.props.stateOrDevice.id}
|
||||
/>
|
||||
<SmartPlug tab={this.props.tab} id={this.props.stateOrDevice.id} />
|
||||
);
|
||||
case "switch":
|
||||
return (
|
||||
<Switcher
|
||||
tab={this.props.tab}
|
||||
sceneState={this.props.sceneState}
|
||||
id={this.props.stateOrDevice.id}
|
||||
/>
|
||||
<Switcher tab={this.props.tab} id={this.props.stateOrDevice.id} />
|
||||
);
|
||||
case "dimmableLight":
|
||||
return (
|
||||
<Light
|
||||
id={this.props.stateOrDevice.id}
|
||||
sceneState={this.props.sceneState}
|
||||
tab={this.props.tab}
|
||||
/>
|
||||
);
|
||||
return <Light id={this.props.stateOrDevice.id} tab={this.props.tab} />;
|
||||
case "securityCamera":
|
||||
return (
|
||||
<Videocam
|
||||
id={this.props.stateOrDevice.id}
|
||||
sceneState={this.props.sceneState}
|
||||
tab={this.props.tab}
|
||||
/>
|
||||
<Videocam id={this.props.stateOrDevice.id} tab={this.props.tab} />
|
||||
);
|
||||
default:
|
||||
//throw new Error("Device type unknown");
|
||||
|
@ -171,11 +139,12 @@ class Device extends React.Component {
|
|||
</Grid.Column>
|
||||
) : (
|
||||
<Grid.Column textAlign="center">
|
||||
<Header as="h3">
|
||||
{this.props.stateOrDevice
|
||||
? this.props.stateOrDevice.name
|
||||
: ""}
|
||||
</Header>
|
||||
<Header as="h3">{this.props.device.name}</Header>
|
||||
{this.props.tab === "Scenes" ? (
|
||||
<Header as="h4">{this.props.roomName}</Header>
|
||||
) : (
|
||||
""
|
||||
)}
|
||||
<Button
|
||||
color="red"
|
||||
icon
|
||||
|
@ -188,6 +157,14 @@ class Device extends React.Component {
|
|||
</Grid.Column>
|
||||
)}
|
||||
</Grid>
|
||||
{this.props.stateOrDevice ? (
|
||||
<DeviceSettingsModal
|
||||
ref={this.modalRef}
|
||||
id={this.props.stateOrDevice.id}
|
||||
/>
|
||||
) : (
|
||||
""
|
||||
)}
|
||||
</Segment>
|
||||
);
|
||||
} else {
|
||||
|
@ -211,23 +188,22 @@ const mapStateToProps = (state, ownProps) => ({
|
|||
if (state.active.activeTab === "Devices") {
|
||||
return state.devices[ownProps.id];
|
||||
} else {
|
||||
/*console.log(
|
||||
state.sceneStates,
|
||||
ownProps.id,
|
||||
state.sceneStates[ownProps.id]
|
||||
);*/
|
||||
return state.sceneStates[ownProps.id];
|
||||
}
|
||||
},
|
||||
get sceneState() {
|
||||
if (state.active.activeTab === "Scenes") {
|
||||
const array = [
|
||||
...state.scenes[state.active.activeScene].sceneStates,
|
||||
].sort();
|
||||
const deviceState = array.filter((e) => e.id === ownProps.id)[0];
|
||||
return deviceState;
|
||||
get device() {
|
||||
if (state.active.activeTab === "Devices") {
|
||||
return state.devices[ownProps.id];
|
||||
} else {
|
||||
return null;
|
||||
return state.devices[state.sceneStates[ownProps.id].deviceId];
|
||||
}
|
||||
},
|
||||
get roomName() {
|
||||
if (state.active.activeTab === "Scenes") {
|
||||
const device = state.devices[state.sceneStates[ownProps.id].deviceId];
|
||||
return state.rooms[device.roomId].name;
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
},
|
||||
get type() {
|
||||
|
|
|
@ -66,6 +66,7 @@ class DeviceSettingsModal extends Component {
|
|||
super(props);
|
||||
this.state = {
|
||||
open: false,
|
||||
name: this.props.device.name,
|
||||
};
|
||||
|
||||
this.updateDevice = this.updateDevice.bind(this);
|
||||
|
@ -111,8 +112,7 @@ class DeviceSettingsModal extends Component {
|
|||
<Modal.Header>Settings of {this.props.device.name}</Modal.Header>
|
||||
<Modal.Content>
|
||||
<SettingsForm
|
||||
name={this.props.device.name}
|
||||
type={this.props.device.type}
|
||||
name={this.state.name}
|
||||
removeDevice={this.deleteDevice}
|
||||
saveFunction={this.updateDevice}
|
||||
/>
|
||||
|
|
|
@ -118,8 +118,8 @@ class Light extends Component {
|
|||
.catch((err) => console.error("regular light update error", err));
|
||||
} else {
|
||||
this.props.updateState(
|
||||
{ id: this.props.sceneState.id, intensity: intensity },
|
||||
this.props.sceneState.kind
|
||||
{ id: this.props.stateOrDevice.id, intensity: intensity },
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -73,13 +73,16 @@ class Sensor extends Component {
|
|||
this.props.stateOrDevice.kind === "motionSensor" &&
|
||||
this.props.stateOrDevice.detected !== prevProps.stateOrDevice.detected
|
||||
) {
|
||||
this.setState({ motion: true, detected: this.props.stateOrDevice.detected });
|
||||
this.setState({
|
||||
motion: true,
|
||||
detected: this.props.stateOrDevice.detected,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
if (this.props.stateOrDevice.kind === "sensor") {
|
||||
switch (this.props.device.sensor) {
|
||||
switch (this.props.stateOrDevice.sensor) {
|
||||
case "TEMPERATURE":
|
||||
this.units = "ºC";
|
||||
this.colors = temperatureSensorColors;
|
||||
|
|
|
@ -38,7 +38,10 @@ class SmartPlug extends Component {
|
|||
.saveDevice({ ...this.props.stateOrDevice, on })
|
||||
.catch((err) => console.error("smart plug update error", err));
|
||||
} else {
|
||||
this.props.updateState({ id: this.props.sceneState.id, on: on},this.props.sceneState.kind);
|
||||
this.props.updateState(
|
||||
{ id: this.props.stateOrDevice.id, on: on },
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -70,8 +70,8 @@ class Thermostats extends Component {
|
|||
.catch((err) => console.error("thermostat update error", err));
|
||||
} else {
|
||||
this.props.updateState(
|
||||
{ id: this.props.sceneState.id, turnOn: turnOn },
|
||||
this.props.sceneState.kind
|
||||
{ id: this.props.stateOrDevice.id, turnOn: turnOn },
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -84,8 +84,8 @@ class Thermostats extends Component {
|
|||
.catch((err) => console.error("thermostat update error", err));
|
||||
} else {
|
||||
this.props.updateState(
|
||||
{ id: this.props.sceneState.id, on: on },
|
||||
this.props.sceneState.kind
|
||||
{ id: this.props.stateOrDevice.id, on: on },
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
};
|
||||
|
@ -98,8 +98,11 @@ class Thermostats extends Component {
|
|||
.catch((err) => console.error("thermostat update error", err));
|
||||
} else {
|
||||
this.props.updateState(
|
||||
{ id: this.props.sceneState.id, targetTemperature: targetTemperature },
|
||||
this.props.sceneState.kind
|
||||
{
|
||||
id: this.props.stateOrDevice.id,
|
||||
targetTemperature: targetTemperature,
|
||||
},
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -130,10 +133,10 @@ class Thermostats extends Component {
|
|||
} else {
|
||||
this.props.updateState(
|
||||
{
|
||||
id: this.props.sceneState.id,
|
||||
id: this.props.stateOrDevice.id,
|
||||
internalSensorTemperature: internalSensorTemperature,
|
||||
},
|
||||
this.props.sceneState.kind
|
||||
this.props.stateOrDevice.kind
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -418,7 +418,7 @@ export const RemoteService = {
|
|||
let url = `/scene/${id}/apply`;
|
||||
|
||||
return Endpoint.post(url)
|
||||
.then((res) => dispatch(actions.sceneApply(res.data)))
|
||||
.then((res) => dispatch(actions.deviceOperationUpdate(res.data)))
|
||||
.catch((err) => {
|
||||
console.warn("scene apply error", err);
|
||||
throw new RemoteError(["Network error"]);
|
||||
|
|
Loading…
Reference in a new issue