dialog - hint tutorials exists

This commit is contained in:
Delucse
2020-10-17 11:09:25 +02:00
parent a0fd63a2ca
commit 5999daa332
8 changed files with 148 additions and 4 deletions
+2
View File
@@ -10,6 +10,7 @@ import WorkspaceFunc from './WorkspaceFunc';
import BlocklyWindow from './Blockly/BlocklyWindow';
import CodeViewer from './CodeViewer';
import TrashcanButtons from './TrashcanButtons';
import HintTutorialExists from './Tutorial/HintTutorialExists';
import Grid from '@material-ui/core/Grid';
import IconButton from '@material-ui/core/IconButton';
@@ -95,6 +96,7 @@ class Home extends Component {
</Grid>
: null}
</Grid>
<HintTutorialExists />
</div>
);
};
+13 -2
View File
@@ -1,6 +1,9 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { visitPage } from '../actions/generalActions';
import { Route, Switch } from 'react-router-dom';
import { Route, Switch, withRouter } from 'react-router-dom';
import Home from './Home';
import Tutorial from './Tutorial/Tutorial';
@@ -10,6 +13,10 @@ import NotFound from './NotFound';
class Routes extends Component {
componentDidUpdate(){
this.props.visitPage();
}
render() {
return (
<div style={{ margin: '0 22px' }}>
@@ -25,4 +32,8 @@ class Routes extends Component {
}
}
export default Routes;
Home.propTypes = {
visitPage: PropTypes.func.isRequired
};
export default connect(null, { visitPage })(withRouter(Routes));
@@ -0,0 +1,97 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { Link } from 'react-router-dom';
import Dialog from '../Dialog';
import { withStyles } from '@material-ui/core/styles';
import Checkbox from '@material-ui/core/Checkbox';
import FormControlLabel from '@material-ui/core/FormControlLabel';
const styles = (theme) => ({
link: {
color: theme.palette.primary.main,
textDecoration: 'none',
'&:hover': {
color: theme.palette.primary.main,
textDecoration: `underline`
}
},
label: {
fontSize: '0.9rem',
color: 'grey'
}
});
class HintTutorialExists extends Component {
constructor(props){
var previousPageWasAnotherDomain = props.pageVisits === 0;
var userDoNotWantToSeeNews = window.localStorage.getItem('news') ? true : false;
console.log(userDoNotWantToSeeNews);
super(props);
this.state = {
open: userDoNotWantToSeeNews ? !userDoNotWantToSeeNews : previousPageWasAnotherDomain
};
}
toggleDialog = () => {
this.setState({ open: !this.state });
}
onChange = (e) => {
if(e.target.checked){
window.localStorage.setItem('news', e.target.checked);
}
else {
window.localStorage.deleteItem('news');
}
}
render() {
return (
<Dialog
style={{ zIndex: 9999999 }}
fullWidth
maxWidth={'sm'}
open={this.state.open}
title={'Neuigkeiten'}
content={''}
onClose={this.toggleDialog}
onClick={this.toggleDialog}
button={'Schließen'}
>
<div>
Es gibt ab jetzt Tutorials zu verschiedenen Themen. Schau mal <Link to="/tutorial" className={this.props.classes.link}>hier</Link> vorbei.
<FormControlLabel
style={{marginTop: '20px'}}
classes={{label: this.props.classes.label}}
control={
<Checkbox
size={'small'}
value={true}
checked={this.state.checked}
onChange={(e) => this.onChange(e)}
name="dialog"
color="primary"
/>
}
label={'Dialog nicht mehr anzeigen'}
/>
</div>
</Dialog>
);
};
}
HintTutorialExists.propTypes = {
pageVisits: PropTypes.number.isRequired
};
const mapStateToProps = state => ({
pageVisits: state.general.pageVisits
});
export default connect(mapStateToProps, null)(withStyles(styles, { withTheme: true })(HintTutorialExists));