Files
suwayomi-material-you-webui/src/features/authentication/screens/LoginPage.tsx

144 lines
5.4 KiB
TypeScript
Raw Normal View History

2025-07-27 00:03:51 +02:00
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { useTranslation } from 'react-i18next';
import { useEffect, useState } from 'react';
import TextField from '@mui/material/TextField';
import Stack from '@mui/material/Stack';
import Button from '@mui/material/Button';
import { Navigate, useNavigate } from 'react-router-dom';
import { useTheme } from '@mui/material/styles';
import { StringParam, useQueryParam } from 'use-query-params';
import { PasswordTextField } from '@/base/components/inputs/PasswordTextField.tsx';
import { requestManager } from '@/lib/requests/RequestManager.ts';
import { makeToast } from '@/base/utils/Toast.ts';
import { getErrorMessage } from '@/lib/HelperFunctions.ts';
import { AuthManager } from '@/features/authentication/AuthManager.ts';
import { SuwayomiLogo } from '@/assets/SuwayomiLogo.tsx';
import { useSessionContext } from '@/features/authentication/SessionContext.tsx';
import { AppRoutes } from '@/base/AppRoute.constants.ts';
import { useNavBarContext } from '@/features/navigation-bar/NavbarContext.tsx';
import { SearchParam } from '@/base/Base.types.ts';
import { ServerAddressSetting } from '@/features/settings/components/ServerAddressSetting.tsx';
export const LoginPage = () => {
const theme = useTheme();
const { t } = useTranslation();
const { setOverride } = useNavBarContext();
const navigate = useNavigate();
const { isAuthRequired, accessToken, refreshToken } = useSessionContext();
const [redirect] = useQueryParam(SearchParam.REDIRECT, StringParam);
const [loginUser, { loading: isLoading }] = requestManager.useLoginUser();
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
const isAuthenticated = !isAuthRequired || (!!isAuthRequired && !!accessToken && !!refreshToken);
const doLogin = async () => {
try {
const { data } = await loginUser({ variables: { username, password } });
if (data) {
AuthManager.setTokens(data.login.accessToken, data.login.refreshToken);
navigate(redirect ?? AppRoutes.root.path);
}
} catch (e) {
makeToast(t('tracking.action.login.label.failure', { name: 'Suwayomi' }), 'error', getErrorMessage(e));
}
};
useEffect(() => {
setOverride({ status: true, value: null });
return () => setOverride({ status: false, value: null });
}, []);
if (isAuthenticated) {
return <Navigate to={AppRoutes.root.path} replace />;
}
return (
<Stack
sx={{
[theme.breakpoints.up('lg')]: {
flexDirection: 'row',
},
}}
>
<Stack
sx={{
minHeight: '50vh',
flexBasis: '60%',
p: 4,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'primary.light',
...theme.applyStyles('dark', {
backgroundColor: 'primary.dark',
}),
[theme.breakpoints.up('lg')]: {
minHeight: '0vh',
height: '100vh',
},
}}
>
<SuwayomiLogo
sx={{
fontSize: 250,
[theme.breakpoints.up('lg')]: {
fontSize: 350,
},
}}
circleRingColor={theme.palette.primary.light}
/>
</Stack>
<Stack
sx={{
minHeight: '50vh',
flexBasis: '40%',
p: 4,
justifyContent: 'center',
alignItems: 'center',
[theme.breakpoints.up('lg')]: {
minHeight: '0vh',
height: '100vh',
},
}}
>
<Stack sx={{ maxWidth: 300, gap: 2 }}>
<Stack>
<TextField
autoFocus
margin="dense"
id="username"
name="username"
label={t('global.label.username')}
type="text"
fullWidth
variant="standard"
onChange={(e) => setUsername(e.target.value)}
/>
<PasswordTextField
margin="dense"
fullWidth
variant="standard"
onChange={(e) => setPassword(e.target.value)}
/>
{import.meta.env.DEV && <ServerAddressSetting />}
</Stack>
<Button disabled={isLoading || (!username && !password)} variant="contained" onClick={doLogin}>
{t('global.button.log_in')}
</Button>
</Stack>
</Stack>
</Stack>
);
};