fix navbar and devicePanel

This commit is contained in:
britea 2020-03-18 12:46:28 +01:00
parent 707a5630fc
commit 7a80e0562b
9 changed files with 34 additions and 71 deletions

View File

@ -80,12 +80,12 @@ class App extends Component {
}; };
logout() { logout() {
console.log("logout")
this.setState({ this.setState({
loggedIn : false, loggedIn : false,
}); });
localStorage.removeItem("token"); localStorage.removeItem("token");
this.props.history.push("/");
}; };
render() { render() {

View File

@ -74,7 +74,7 @@ export var call = {
if (!token){ if (!token){
token = tkn; token = tkn;
} }
return axios.get(config + 'room/' + id + '/device' , { headers: { Authorization : "Bearer " + token } }) return axios.get(config + 'room/' + id + '/devices' , { headers: { Authorization : "Bearer " + token } })
.then(res => { .then(res => {
return res; return res;
}).catch(err => { }).catch(err => {

View File

@ -29,7 +29,7 @@ const HeaderExampleIconProp = () => (
const GridExampleInverted = () => ( const GridExampleInverted = (props) => (
<Grid columns='equal' divided inverted padded > <Grid columns='equal' divided inverted padded >
<Grid.Row color='black' textAlign='center'> <Grid.Row color='black' textAlign='center'>
<Grid.Column width={2}> <Grid.Column width={2}>
@ -57,7 +57,7 @@ const GridExampleInverted = () => (
</Dropdown.Item> </Dropdown.Item>
<Dropdown.Item>See profile...</Dropdown.Item> <Dropdown.Item>See profile...</Dropdown.Item>
<Dropdown.Divider /> <Dropdown.Divider />
<Dropdown.Item>Logout</Dropdown.Item> <Dropdown.Item onClick={props.logout }>Logout</Dropdown.Item>
</Dropdown.Menu> </Dropdown.Menu>
</Dropdown> </Dropdown>
</Grid.Column> </Grid.Column>
@ -67,9 +67,10 @@ const GridExampleInverted = () => (
export default class MyHeader extends React.Component { export default class MyHeader extends React.Component {
render() { render() {
console.log(this.props)
return ( return (
<div> <div>
<GridExampleInverted /> <GridExampleInverted logout={this.props.logout} />
</div> </div>
); );
} }

View File

@ -7,47 +7,6 @@ import {checkMaxLength, DEVICE_NAME_MAX_LENGTH} from "./devices/constants";
import DeviceType from './devices/DeviceTypeController'; import DeviceType from './devices/DeviceTypeController';
import NewDevice from "./devices/NewDevice"; import NewDevice from "./devices/NewDevice";
/* const devices = [
{
"id" : 1,
"name": "Bedroom Light",
"type" : "light",
"hasIntensity" : true,
"intensityLevel" : 0.20,
...LightDevice
},
{
"id" : 2,
"name": "Bathroom Light",
"type" : "light",
...LightDevice
},
{
"id" : 3,
"name": "Desktop Light",
"type" : "light",
...LightDevice
},
{
"id" : 4,
"name": "Entrance Light",
"type" : "light",
...LightDevice
},
{
"id" : 5,
"name": "Smart Plug",
"type" : "smartplug",
...SmartPlugDevice
},
{
"id" : 6,
"name": "Bedroom Thermometer",
"type" : "temperature-sensor",
},
];*/
export default class DevicePanel extends Component { export default class DevicePanel extends Component {
constructor(props) { constructor(props) {
@ -61,6 +20,7 @@ export default class DevicePanel extends Component {
editModeController = (e) => this.setState((prevState) => ({ editMode: !prevState.editMode })); editModeController = (e) => this.setState((prevState) => ({ editMode: !prevState.editMode }));
changeDeviceData = (deviceId, newSettings) => { changeDeviceData = (deviceId, newSettings) => {
console.log(newSettings.name, " <-- new name --> ", deviceId ); console.log(newSettings.name, " <-- new name --> ", deviceId );
this.state.devices.map(device => { this.state.devices.map(device => {
if(device.id === deviceId){ if(device.id === deviceId){
@ -90,13 +50,13 @@ export default class DevicePanel extends Component {
return ( return (
<div style={panelStyle}> <div style={panelStyle}>
<button style={editButtonStyle} onClick={this.editModeController}>Edit</button> <button style={editButtonStyle} onClick={this.editModeController}>Edit</button>
<Grid doubling divided="vertically"> <Grid doubling columns={this.props.devices.length > 0 ? this.props.devices.length : 1} divided="vertically">
{ {
this.props.devices ? this.props.devices ?
this.props.devices.map((e, i) => { this.props.devices.map((e, i) => {
return ( return (
<Grid.Column> <Grid.Column key={i}>
<DeviceType type={e.type} onChangeData={this.changeDeviceData} device={e} edit={this.state.editMode}/> <DeviceType type={e.kind} onChangeData={this.changeDeviceData} device={e} edit={this.state.editMode}/>
</Grid.Column> </Grid.Column>
) )
}) })

View File

@ -25,6 +25,7 @@ export default class Light extends Component {
} }
onClickDevice = () => { onClickDevice = () => {
this.setState((prevState) => ({turnedOn: !prevState.turnedOn})); this.setState((prevState) => ({turnedOn: !prevState.turnedOn}));
}; };

View File

@ -19,6 +19,7 @@ export const panelStyle = {
height: "100%", height: "100%",
width: "auto", width: "auto",
padding: "3rem", padding: "3rem",
color: "#000"
}; };
export const editModeStyle = { export const editModeStyle = {

View File

@ -106,7 +106,7 @@ export default class ModalWindow extends Component {
<div style={spaceDiv}> <div style={spaceDiv}>
<p>Select an icon:</p> <p>Select an icon:</p>
{this.props.selectedIcon == "new" ? "home" : this.props.idRoom.icon } {this.props.type == "new" ? "home" : this.props.idRoom.icon }
<SelectIcons updateIcon={this.updateIcon} currentIcon={this.state.selectedIcon}/> <SelectIcons updateIcon={this.updateIcon} currentIcon={this.state.selectedIcon}/>
</div> </div>

View File

@ -31,10 +31,11 @@ export default class Dashboard extends Component{
componentDidMount() { componentDidMount() {
call.getAllRooms(this.props.tkn) call.getAllRooms(this.props.tkn)
.then(res => { .then(res => {
console.log(res.data.length);
res.data.forEach((e) => { res.data.forEach((e) => {
this.setState(state => ({ this.setState({
rooms: state.rooms.concat([e]) rooms: res.data
})); });
}); });
}).catch(err => { }).catch(err => {
console.log(err); console.log(err);
@ -42,10 +43,8 @@ export default class Dashboard extends Component{
call.getAllDevices(this.props.tkn) call.getAllDevices(this.props.tkn)
.then(res => { .then(res => {
console.log(res); console.log(res);
res.data.forEach((e) => { this.setState({
this.setState(state => ({ devices : res.data
devices: state.devices.concat([e])
}));
}); });
}).catch(err => { }).catch(err => {
console.log(err); console.log(err);
@ -75,15 +74,15 @@ export default class Dashboard extends Component{
}); });
} }
handleItemClick(el) { handleItemClick(id) {
// el -> obj of name and id // el -> obj of name and id
//da fare richiesta get della room e settare activeItem //da fare richiesta get della room e settare activeItem
call.getAllDevicesByRoom(el.id, this.props.tkn) call.getAllDevicesByRoom(id, this.props.tkn)
.then(res => { .then(res => {
res.data.forEach((e) => { res.data.forEach((e) => {
this.setState(state => ({ this.setState({
devices: state.devices.concat([e]) devices: res.data
})); });
}); });
}).catch(err => { }).catch(err => {
console.log(err); console.log(err);
@ -96,7 +95,7 @@ export default class Dashboard extends Component{
<Grid > <Grid >
<Grid.Row color='black'> <Grid.Row color='black'>
<Grid.Column> <Grid.Column>
<MyHeader /> <MyHeader logout={this.props.logout} />
</Grid.Column> </Grid.Column>
</Grid.Row> </Grid.Row>
<Grid.Row color='black'> <Grid.Row color='black'>

View File

@ -17,15 +17,15 @@ class Navbar extends Component {
this.setState((prevState) => ({ editMode: !prevState.editMode })); this.setState((prevState) => ({ editMode: !prevState.editMode }));
}; };
handleClick = (e, { i }) => { handleClick = (e, {id}) => {
this.setState({ activeItem: e.name, console.log(id);
edited: i this.setState({ activeItem: id,
}); });
this.props.handleItemClick(e) this.props.handleItemClick(id)
} }
render(){ render(){
const { activeItem } = this.state //const { activeItem } = this.state
return ( return (
<div> <div>
<Segment.Group> <Segment.Group>
@ -37,8 +37,9 @@ class Navbar extends Component {
<Grid.Row color='black'> <Grid.Row color='black'>
<Menu inverted fluid vertical> <Menu inverted fluid vertical>
<Menu.Item <Menu.Item
key={-1}
name='Home' name='Home'
active={activeItem === 'Home'} active={this.state.activeItem === 'Home'}
onClick={this.handleClick} onClick={this.handleClick}
> >
<Grid> <Grid>
@ -61,7 +62,7 @@ class Navbar extends Component {
id={e.id} id={e.id}
key={i} key={i}
name={e.name} name={e.name}
active={activeItem === e.name} active={this.state.activeItem === e.id}
onClick={this.handleClick} onClick={this.handleClick}
> >
<Grid> <Grid>
@ -87,7 +88,7 @@ class Navbar extends Component {
<Menu.Item <Menu.Item
name='newM' name='newM'
active={activeItem === 'Plus'} active={this.state.activeItem === 'newM'}
> >
<Grid> <Grid>