Spaces:
Running
Running
File size: 3,989 Bytes
ee472e7 5b89071 ee472e7 5b89071 ee472e7 | 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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | import React from "react";
import {
Box,
Typography,
Button,
Chip,
Stack,
Paper,
CircularProgress,
useTheme,
useMediaQuery,
} 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";
function AuthContainer({ actionText = "DO_ACTION" }) {
const { isAuthenticated, user, login, logout, loading } = useAuth();
const navigate = useNavigate();
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down("sm"));
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">
Login to {actionText}
</Typography>
<Typography
variant="body2"
color="text.secondary"
align="center"
sx={{
px: isMobile ? 2 : 0,
}}
>
You need to be logged in to {actionText.toLowerCase()}
</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,
width: isMobile ? "100%" : "auto",
}}
>
Sign in
</Button>
</Paper>
);
}
return (
<Paper
elevation={0}
sx={{ p: 2, border: "1px solid", borderColor: "grey.300", mb: 4 }}
>
<Stack
direction={isMobile ? "column" : "row"}
spacing={2}
alignItems={isMobile ? "stretch" : "center"}
justifyContent="space-between"
>
<Stack
direction={isMobile ? "column" : "row"}
spacing={1}
alignItems={isMobile ? "stretch" : "center"}
sx={{ width: "100%" }}
>
<Typography
variant="body1"
align={isMobile ? "center" : "left"}
sx={{ mb: isMobile ? 1 : 0 }}
>
Connected as <strong>{user?.username}</strong>
</Typography>
<Chip
label={`Ready to ${actionText}`}
color="success"
size="small"
variant="outlined"
sx={{
width: isMobile ? "100%" : "auto",
height: isMobile ? 32 : 24,
"& .MuiChip-label": {
px: isMobile ? 2 : 1,
},
}}
/>
</Stack>
<Button
variant="contained"
onClick={handleLogout}
endIcon={<LogoutIcon />}
color="primary"
sx={{
minWidth: 120,
height: 36,
textTransform: "none",
fontSize: "0.9375rem",
width: isMobile ? "100%" : "auto",
}}
>
Logout
</Button>
</Stack>
</Paper>
);
}
export default AuthContainer;
|