frontend/smart-hut/src/components/dashboard/NewSceneDevice.js

188 lines
4.8 KiB
JavaScript
Raw Normal View History

2020-04-16 13:15:33 +00:00
import React, { Component } from "react";
2020-04-16 15:07:56 +00:00
import { Button, Modal, Icon, Image, Form, Dropdown } from "semantic-ui-react";
2020-04-16 13:15:33 +00:00
import { connect } from "react-redux";
import { RemoteService } from "../../remote";
import styled from "styled-components";
//import { appActions } from "../../storeActions";
const StyledDiv = styled.div`
background-color: #505bda;
padding: 3rem;
width: 10rem;
height: 10rem;
border-radius: 100%;
border: none;
position: relative;
box-shadow: 3px 2px 10px 5px #ccc;
transition: all 0.3s ease-out;
:hover {
background-color: #4345d9;
}
:active {
transform: translate(0.3px, 0.8px);
box-shadow: 0.5px 0.5px 7px 3.5px #ccc;
}
`;
class NewSceneDevice extends Component {
constructor(props) {
super(props);
this.state = {
openModal: false,
sceneDevices: this.props.scene ? this.props.scene.sceneStates : {},
2020-04-16 15:07:56 +00:00
deviceName: "",
availableDevices: [],
2020-04-16 13:15:33 +00:00
};
2020-04-16 15:07:56 +00:00
this.getDevices();
//this.getSceneStates();
this.availableDevices();
//console.log(this.state);
2020-04-16 15:07:56 +00:00
this.setSceneState = this.setSceneState.bind(this);
this.createState = this.createState.bind(this);
this.availableDevices = this.availableDevices.bind(this);
2020-04-16 15:07:56 +00:00
}
getDevices() {
this.props
.fetchDevices()
.catch((err) => console.error(`error fetching devices:`, err));
2020-04-16 13:15:33 +00:00
}
// getSceneStates() {
// this.props
// .fetchStates(this.props.activeScene)
// .catch((err) => console.error(`error fetching states`, err));
// }
2020-04-16 13:15:33 +00:00
handleOpen = () => {
this.setState({ openModal: true });
};
2020-05-02 20:37:20 +00:00
2020-04-16 13:15:33 +00:00
handleClose = () => {
this.setState({ openModal: false });
};
availableDevices() {
let availableDevices = [];
this.props.devices.forEach((e) => {
if (
Object.values(this.props.sceneStates).filter((d) => e.id === d.deviceId)
.length < 1
) {
if (e.flowType === "OUTPUT") {
availableDevices.push({
key: e.id,
text: e.name,
value: e.id,
});
}
} else {
//console.log("NOT FOUND", e);
}
});
this.setState({ availableDevices: availableDevices });
//return availableDevices;
}
2020-04-16 13:15:33 +00:00
resetState = () => {
this.setState(this.baseState);
this.handleClose();
};
setSceneState(e, d) {
2020-04-16 15:07:56 +00:00
this.setState({ devicesAttached: d.value });
}
createState() {
2020-05-01 17:55:08 +00:00
for (let i = 0; i < this.state.devicesAttached.length; i++) {
let device = this.props.devices.filter(
(e) => this.state.devicesAttached[i] === e.id
);
let data = {
sceneId: this.props.activeScene,
id: device[0].id,
kind: device[0].kind,
};
this.props
.saveState(data)
.catch((err) => console.error("error in creating state", err));
}
this.resetState();
}
2020-04-16 13:15:33 +00:00
render() {
return (
<Modal
closeIcon
open={this.state.openModal}
onClose={this.resetState}
trigger={
2020-05-02 11:58:02 +00:00
<StyledDiv
onClick={this.handleOpen}
style={{
position: "relative",
top: "calc(50% - 5rem)",
left: "calc(50% - 5rem)",
}}
>
2020-04-16 13:15:33 +00:00
<Image src="/img/add.svg" style={{ filter: "invert()" }} />
</StyledDiv>
}
centered={true}
>
<Modal.Header>Add a New Scene State</Modal.Header>
2020-04-16 15:07:56 +00:00
<Modal.Content>
<Form>
<Form.Field style={{ marginTop: "1rem" }}>
<label>Select devices you want to attach: </label>
<Dropdown
name="scene devices"
placeholder="Select Devices"
fluid
multiple
onChange={this.setSceneState}
onClick={() => this.availableDevices()}
options={this.state.availableDevices}
2020-04-16 15:07:56 +00:00
/>
</Form.Field>
</Form>
</Modal.Content>
2020-04-16 13:15:33 +00:00
<Modal.Actions>
<Button
onClick={this.createState}
2020-04-16 13:15:33 +00:00
color="blue"
icon
labelPosition="right"
>
<Icon name="up arrow" />
Finish
</Button>
</Modal.Actions>
</Modal>
);
}
}
const mapStateToProps = (state, _) => ({
devices: Object.values(state.devices),
get sceneStates() {
if (state.active.activeScene !== -1) {
const stateArray = [
...state.scenes[state.active.activeScene].sceneStates,
].sort();
console.log(state.scenes[state.active.activeScene]);
return stateArray.map((id) => state.sceneStates[id]);
} else {
return [];
}
},
2020-04-16 15:07:56 +00:00
activeScene: state.active.activeScene,
2020-04-16 13:15:33 +00:00
});
const NewSceneDeviceContainer = connect(
mapStateToProps,
RemoteService
)(NewSceneDevice);
export default NewSceneDeviceContainer;