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 HomeIcon from "@material-ui/icons/Home"; import BookIcon from "@material-ui/icons/Book"; import ViewWeekIcon from "@material-ui/icons/ViewWeek"; import { BrowserRouter, Route, Redirect, Link } from "react-router-dom"; import AuthRoute from "../security/AuthRoute"; import Dashboard from "../pages/dashboard"; import LoginPage from "../pages/login"; import LevelListPage from "../pages/levelList"; import LevelPage from "../pages/level"; import ReviewPage from "../pages/review"; import SummaryPage from "../pages/summary"; import WelcomePage from "../pages/intro"; import { ILevel } from "../models/level"; import { ILearner } from "../models/learner"; import { IVocab, VocabType } from "../models/vocab"; import { IReviewMetadata, ReviewType } from "../models/review"; interface IState { loggedIn: boolean; drawerOpen: boolean; showDrawerButton: boolean; } // TODO: Replace the sessionStorage with localStorage? // TODO: Cache API-Calls export default class Application extends React.Component<{}, IState> { constructor(props: any) { super(props); // Load a key from the SessionStorage const authKey = window.sessionStorage.getItem("authKey") || null; // TODO const loggedIn = authKey !== null; this.state = { loggedIn, drawerOpen: false, showDrawerButton: true, }; this.login = this.login.bind(this); this.isAuthenticated = this.isAuthenticated.bind(this); } getLevels(): ILevel[] { console.log("STUB: Application::getLevels"); // TODO: Actually fetch them from somewhere const levels = [{ 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 levels; } getLastReview(): IReviewMetadata { console.log("STUB: Application::getLastReview"); // TODO: Actually fetch this return { correct: 5, nearly: 5, wrong: 5, }; } getReviewQueue = (): IVocab[] => { console.log("STUB: Application::getReviewQueue"); // TODO: Implement return [{ german: ["Wein"], hint: "Worte auf '-um' sind meistens NeutrUM", type: VocabType.NOMEN, latin: { grundform: "Vinum", genitiv: "Vini", genus: "Neutrum" }, id: 0 }/* , { * latin: "Vici", * german: "", * hint: "Wird \"Viki\" und nicht \"Vichi\" ausgesprochen", * mnemonic: "Merk dir das Wort mit Caesars berühmten Worten: \"Veni Vidi Vici\"; Er kam, sah und siegte", * type: VocabType.NOMEN, * id: 2 }, { * latin: "fuga", * german: "Flucht", * hint: "Worte auf \"-a\" sind FeminA", * type: VocabType.NOMEN, * id: 3 } */] as IVocab[]; } getLearners(): ILearner[] { console.log("STUB: Application::getLearners"); // TODO: Implement return [{ username: "Polynomdivision", level: 5, score: 400, }, { username: "Polynomdivision2", level: 3, score: 500, }, { username: "Der eine Typ", level: 7, score: 100, }]; } getTopTenLearners(): ILearner[] { console.log("STUB: Application::getTopTenLearners"); // TODO: Implement return [{ username: "Polynomdivision", level: 5, score: 400, }, { username: "Polynomdivision2", level: 3, score: 500, }, { username: "Der eine Typ", level: 7, score: 100, }]; } getNextLevel(): ILevel { console.log("STUB: Application::getNextLevel"); // TODO: Actually fetch data return { name: "???", desc: "Warum schreibe ich überhaupt was?dsd dddddddddddddddddddddd", level: 2, done: false, }; } getLevelVocab(id: number): IVocab[] { console.log("STUB: Application::getLevelVocab"); // TODO: Actually implement this // TODO: Don't fetch this when it was already fetched once. return [{ german: ["Wein"], hint: "Worte auf '-um' sind meistens NeutrUM", type: VocabType.NOMEN, latin: { grundform: "Vinum", genitiv: "Vini", genus: "Neutrum" }, id: 0 }/* , { * latin: "Vici", * german: "", * hint: "Wird \"Viki\" und nicht \"Vichi\" ausgesprochen", * mnemonic: "Merk dir das Wort mit Caesars berühmten Worten: \"Veni Vidi Vici\"; Er kam, sah und siegte", * type: VocabType.NOMEN, * id: 2 }, { * latin: "fuga", * german: "Flucht", * hint: "Worte auf \"-a\" sind FeminA", * type: VocabType.NOMEN, * id: 3 } */] as IVocab[]; } login(username: string, password: string): Promise { console.log("STUB: Application::login"); return new Promise((res, rej) => { // TODO: First login? Redirect to /welcome // TODO this.setState({ loggedIn: true }); res(); }); } // Checks whether the user is logged in isAuthenticated() { // TODO: Security? return this.state.loggedIn === true; } closeDrawer = () => { this.setState({ drawerOpen: false, }); } drawerButtonState = (show: boolean) => { // This is required as we would otherwise try to continously update // the state, resulting in an infinte loop if (show !== this.state.showDrawerButton) { this.setState({ showDrawerButton: show, }); } } render() { return
{ (this.isAuthenticated() && this.state.showDrawerButton) ? ( this.setState({ drawerOpen: true })}> ) : undefined } Lateinicus this.setState({ drawerOpen: false, })} onOpen={() => this.setState({ drawerOpen: true })}> {/* TODO: Replace with the actual username */} Levelübersicht { // Remove the auth token from the SessionStorage window.sessionStorage.removeItem("authKey"); // Set the loggedIn State to false this.setState({ loggedIn: false, // In case the drawer was open drawerOpen: false, }); }}> Abmelden window.location = "https://gitlab.com/Polynomdivision/Lateinicus/tree/master"}>
} /> { return }} /> { return }} /> { return }} /> } /> {/*We cannot use AuthRoute here, because match is undefined otherwise*/} { if (this.isAuthenticated()) { return ; } else { return ; } }} /> { if (this.isAuthenticated()) { return ; } else { return ; } }} /> { return ; }} /> { return }} />
; } };