142 lines
5.1 KiB
JavaScript
142 lines
5.1 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { connect } from 'react-redux';
|
|
import { getProjects, resetProject } from '../../actions/projectActions';
|
|
import { clearMessages } from '../../actions/messageActions';
|
|
|
|
import axios from 'axios';
|
|
import { Link, withRouter } from 'react-router-dom';
|
|
|
|
import Breadcrumbs from '../Breadcrumbs';
|
|
import BlocklyWindow from '../Blockly/BlocklyWindow';
|
|
import Snackbar from '../Snackbar';
|
|
|
|
import { withStyles } from '@material-ui/core/styles';
|
|
import Grid from '@material-ui/core/Grid';
|
|
import Paper from '@material-ui/core/Paper';
|
|
import Divider from '@material-ui/core/Divider';
|
|
import Typography from '@material-ui/core/Typography';
|
|
import Backdrop from '@material-ui/core/Backdrop';
|
|
import CircularProgress from '@material-ui/core/CircularProgress';
|
|
|
|
const styles = (theme) => ({
|
|
link: {
|
|
color: theme.palette.primary.main,
|
|
textDecoration: 'none',
|
|
'&:hover': {
|
|
color: theme.palette.primary.main,
|
|
textDecoration: 'underline'
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
class ProjectHome extends Component {
|
|
|
|
state = {
|
|
snackbar: false,
|
|
type: '',
|
|
key: '',
|
|
message: ''
|
|
}
|
|
|
|
componentDidMount() {
|
|
var type = this.props.location.pathname.replace('/','');
|
|
this.props.getProjects(type);
|
|
if(this.props.message){
|
|
if(this.props.message.id === 'PROJECT_DELETE_SUCCESS'){
|
|
this.setState({ snackbar: true, key: Date.now(), message: `Dein Projekt wurde erfolgreich gelöscht.`, type: 'success' });
|
|
}
|
|
else if(this.props.message.id === 'GALLERY_DELETE_SUCCESS'){
|
|
this.setState({ snackbar: true, key: Date.now(), message: `Dein Galerie-Projekt wurde erfolgreich gelöscht.`, type: 'success' });
|
|
}
|
|
else if(this.props.message.id === 'GET_PROJECT_FAIL'){
|
|
this.setState({ snackbar: true, key: Date.now(), message: `Dein angefragtes ${type === 'gallery' ? 'Galerie-':''}Projekt konnte nicht gefunden werden.`, type: 'error' });
|
|
}
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(props) {
|
|
if(props.location.pathname !== this.props.location.pathname){
|
|
this.setState({snackbar: false});
|
|
this.props.getProjects(this.props.location.pathname.replace('/',''));
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.props.resetProject();
|
|
this.props.clearMessages();
|
|
}
|
|
|
|
render() {
|
|
var data = this.props.location.pathname === '/project' ? 'Projekte' : 'Galerie';
|
|
return (
|
|
<div>
|
|
<Breadcrumbs content={[{ link: this.props.location.pathname, title: data }]} />
|
|
|
|
<h1>{data}</h1>
|
|
{this.props.progress ?
|
|
<Backdrop open invisible>
|
|
<CircularProgress color="primary" />
|
|
</Backdrop>
|
|
:
|
|
<div>
|
|
{this.props.projects.length > 0 ?
|
|
<Grid container spacing={2}>
|
|
{this.props.projects.map((project, i) => {
|
|
return (
|
|
<Grid item xs={12} sm={6} md={4} xl={3} key={i}>
|
|
<Link to={`/${data === 'Projekte' ? 'project' : 'gallery'}/${project._id._id ? project._id._id : project._id}`} style={{ textDecoration: 'none', color: 'inherit' }}>
|
|
<Paper style={{ padding: '1rem', position: 'relative', overflow: 'hidden' }}>
|
|
<h3 style={{marginTop: 0}}>{project.title}</h3>
|
|
<Divider style={{marginTop: '1rem', marginBottom: '10px'}}/>
|
|
<BlocklyWindow
|
|
svg
|
|
blockDisabled
|
|
initialXml={project.xml}
|
|
/>
|
|
<Typography variant='body2' style={{fontStyle: 'italic', margin: 0, marginTop: '-30px'}}>{project.description}</Typography>
|
|
</Paper>
|
|
</Link>
|
|
</Grid>
|
|
)
|
|
})}
|
|
</Grid>
|
|
: <div>
|
|
<Typography style={{marginBottom: '10px'}}>Es sind aktuell keine Projekte vorhanden.</Typography>
|
|
{this.props.location.pathname.replace('/','') === 'project' ?
|
|
<Typography>Erstelle jetzt dein <Link to={'/'} className={this.props.classes.link}>eigenes Projekt</Link> oder lasse dich von Projektbeispielen in der <Link to={'/gallery'} className={this.props.classes.link}>Galerie</Link> inspirieren.</Typography>
|
|
: null}
|
|
</div>
|
|
}
|
|
</div>
|
|
}
|
|
<Snackbar
|
|
open={this.state.snackbar}
|
|
message={this.state.message}
|
|
type={this.state.type}
|
|
key={this.state.key}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
}
|
|
|
|
ProjectHome.propTypes = {
|
|
getProjects: PropTypes.func.isRequired,
|
|
resetProject: PropTypes.func.isRequired,
|
|
clearMessages: PropTypes.func.isRequired,
|
|
projects: PropTypes.array.isRequired,
|
|
progress: PropTypes.bool.isRequired,
|
|
message: PropTypes.object.isRequired
|
|
};
|
|
|
|
const mapStateToProps = state => ({
|
|
projects: state.project.projects,
|
|
progress: state.project.progress,
|
|
message: state.message
|
|
});
|
|
|
|
|
|
export default connect(mapStateToProps, { getProjects, resetProject, clearMessages })(withStyles(styles, { withTheme: true })(withRouter(ProjectHome)));
|