2022-12-02 21:37:48 +01:00
|
|
|
import * as React from 'react';
|
2022-12-25 17:59:44 +01:00
|
|
|
import {useState} from 'react';
|
2022-12-02 21:37:48 +01:00
|
|
|
import Typography from "@mui/material/Typography";
|
2022-12-21 19:19:07 +01:00
|
|
|
import WarningAmberIcon from '@mui/icons-material/WarningAmber';
|
2022-12-02 21:37:48 +01:00
|
|
|
import TextField from "@mui/material/TextField";
|
|
|
|
import Button from "@mui/material/Button";
|
|
|
|
import Box from "@mui/material/Box";
|
|
|
|
import routes from "./routes";
|
|
|
|
import session from "../app/Session";
|
2022-12-15 05:11:22 +01:00
|
|
|
import {NavLink} from "react-router-dom";
|
2022-12-21 19:19:07 +01:00
|
|
|
import AvatarBox from "./AvatarBox";
|
|
|
|
import {useTranslation} from "react-i18next";
|
2023-02-02 21:19:37 +01:00
|
|
|
import accountApi from "../app/AccountApi";
|
2022-12-30 20:20:48 +01:00
|
|
|
import IconButton from "@mui/material/IconButton";
|
|
|
|
import {InputAdornment} from "@mui/material";
|
|
|
|
import {Visibility, VisibilityOff} from "@mui/icons-material";
|
2023-02-02 21:19:37 +01:00
|
|
|
import {UnauthorizedError} from "../app/errors";
|
2022-12-02 21:37:48 +01:00
|
|
|
|
|
|
|
const Login = () => {
|
2022-12-21 19:19:07 +01:00
|
|
|
const { t } = useTranslation();
|
|
|
|
const [error, setError] = useState("");
|
2022-12-22 03:55:39 +01:00
|
|
|
const [username, setUsername] = useState("");
|
|
|
|
const [password, setPassword] = useState("");
|
2022-12-30 20:20:48 +01:00
|
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
|
|
|
2022-12-02 21:37:48 +01:00
|
|
|
const handleSubmit = async (event) => {
|
|
|
|
event.preventDefault();
|
2022-12-22 03:55:39 +01:00
|
|
|
const user = { username, password };
|
2022-12-21 19:19:07 +01:00
|
|
|
try {
|
2022-12-25 17:59:44 +01:00
|
|
|
const token = await accountApi.login(user);
|
2022-12-24 21:51:22 +01:00
|
|
|
console.log(`[Login] User auth for user ${user.username} successful, token is ${token}`);
|
|
|
|
session.store(user.username, token);
|
|
|
|
window.location.href = routes.app;
|
2022-12-21 19:19:07 +01:00
|
|
|
} catch (e) {
|
|
|
|
console.log(`[Login] User auth for user ${user.username} failed`, e);
|
2023-02-02 21:19:37 +01:00
|
|
|
if (e instanceof UnauthorizedError) {
|
2022-12-24 21:51:22 +01:00
|
|
|
setError(t("Login failed: Invalid username or password"));
|
2022-12-21 19:19:07 +01:00
|
|
|
} else {
|
2023-02-02 21:19:37 +01:00
|
|
|
setError(e.message);
|
2022-12-21 19:19:07 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-02 21:37:48 +01:00
|
|
|
};
|
2023-01-05 04:47:12 +01:00
|
|
|
if (!config.enable_login) {
|
2022-12-21 19:19:07 +01:00
|
|
|
return (
|
|
|
|
<AvatarBox>
|
|
|
|
<Typography sx={{ typography: 'h6' }}>{t("Login is disabled")}</Typography>
|
|
|
|
</AvatarBox>
|
|
|
|
);
|
|
|
|
}
|
2022-12-02 21:37:48 +01:00
|
|
|
return (
|
2022-12-21 19:19:07 +01:00
|
|
|
<AvatarBox>
|
2022-12-15 05:11:22 +01:00
|
|
|
<Typography sx={{ typography: 'h6' }}>
|
2022-12-29 14:20:53 +01:00
|
|
|
{t("login_title")}
|
2022-12-15 05:11:22 +01:00
|
|
|
</Typography>
|
|
|
|
<Box component="form" onSubmit={handleSubmit} noValidate sx={{mt: 1, maxWidth: 400}}>
|
|
|
|
<TextField
|
|
|
|
margin="dense"
|
|
|
|
required
|
|
|
|
fullWidth
|
|
|
|
id="username"
|
2022-12-29 14:20:53 +01:00
|
|
|
label={t("signup_form_username")}
|
2022-12-15 05:11:22 +01:00
|
|
|
name="username"
|
2022-12-22 03:55:39 +01:00
|
|
|
value={username}
|
|
|
|
onChange={ev => setUsername(ev.target.value.trim())}
|
2022-12-15 05:11:22 +01:00
|
|
|
autoFocus
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
margin="dense"
|
|
|
|
required
|
|
|
|
fullWidth
|
|
|
|
name="password"
|
2022-12-29 14:20:53 +01:00
|
|
|
label={t("signup_form_password")}
|
2022-12-30 20:20:48 +01:00
|
|
|
type={showPassword ? "text" : "password"}
|
2022-12-15 05:11:22 +01:00
|
|
|
id="password"
|
2022-12-22 03:55:39 +01:00
|
|
|
value={password}
|
|
|
|
onChange={ev => setPassword(ev.target.value.trim())}
|
2022-12-15 05:11:22 +01:00
|
|
|
autoComplete="current-password"
|
2022-12-30 20:20:48 +01:00
|
|
|
InputProps={{
|
|
|
|
endAdornment: (
|
|
|
|
<InputAdornment position="end">
|
|
|
|
<IconButton
|
|
|
|
aria-label={t("signup_form_toggle_password_visibility")}
|
|
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
|
|
onMouseDown={(ev) => ev.preventDefault()}
|
|
|
|
edge="end"
|
|
|
|
>
|
|
|
|
{showPassword ? <VisibilityOff /> : <Visibility />}
|
|
|
|
</IconButton>
|
|
|
|
</InputAdornment>
|
|
|
|
)
|
|
|
|
}}
|
2022-12-15 05:11:22 +01:00
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
type="submit"
|
|
|
|
fullWidth
|
|
|
|
variant="contained"
|
2022-12-22 03:55:39 +01:00
|
|
|
disabled={username === "" || password === ""}
|
2022-12-15 05:11:22 +01:00
|
|
|
sx={{mt: 2, mb: 2}}
|
|
|
|
>
|
2022-12-29 14:20:53 +01:00
|
|
|
{t("login_form_button_submit")}
|
2022-12-15 05:11:22 +01:00
|
|
|
</Button>
|
2022-12-21 19:19:07 +01:00
|
|
|
{error &&
|
|
|
|
<Box sx={{
|
|
|
|
mb: 1,
|
|
|
|
display: 'flex',
|
|
|
|
flexGrow: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
}}>
|
|
|
|
<WarningAmberIcon color="error" sx={{mr: 1}}/>
|
|
|
|
<Typography sx={{color: 'error.main'}}>{error}</Typography>
|
|
|
|
</Box>
|
|
|
|
}
|
2022-12-15 05:11:22 +01:00
|
|
|
<Box sx={{width: "100%"}}>
|
2023-01-11 04:51:51 +01:00
|
|
|
{/* This is where the password reset link would go */}
|
2023-01-05 04:47:12 +01:00
|
|
|
{config.enable_signup && <div style={{float: "right"}}><NavLink to={routes.signup} variant="body1">{t("login_link_signup")}</NavLink></div>}
|
2022-12-02 21:37:48 +01:00
|
|
|
</Box>
|
|
|
|
</Box>
|
2022-12-21 19:19:07 +01:00
|
|
|
</AvatarBox>
|
2022-12-02 21:37:48 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Login;
|