import * as React from "react"; import AppBar from "@material-ui/core/AppBar"; import Toolbar from "@material-ui/core/Toolbar"; import Typography from "@material-ui/core/Typography"; import IconButton from "@material-ui/core/IconButton"; import SwipeableDrawer from "@material-ui/core/SwipeableDrawer"; import List from "@material-ui/core/List"; import ListItem from "@material-ui/core/ListItem"; import ListItemIcon from "@material-ui/core/ListItemIcon"; import ListItemText from "@material-ui/core/ListItemText"; import Divider from "@material-ui/core/Divider"; import Avatar from "@material-ui/core/Avatar"; import MenuIcon from "@material-ui/icons/Menu"; import SettingsIcon from "@material-ui/icons/Settings"; import PersonIcon from "@material-ui/icons/Person"; import InfoIcon from "@material-ui/icons/Info"; import { BrowserRouter, Route, Redirect } from "react-router-dom"; import AuthRoute from "../security/AuthRoute"; import Dashboard from "../pages/dashboard"; import LoginPage from "../pages/login"; import LessonsPage from "../pages/lessons"; import { ILesson } from "../models/lesson"; interface IState { loggedIn: boolean; drawerOpen: boolean; } export default class Application extends React.Component<{}, IState> { constructor(props: any) { super(props); this.state = { loggedIn: false, }; this.login = this.login.bind(this); this.isAuthenticated = this.isAuthenticated.bind(this); } lessons(): ILesson[] { // TODO: Actually fetch them from somewhere const lessons = [{ name: "Der Bauer auf dem Feld", desc: "So fängt alles an: Du bist ein einfacher Bauer und musst dich die Karriereleiter mit deinen freshen Latein-Skills hinaufarbeiten", level: 1, done: true, }, { name: "???", desc: "Warum schreibe ich überhaupt was?dsd dddddddddddddddddddddd", level: 2, done: false, }]; return lessons; } learners(): ILearner[] { return [{ username: "Polynomdivision", level: 5, score: 400, }, { username: "Polynomdivision2", level: 3, score: 500, }, { username: "Der eine Typ", level: 7, score: 100, }]; } login(username: string, password: string): Promise { return new Promise((res, rej) => { // TODO this.setState({ loggedIn: true }); res(); }); } // Checks whether the user is logged in isAuthenticated() { // TODO: Security? return this.state.loggedIn === true; } render() { return
{ this.isAuthenticated() ? ( this.setState({ drawerOpen: true })}> ) : undefined } Lateinicus this.setState({ drawerOpen: false, })} onOpen={() => this.setState({ drawerOpen: true })}> {/* TODO: Replace with the actual username */} window.location = "https://gitlab.com/Polynomdivision/Lateinicus/tree/master"}>
} /> { return }} /> } /> } />
; } };