wire profile components, login/register routes, spec-driven auth
- src/main.jsx: add /login, /register, /profile/* routes; wire profileComponents from react-auth; pass basePath to Admin - src/Header.tsx: profile button nav to /profile/me; Login to /login - src/openapi-config.ts: wire getToken and profileComponents - react-auth local: sync ProfileCreate, ProfileEdit, ProfileView - react-openapi local: sync all auth + x-profile changes (AppProvider, Admin, ProfileRoutes, SideMenu, types, hooks, etc.)
This commit is contained in:
122
react-auth/ProfileCreate.tsx
Normal file
122
react-auth/ProfileCreate.tsx
Normal file
@@ -0,0 +1,122 @@
|
||||
import * as React from "react";
|
||||
import {
|
||||
Box,
|
||||
TextField,
|
||||
Button,
|
||||
Typography,
|
||||
CircularProgress,
|
||||
} from "@mui/material";
|
||||
|
||||
export interface ProfileCreateProps {
|
||||
defaultUsername?: string;
|
||||
defaultEmail?: string;
|
||||
onSubmit: (data: { name: string; email: string }) => Promise<void>;
|
||||
onBack?: () => void;
|
||||
loading?: boolean;
|
||||
error?: string | null;
|
||||
}
|
||||
|
||||
export function ProfileCreate({
|
||||
defaultUsername,
|
||||
defaultEmail,
|
||||
onSubmit,
|
||||
onBack,
|
||||
loading = false,
|
||||
error = null,
|
||||
}: ProfileCreateProps) {
|
||||
const [name, setName] = React.useState("");
|
||||
const [email, setEmail] = React.useState(defaultEmail ?? "");
|
||||
|
||||
const handleSubmit = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
await onSubmit({ name: name || defaultUsername || "", email });
|
||||
};
|
||||
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
maxWidth: 480,
|
||||
mx: "auto",
|
||||
mt: 4,
|
||||
p: 4,
|
||||
borderRadius: 3,
|
||||
boxShadow: 3,
|
||||
bgcolor: "background.paper",
|
||||
}}
|
||||
>
|
||||
<Typography variant="h5" fontWeight="bold" gutterBottom>
|
||||
Complete Your Profile
|
||||
</Typography>
|
||||
|
||||
<Typography variant="body2" color="text.secondary" sx={{ mb: 3 }}>
|
||||
{defaultUsername && (
|
||||
<span>
|
||||
Welcome <strong>{defaultUsername}</strong>!{" "}
|
||||
</span>
|
||||
)}
|
||||
Fill in your details to get started.
|
||||
</Typography>
|
||||
|
||||
<form onSubmit={handleSubmit}>
|
||||
{defaultUsername && (
|
||||
<TextField
|
||||
fullWidth
|
||||
label="Username"
|
||||
value={defaultUsername}
|
||||
margin="normal"
|
||||
disabled
|
||||
/>
|
||||
)}
|
||||
|
||||
<TextField
|
||||
fullWidth
|
||||
label="Full Name"
|
||||
margin="normal"
|
||||
value={name}
|
||||
onChange={(e) => setName(e.target.value)}
|
||||
placeholder={defaultUsername ?? "Your name"}
|
||||
required
|
||||
autoFocus={!defaultUsername}
|
||||
/>
|
||||
|
||||
<TextField
|
||||
fullWidth
|
||||
label="Email"
|
||||
type="email"
|
||||
margin="normal"
|
||||
value={email}
|
||||
onChange={(e) => setEmail(e.target.value)}
|
||||
placeholder={defaultEmail ?? "you@example.com"}
|
||||
required
|
||||
/>
|
||||
|
||||
{error && (
|
||||
<Typography color="error" variant="body2" sx={{ mt: 1 }}>
|
||||
{error}
|
||||
</Typography>
|
||||
)}
|
||||
|
||||
<Box sx={{ display: "flex", gap: 2, mt: 3 }}>
|
||||
{onBack && (
|
||||
<Button
|
||||
fullWidth
|
||||
variant="outlined"
|
||||
onClick={onBack}
|
||||
disabled={loading}
|
||||
>
|
||||
Back
|
||||
</Button>
|
||||
)}
|
||||
<Button
|
||||
fullWidth
|
||||
type="submit"
|
||||
variant="contained"
|
||||
disabled={loading}
|
||||
>
|
||||
{loading ? <CircularProgress size={24} /> : "Create Profile"}
|
||||
</Button>
|
||||
</Box>
|
||||
</form>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
111
react-auth/ProfileEdit.tsx
Normal file
111
react-auth/ProfileEdit.tsx
Normal file
@@ -0,0 +1,111 @@
|
||||
import * as React from "react";
|
||||
import {
|
||||
Box,
|
||||
TextField,
|
||||
Button,
|
||||
Typography,
|
||||
CircularProgress,
|
||||
} from "@mui/material";
|
||||
|
||||
export interface ProfileEditProps {
|
||||
name: string;
|
||||
username: string;
|
||||
email: string;
|
||||
onSubmit: (data: { name: string; email: string }) => Promise<void>;
|
||||
onBack?: () => void;
|
||||
loading?: boolean;
|
||||
error?: string | null;
|
||||
}
|
||||
|
||||
export function ProfileEdit({
|
||||
name: initialName,
|
||||
username,
|
||||
email: initialEmail,
|
||||
onSubmit,
|
||||
onBack,
|
||||
loading = false,
|
||||
error = null,
|
||||
}: ProfileEditProps) {
|
||||
const [name, setName] = React.useState(initialName);
|
||||
const [email, setEmail] = React.useState(initialEmail);
|
||||
|
||||
const handleSubmit = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
await onSubmit({ name, email });
|
||||
};
|
||||
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
maxWidth: 480,
|
||||
mx: "auto",
|
||||
mt: 4,
|
||||
p: 4,
|
||||
borderRadius: 3,
|
||||
boxShadow: 3,
|
||||
bgcolor: "background.paper",
|
||||
}}
|
||||
>
|
||||
<Typography variant="h5" fontWeight="bold" gutterBottom>
|
||||
Edit Profile
|
||||
</Typography>
|
||||
|
||||
<form onSubmit={handleSubmit}>
|
||||
<TextField
|
||||
fullWidth
|
||||
label="Username"
|
||||
value={username}
|
||||
margin="normal"
|
||||
disabled
|
||||
/>
|
||||
|
||||
<TextField
|
||||
fullWidth
|
||||
label="Full Name"
|
||||
margin="normal"
|
||||
value={name}
|
||||
onChange={(e) => setName(e.target.value)}
|
||||
required
|
||||
autoFocus
|
||||
/>
|
||||
|
||||
<TextField
|
||||
fullWidth
|
||||
label="Email"
|
||||
type="email"
|
||||
margin="normal"
|
||||
value={email}
|
||||
onChange={(e) => setEmail(e.target.value)}
|
||||
required
|
||||
/>
|
||||
|
||||
{error && (
|
||||
<Typography color="error" variant="body2" sx={{ mt: 1 }}>
|
||||
{error}
|
||||
</Typography>
|
||||
)}
|
||||
|
||||
<Box sx={{ display: "flex", gap: 2, mt: 3 }}>
|
||||
{onBack && (
|
||||
<Button
|
||||
fullWidth
|
||||
variant="outlined"
|
||||
onClick={onBack}
|
||||
disabled={loading}
|
||||
>
|
||||
Cancel
|
||||
</Button>
|
||||
)}
|
||||
<Button
|
||||
fullWidth
|
||||
type="submit"
|
||||
variant="contained"
|
||||
disabled={loading}
|
||||
>
|
||||
{loading ? <CircularProgress size={24} /> : "Save Changes"}
|
||||
</Button>
|
||||
</Box>
|
||||
</form>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
85
react-auth/ProfileView.tsx
Normal file
85
react-auth/ProfileView.tsx
Normal file
@@ -0,0 +1,85 @@
|
||||
import * as React from "react";
|
||||
import {
|
||||
Box,
|
||||
Typography,
|
||||
Button,
|
||||
Avatar,
|
||||
Paper,
|
||||
CircularProgress,
|
||||
} from "@mui/material";
|
||||
|
||||
export interface ProfileViewProps {
|
||||
name: string;
|
||||
username: string;
|
||||
email: string;
|
||||
onEdit?: () => void;
|
||||
loading?: boolean;
|
||||
}
|
||||
|
||||
export function ProfileView({
|
||||
name,
|
||||
username,
|
||||
email,
|
||||
onEdit,
|
||||
loading = false,
|
||||
}: ProfileViewProps) {
|
||||
const initials = (name || username)
|
||||
.split(" ")
|
||||
.map((s) => s[0])
|
||||
.join("")
|
||||
.toUpperCase()
|
||||
.slice(0, 2);
|
||||
|
||||
return (
|
||||
<Paper
|
||||
sx={{
|
||||
maxWidth: 480,
|
||||
mx: "auto",
|
||||
mt: 4,
|
||||
p: 4,
|
||||
borderRadius: 3,
|
||||
}}
|
||||
>
|
||||
<Box sx={{ display: "flex", alignItems: "center", gap: 3, mb: 3 }}>
|
||||
<Avatar
|
||||
sx={{
|
||||
width: 64,
|
||||
height: 64,
|
||||
bgcolor: "primary.main",
|
||||
fontSize: 24,
|
||||
}}
|
||||
>
|
||||
{initials}
|
||||
</Avatar>
|
||||
|
||||
<Box>
|
||||
<Typography variant="h5" fontWeight="bold">
|
||||
{name || username}
|
||||
</Typography>
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
@{username}
|
||||
</Typography>
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
<Box sx={{ mb: 2 }}>
|
||||
<Typography variant="overline" color="text.secondary" display="block">
|
||||
Email
|
||||
</Typography>
|
||||
<Typography variant="body1">{email}</Typography>
|
||||
</Box>
|
||||
|
||||
{onEdit && (
|
||||
<Button
|
||||
fullWidth
|
||||
variant="outlined"
|
||||
onClick={onEdit}
|
||||
disabled={loading}
|
||||
sx={{ mt: 1 }}
|
||||
>
|
||||
{loading ? <CircularProgress size={20} /> : "Edit Profile"}
|
||||
</Button>
|
||||
)}
|
||||
</Paper>
|
||||
);
|
||||
}
|
||||
@@ -1,6 +1,12 @@
|
||||
export { AuthProvider, useAuth } from "./contexts";
|
||||
export { createApiClient } from "./axios";
|
||||
export { AuthPage } from "./AuthPage";
|
||||
export { ProfileCreate } from "./ProfileCreate";
|
||||
export { ProfileEdit } from "./ProfileEdit";
|
||||
export { ProfileView } from "./ProfileView";
|
||||
export type { AuthUser } from "./models";
|
||||
export type { AuthMode } from "./AuthPage";
|
||||
export type { ProfileCreateProps } from "./ProfileCreate";
|
||||
export type { ProfileEditProps } from "./ProfileEdit";
|
||||
export type { ProfileViewProps } from "./ProfileView";
|
||||
export { tokenStore } from "./token"
|
||||
|
||||
Reference in New Issue
Block a user