ntfy/web/src/components/Login.js

123 lines
4.8 KiB
JavaScript
Raw Normal View History

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