display account information

This commit is contained in:
Delucse
2020-12-07 20:12:33 +01:00
parent 80fd3b83a9
commit 646254017c
4 changed files with 180 additions and 9 deletions
+129
View File
@@ -0,0 +1,129 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import Breadcrumbs from '../Breadcrumbs';
import Alert from '../Alert';
import Grid from '@material-ui/core/Grid';
import List from '@material-ui/core/List';
import ListItem from '@material-ui/core/ListItem';
import ListItemIcon from '@material-ui/core/ListItemIcon';
import ListItemText from '@material-ui/core/ListItemText';
import Divider from '@material-ui/core/Divider';
import Paper from '@material-ui/core/Paper';
import Link from '@material-ui/core/Link';
import Typography from '@material-ui/core/Typography';
import Tooltip from '@material-ui/core/Tooltip';
import { faUser, faAt, faMapMarkerAlt, faCloudSunRain, faBox } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
export class Account extends Component {
render(){
const {user} = this.props;
return(
<div>
<Breadcrumbs content={[{ link: '/user', title: 'Account' }]} />
<h1>Account</h1>
<Alert>
Alle Angaben stammen von <Link color='primary' rel="noreferrer" target="_blank" href={'https://opensensemap.org/'}>openSenseMap</Link> und können dort verwaltet werden.
</Alert>
<Paper style={{width: 'max-content', maxWidth: '100%'}}>
<List>
<ListItem>
<Tooltip title='Nutzername'>
<ListItemIcon>
<FontAwesomeIcon icon={faUser} />
</ListItemIcon>
</Tooltip>
<ListItemText primary={user.name} />
</ListItem>
<ListItem>
<Tooltip title='Email'>
<ListItemIcon>
<FontAwesomeIcon icon={faAt} />
</ListItemIcon>
</Tooltip>
<ListItemText primary={user.email} />
</ListItem>
</List>
</Paper>
<Divider style={{marginBottom: '16px', marginTop: '16px'}}/>
<div style={{marginBottom: '8px'}}>
{this.props.user.boxes.length < 1 ?
<Typography>
Du hast noch keine senseBox registriert. Besuche <Link color='primary' rel="noreferrer" target="_blank" href={'https://opensensemap.org/'}>openSenseMap</Link> um eine senseBox zu registrieren.
</Typography>
: <Typography style={{fontWeight: 'bold', fontSize: '1.1rem'}}>
Du hast {this.props.user.boxes.length} {this.props.user.boxes.length === 1 ? 'senseBox' : 'senseBoxen'} registriert:
</Typography>}
</div>
<Grid container spacing={2}>
{this.props.user.boxes.map((box, i) => {
var sensors = box.sensors.map(sensor => sensor.title );
return (
<Grid item xs={12} sm={6} md={4} xl={3} key={i}>
<Link rel="noreferrer" target="_blank" href={`https://opensensemap.org/explore/${box._id}`} color="primary" style={{ textDecoration: 'none', color: 'inherit' }}>
<Paper>
<List>
<ListItem>
<Typography style={{fontWeight: 'bold', fontSize: '1.6rem'}}>{box.name}</Typography>
</ListItem>
<ListItem>
<Tooltip title='Modell'>
<ListItemIcon>
<FontAwesomeIcon icon={faBox} />
</ListItemIcon>
</Tooltip>
<div>
<Typography style={{fontWeight: 'bold', marginRight: '4px'}}>Modell: </Typography>
<Typography>{box.model}</Typography>
</div>
</ListItem>
<ListItem>
<Tooltip title='Standort'>
<ListItemIcon>
<FontAwesomeIcon icon={faMapMarkerAlt} />
</ListItemIcon>
</Tooltip>
<div>
<Typography style={{fontWeight: 'bold', marginRight: '4px'}}>Standort: </Typography>
<Typography>{`${box.exposure} (lon: ${box.currentLocation.coordinates[0]}, lat: ${box.currentLocation.coordinates[1]})`}</Typography>
</div>
</ListItem>
<ListItem>
<Tooltip title='Sensoren'>
<ListItemIcon>
<FontAwesomeIcon icon={faCloudSunRain} />
</ListItemIcon>
</Tooltip>
<div>
<Typography style={{fontWeight: 'bold', marginRight: '4px'}}>Sensoren: </Typography>
<Typography>{sensors.join(', ')}</Typography>
</div>
</ListItem>
</List>
</Paper>
</Link>
</Grid>
)
})}
</Grid>
</div>
);
}
}
Account.propTypes = {
user: PropTypes.object.isRequired
};
const mapStateToProps = state => ({
user: state.auth.user
});
export default connect(mapStateToProps, null)(Account);