Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 3,463 Bytes
f83c7c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
import React from "react";
import {
Box,
Typography,
Button,
Chip,
Stack,
Paper,
CircularProgress,
} from "@mui/material";
import HFLogo from "../Logo/HFLogo";
import { useAuth } from "../../hooks/useAuth";
import LogoutIcon from "@mui/icons-material/Logout";
import { useNavigate } from "react-router-dom";
import { useTranslation, declareComponentKeys } from "i18n";
function AuthContainer({ actionText = "DO_ACTION" }) {
const { isAuthenticated, user, login, logout, loading } = useAuth();
const navigate = useNavigate();
const {t} = useTranslation({AuthContainer});
const handleLogout = () => {
if (isAuthenticated && logout) {
logout();
navigate("/", { replace: true });
window.location.reload();
}
};
if (loading) {
return (
<Paper
elevation={0}
sx={{
p: 3,
mb: 4,
border: "1px solid",
borderColor: "grey.300",
display: "flex",
flexDirection: "column",
alignItems: "center",
gap: 2,
}}
>
<CircularProgress size={24} />
</Paper>
);
}
if (!isAuthenticated) {
return (
<Paper
elevation={0}
sx={{
p: 3,
mb: 4,
border: "1px solid",
borderColor: "grey.300",
display: "flex",
flexDirection: "column",
alignItems: "center",
gap: 2,
}}
>
<Typography variant="h6" align="center">
{t("login")}
</Typography>
<Typography variant="body2" color="text.secondary" align="center">
{t("need")}
</Typography>
<Button
variant="contained"
onClick={login}
startIcon={
<Box
sx={{
width: 20,
height: 20,
display: "flex",
alignItems: "center",
}}
>
<HFLogo />
</Box>
}
sx={{
textTransform: "none",
fontWeight: 600,
py: 1,
px: 2,
}}
>
{t("button")}
</Button>
</Paper>
);
}
return (
<Paper
elevation={0}
sx={{ p: 2, border: "1px solid", borderColor: "grey.300", mb: 4 }}
>
<Stack
direction="row"
spacing={2}
alignItems="center"
justifyContent="space-between"
>
<Stack direction="row" spacing={1} alignItems="center">
<Typography variant="body1">
{t("loggedin", {user: (user !== null ? user!['username'] : "inconnu")})}
</Typography>
<Chip
label={`Ready to ${actionText}`}
color="success"
size="small"
variant="outlined"
/>
</Stack>
<Button
variant="contained"
onClick={handleLogout}
endIcon={<LogoutIcon />}
color="primary"
sx={{
minWidth: 120,
height: 36,
textTransform: "none",
fontSize: "0.9375rem",
}}
>
{t("logout")}
</Button>
</Stack>
</Paper>
);
}
const { i18n } = declareComponentKeys<
| "login"
| "need"
| "logout"
| "button"
| { K: "loggedin"; P: { user: string; }; R: JSX.Element }
>()({ AuthContainer });
export type I18n = typeof i18n;
export default AuthContainer;
|