mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
eadff47422
6 changed files with 86 additions and 52 deletions
30
code/frontend/src/components/BoxLoggedIn.js
Normal file
30
code/frontend/src/components/BoxLoggedIn.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
import React, { useContext } from "react"
|
||||
import BoxFull from "./BoxFull"
|
||||
import LoggedInUser from "./LoggedInUser"
|
||||
import Button from "./Button"
|
||||
import { faSignOutAlt } from "@fortawesome/free-solid-svg-icons"
|
||||
import ContextLogin from "../contexts/ContextLogin"
|
||||
import { useHistory } from "react-router"
|
||||
import Style from "./BoxLoggedIn.module.css"
|
||||
|
||||
|
||||
export default function BoxLoggedIn({ ...props }) {
|
||||
const {logout} = useContext(ContextLogin)
|
||||
const history = useHistory()
|
||||
|
||||
return (
|
||||
<BoxFull header={"Logged in"} {...props}>
|
||||
<div className={Style.BoxLoggedInContents}>
|
||||
<div>
|
||||
You are currently logged in as <LoggedInUser/>.
|
||||
</div>
|
||||
<div>
|
||||
<Button color={"Red"} onClick={e => {
|
||||
logout()
|
||||
history.push("/login")
|
||||
}} icon={faSignOutAlt}>Logout</Button>
|
||||
</div>
|
||||
</div>
|
||||
</BoxFull>
|
||||
)
|
||||
}
|
5
code/frontend/src/components/BoxLoggedIn.module.css
Normal file
5
code/frontend/src/components/BoxLoggedIn.module.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
.BoxLoggedInContents {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
|
@ -7,6 +7,8 @@ import {createContext} from "react";
|
|||
* - `server`: The base url of the N.E.S.T. backend
|
||||
* - `email`: The email of the account the user is logged in as
|
||||
* - `token`: The bearer token to use in authenticated API requests
|
||||
* - `working`: `true` if the login procedure is running, `false` otherwise
|
||||
* - `error`: `null` if no login error happened, an instance of {@link Error} otherwise.
|
||||
* - `login`: an async function which logs in the user if given the following parameters: `server, email, password`
|
||||
* - `logout`: a function which logs out the user
|
||||
* - `fetch_unauth`: a variant of {@link fetch} which uses `state.server` as the base url, allowing only the API path
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import {useState} from "react"
|
||||
import useLocalStorageState from "./useLocalStorageState"
|
||||
|
||||
|
||||
|
@ -6,8 +7,12 @@ import useLocalStorageState from "./useLocalStorageState"
|
|||
*/
|
||||
export default function useSavedLogin() {
|
||||
const [state, setState] = useLocalStorageState("login", null)
|
||||
const [working, setWorking] = useState(false)
|
||||
const [error, setError] = useState(null)
|
||||
|
||||
const login = async (server, email, password) => {
|
||||
setWorking(true)
|
||||
try {
|
||||
console.debug("Contacting server to login...")
|
||||
const response = await fetch(`${server}/api/login`, {
|
||||
method: "POST",
|
||||
|
@ -26,8 +31,8 @@ export default function useSavedLogin() {
|
|||
|
||||
console.debug("Ensuring the request was a success...")
|
||||
if(data["result"] !== "success") {
|
||||
console.error(`Login failed: ${data["msg"]}`)
|
||||
return
|
||||
// noinspection ExceptionCaughtLocallyJS
|
||||
throw new Error(data["msg"])
|
||||
}
|
||||
|
||||
console.debug("Storing login state...")
|
||||
|
@ -38,9 +43,17 @@ export default function useSavedLogin() {
|
|||
username: data["user"]["username"],
|
||||
token: data["access_token"],
|
||||
})
|
||||
console.debug("Stored login state!")
|
||||
|
||||
console.debug("Clearing error...")
|
||||
setError(null)
|
||||
|
||||
console.info("Login successful!")
|
||||
} catch(e) {
|
||||
console.error(`Caught error while trying to login: ${e}`)
|
||||
setError(e)
|
||||
} finally {
|
||||
setWorking(false)
|
||||
}
|
||||
}
|
||||
|
||||
const logout = () => {
|
||||
|
@ -65,5 +78,5 @@ export default function useSavedLogin() {
|
|||
return await fetch_unauth(path, init)
|
||||
}
|
||||
|
||||
return {state, login, logout, fetch_unauth, fetch_auth}
|
||||
return {state, working, error, login, logout, fetch_unauth, fetch_auth}
|
||||
}
|
|
@ -16,7 +16,7 @@ export default function PageLogin({ className, ...props }) {
|
|||
const [server, setServer] = useState("http://localhost:5000")
|
||||
const [email, setEmail] = useState("admin@admin.com")
|
||||
const [password, setPassword] = useState("password")
|
||||
const {login} = useContext(ContextLogin)
|
||||
const {login, working, error} = useContext(ContextLogin)
|
||||
const history = useHistory()
|
||||
|
||||
return (
|
||||
|
@ -60,7 +60,8 @@ export default function PageLogin({ className, ...props }) {
|
|||
history.push("/dashboard")
|
||||
}}
|
||||
icon={faArrowRight}
|
||||
color={"Green"}
|
||||
color={error ? "Green" : "Red"}
|
||||
disabled={working}
|
||||
>
|
||||
Login
|
||||
</Button>
|
||||
|
|
|
@ -1,34 +1,17 @@
|
|||
import React, { useContext } from "react"
|
||||
import React from "react"
|
||||
import Style from "./PageSettings.module.css"
|
||||
import classNames from "classnames"
|
||||
import BoxHeader from "../components/BoxHeader"
|
||||
import BoxFull from "../components/BoxFull"
|
||||
import SelectTheme from "../components/SelectTheme"
|
||||
import ContextLogin from "../contexts/ContextLogin"
|
||||
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"
|
||||
import { faSignOutAlt, faUser } from "@fortawesome/free-solid-svg-icons"
|
||||
import Button from "../components/Button"
|
||||
import LoggedInUser from "../components/LoggedInUser"
|
||||
import { useHistory } from "react-router"
|
||||
import BoxLoggedIn from "../components/BoxLoggedIn"
|
||||
|
||||
|
||||
export default function PageSettings({ children, className, ...props }) {
|
||||
const {logout} = useContext(ContextLogin)
|
||||
const history = useHistory()
|
||||
|
||||
return (
|
||||
<div className={classNames(Style.PageSettings, className)} {...props}>
|
||||
<BoxFull header={"Logged in"}>
|
||||
<div>
|
||||
You are currently logged in as <LoggedInUser/>.
|
||||
</div>
|
||||
<div>
|
||||
<Button color={"Red"} onClick={e => {
|
||||
logout()
|
||||
history.push("/login")
|
||||
}} icon={faSignOutAlt}>Logout</Button>
|
||||
</div>
|
||||
</BoxFull>
|
||||
<BoxLoggedIn/>
|
||||
<BoxHeader>
|
||||
Switch theme: <SelectTheme/>
|
||||
</BoxHeader>
|
||||
|
|
Loading…
Reference in a new issue