-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathprofile.js
103 lines (88 loc) · 2.69 KB
/
profile.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
97
98
99
100
101
102
103
import React, { Fragment } from "react"
import Helmet from "react-helmet"
import styled from "styled-components"
import Layout from "../templates/Layout"
import CourseOptionsEditor from "../components/user/CourseOptionsEditor"
import { navigate } from "gatsby"
import LoginStateContext, {
withLoginStateContext,
} from "../contexes/LoginStateContext"
import Container from "../components/Container"
import { getCachedUserDetails } from "../services/moocfi"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faCheckCircle as icon } from "@fortawesome/free-solid-svg-icons"
import Snackbar from "@material-ui/core/Snackbar"
import SnackbarContent from "@material-ui/core/SnackbarContent"
const StyledSnackbarContent = styled(SnackbarContent)`
background-color: #43a047 !important;
`
const StyledIcon = styled(FontAwesomeIcon)`
margin-right: 0.5rem;
`
class MissingInfo extends React.Component {
static contextType = LoginStateContext
state = {
successMessage: null,
}
onStepComplete = () => {
this.setState({ successMessage: "Tiedot tallennettu!" })
}
handleClose = () => {
this.setState({ successMessage: null })
}
async componentDidMount() {
if (!this.context.loggedIn) {
return
}
let userInfo = await getCachedUserDetails()
const research = userInfo?.extra_fields?.research
if (research === undefined) {
navigate("/missing-info")
}
}
render() {
if (!this.context.loggedIn) {
if (typeof window !== "undefined") {
navigate("/sign-in")
}
return <div>Redirecting...</div>
}
return (
<Layout>
<Container>
<Helmet title="Profiili" />
<h1>Profiili</h1>
<p>
Täällä voit muokata mooc.fi -tilisi asetuksia tämän kurssin osalta.
Katso myös profiilisi mooc.fi:n Test My Code -palvelussa:{" "}
<a href="https://tmc.mooc.fi" rel="noopener noreferrer">
https://tmc.mooc.fi
</a>
.
</p>
<CourseOptionsEditor onComplete={this.onStepComplete} />
</Container>
<Snackbar
anchorOrigin={{
vertical: "bottom",
horizontal: "center",
}}
open={this.state.successMessage}
autoHideDuration={6000}
onClose={this.handleClose}
>
<StyledSnackbarContent
variant="success"
message={
<Fragment>
<StyledIcon icon={icon} />{" "}
<span>{this.state.successMessage}</span>
</Fragment>
}
/>
</Snackbar>
</Layout>
)
}
}
export default withLoginStateContext(MissingInfo)