blob: 7e7389638316535bbfb83ca76e4f515fbae384a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import CloseIcon from '@material-ui/icons/Close';
import { Snackbar, IconButton } from '@material-ui/core';
const styles = theme => ({
close: {
width: theme.spacing(4),
},
});
class Notification extends React.Component {
handleClose = (event, reason) => {
if (reason === 'clickaway') {
return;
}
this.props.close('crudTableDemo');
};
render() {
const { classes, message } = this.props;
return (
<Snackbar
anchorOrigin={{
vertical: 'bottom',
horizontal: 'left',
}}
open={message !== ''}
autoHideDuration={3000}
onClose={() => this.handleClose()}
ContentProps={{
'aria-describedby': 'message-id',
}}
message={message}
action={[
<IconButton
key="close"
aria-label="Close"
color="inherit"
className={classes.close}
onClick={() => this.handleClose()}
>
<CloseIcon />
</IconButton>,
]}
/>
);
}
}
Notification.propTypes = {
classes: PropTypes.object.isRequired,
close: PropTypes.func.isRequired,
message: PropTypes.string.isRequired,
};
export default withStyles(styles)(Notification);
|