-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathNotification.js
96 lines (86 loc) · 2.52 KB
/
Notification.js
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import React, { Fragment } from "react"
import Snackbar from "@material-ui/core/Snackbar"
import IconButton from "@material-ui/core/IconButton"
import CloseIcon from "@material-ui/icons/Close"
import InfoIcon from "@material-ui/icons/Info"
import styled from "styled-components"
import { Typography } from "@material-ui/core"
import LoginStateContext from "../contexes/LoginStateContext"
import * as store from "store"
import { Link } from "gatsby"
const StyledInfoIcon = styled(InfoIcon)`
vertical-align: middle;
margin-right: 0.5rem;
`
const StyledTypography = styled(Typography)`
display: inline-block !important;
color: white !important;
a {
color: white !important;
box-shadow: inset 0 -3px 0 0 white;
}
`
export default class Notification extends React.Component {
static contextType = LoginStateContext
state = {
render: false,
open: true,
}
componentDidMount() {
this.setState({ render: true })
}
handleClick = () => {
this.setState({ open: true })
}
handleClose = (event, reason) => {
if (reason === "clickaway") {
return
}
this.setState({ open: false })
store.set("pajanotification.shown2", true)
}
handleRefresh = () => {
window.location.reload()
}
render() {
if (!this.state.render || store.get("pajanotification.shown2")) {
return <div />
}
return (
<Fragment>
<Snackbar
anchorOrigin={{ vertical: "top", horizontal: "center" }}
open={this.state.open}
onClose={this.handleClose}
ContentProps={{ "aria-describedby": "message-id" }}
message={
<Fragment>
<StyledInfoIcon />
<StyledTypography>
Pajaohjausta on nyt saatavilla! Pajasta saa apua tehtäviin,
ohjelmointiin ja teknisiin ongelmiin sekä hyvää
ohjelmointiseuraa. Paja sijaitsee Helsingin Kumpulan
kampuksella. Kaikki ovat tervetulleita pajaan! Muut paja-ajat ja
tarkemmat ohjeet löytyvät{" "}
<Link onClick={this.handleClose} to="/tukivaylat">
tukiväylät
</Link>
-sivulta.
</StyledTypography>
</Fragment>
}
action={[
<IconButton
key="close"
aria-label="Close"
color="inherit"
onClick={this.handleClose}
>
<CloseIcon />
</IconButton>,
]}
/>
</Fragment>
)
}
}