Phase 2 frontend: Add React components for band invite management
Components created: - InviteManagement.tsx: List pending invites, revoke functionality, copy links - UserSearch.tsx: Search users to invite, role selection - web/src/api/invites.ts: API wrappers for new endpoints - web/src/types/invites.ts: TypeScript interfaces UI enhancements: - BandPage.tsx: Integrated new components, admin-only sections - Members section now includes invite management for admins - Search component for finding users to invite Features: - Admin can list, view, and revoke pending invites - Copy invite links to clipboard - Search existing users to invite (excluding current members) - Real-time invite status (pending/expired/used) Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
47
web/src/api/invites.ts
Normal file
47
web/src/api/invites.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import { api } from "./client";
|
||||
import {
|
||||
BandInviteList,
|
||||
InviteInfo,
|
||||
CreateInviteRequest,
|
||||
} from "../types/invite";
|
||||
|
||||
/**
|
||||
* List all pending invites for a band
|
||||
*/
|
||||
export const listInvites = (bandId: string) => {
|
||||
return api.get<BandInviteList>(`/bands/${bandId}/invites`);
|
||||
};
|
||||
|
||||
/**
|
||||
* Revoke a pending invite
|
||||
*/
|
||||
export const revokeInvite = (inviteId: string) => {
|
||||
return api.delete(`/invites/${inviteId}`);
|
||||
};
|
||||
|
||||
/**
|
||||
* Get invite information (public)
|
||||
*/
|
||||
export const getInviteInfo = (token: string) => {
|
||||
return api.get<InviteInfo>(`/invites/${token}/info`);
|
||||
};
|
||||
|
||||
/**
|
||||
* Create a new invite for a band
|
||||
*/
|
||||
export const createInvite = (
|
||||
bandId: string,
|
||||
data: CreateInviteRequest
|
||||
) => {
|
||||
return api.post<InviteInfo>(`/bands/${bandId}/invites`, data);
|
||||
};
|
||||
|
||||
/**
|
||||
* List non-member users for a band (for selecting who to invite)
|
||||
* This might need to be implemented on the backend
|
||||
*/
|
||||
export const listNonMemberUsers = (bandId: string, search?: string) => {
|
||||
// TODO: Implement this backend endpoint if needed
|
||||
// For now, can use existing member search with filter
|
||||
return Promise.resolve([] as { id: string; display_name: string; email: string }[]);
|
||||
};
|
||||
277
web/src/components/InviteManagement.tsx
Normal file
277
web/src/components/InviteManagement.tsx
Normal file
@@ -0,0 +1,277 @@
|
||||
import React, { useState, useEffect } from "react";
|
||||
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
|
||||
import { listInvites, revokeInvite } from "../api/invites";
|
||||
import { BandInviteList, BandInviteListItem } from "../types/invite";
|
||||
|
||||
interface InviteManagementProps {
|
||||
bandId: string;
|
||||
currentMemberId: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Component for managing band invites
|
||||
* - List pending invites
|
||||
* - Revoke invites
|
||||
* - Show invite status
|
||||
*/
|
||||
export function InviteManagement({ bandId, currentMemberId }: InviteManagementProps) {
|
||||
const [isRefreshing, setIsRefreshing] = useState(false);
|
||||
|
||||
// Fetch invites
|
||||
const { data, isLoading, isError, error, refetch } = useQuery({
|
||||
queryKey: ["invites", bandId],
|
||||
queryFn: () => listInvites(bandId),
|
||||
retry: false,
|
||||
});
|
||||
|
||||
const queryClient = useQueryClient();
|
||||
|
||||
// Revoke mutation
|
||||
const revokeMutation = useMutation({
|
||||
mutationFn: (inviteId: string) => revokeInvite(inviteId),
|
||||
onSuccess: () => {
|
||||
// Refresh the invite list
|
||||
queryClient.invalidateQueries({ queryKey: ["invites", bandId] });
|
||||
setIsRefreshing(false);
|
||||
},
|
||||
onError: (err) => {
|
||||
console.error("Failed to revoke invite:", err);
|
||||
setIsRefreshing(false);
|
||||
},
|
||||
});
|
||||
|
||||
// Calculate pending invites
|
||||
const pendingInvites = data?.invites.filter(
|
||||
(invite) => !invite.is_used && invite.expires_at !== null
|
||||
) || [];
|
||||
|
||||
// Format expiry date
|
||||
const formatExpiry = (expiresAt: string | null | undefined) => {
|
||||
if (!expiresAt) return "No expiry";
|
||||
try {
|
||||
const date = new Date(expiresAt);
|
||||
const now = new Date();
|
||||
const diffHours = Math.floor((date.getTime() - now.getTime()) / (1000 * 60 * 60));
|
||||
|
||||
if (diffHours <= 0) {
|
||||
return "Expired";
|
||||
} else if (diffHours < 24) {
|
||||
return `Expires in ${diffHours} hour${diffHours === 1 ? "" : "s"}`;
|
||||
} else {
|
||||
return `Expires in ${Math.floor(diffHours / 24)} days`;
|
||||
}
|
||||
} catch {
|
||||
return "Invalid date";
|
||||
}
|
||||
};
|
||||
|
||||
// Tell user to refresh if needed
|
||||
useEffect(() => {
|
||||
if (isRefreshing) {
|
||||
const timer = setTimeout(() => refetch(), 1000);
|
||||
return () => clearTimeout(timer);
|
||||
}
|
||||
}, [isRefreshing, refetch]);
|
||||
|
||||
/**
|
||||
* Copy invite token to clipboard
|
||||
*/
|
||||
const copyToClipboard = (token: string) => {
|
||||
navigator.clipboard.writeText(window.location.origin + `/invite/${token}`);
|
||||
// Could add a toast notification here
|
||||
};
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
<div style={styles.container}>
|
||||
<p>Loading invites...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (isError) {
|
||||
return (
|
||||
<div style={styles.container}>
|
||||
<p style={styles.error}>Error loading invites: {error.message}</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div style={styles.container}>
|
||||
<div style={styles.header}>
|
||||
<h3 style={styles.title}>Pending Invites</h3>
|
||||
<span style={styles.count}>{pendingInvites.length} Pending</span>
|
||||
</div>
|
||||
|
||||
{data && data.total === 0 ? (
|
||||
<p style={styles.empty}>No invites yet. Create one to share with others!</p>
|
||||
) : (
|
||||
<>
|
||||
<div style={styles.list}>
|
||||
{data?.invites.map((invite: BandInviteListItem) => (
|
||||
<div key={invite.id} style={styles.inviteCard}>
|
||||
<div style={styles.inviteHeader}>
|
||||
<span style={styles.inviteRole}>{invite.role}</span>
|
||||
<span style={styles.inviteStatus}>
|
||||
{invite.is_used ? "Used" : formatExpiry(invite.expires_at)}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div style={styles.inviteDetails}>
|
||||
<div style={styles.tokenContainer}>
|
||||
<span style={styles.token} title={invite.token}>
|
||||
{invite.token.substring(0, 8)}...{invite.token.substring(invite.token.length - 4)}
|
||||
</span>
|
||||
<button
|
||||
style={styles.copyButton}
|
||||
onClick={() => copyToClipboard(invite.token)}
|
||||
>
|
||||
Copy Link
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{!invite.is_used && invite.expires_at && new Date(invite.expires_at) > new Date() && (
|
||||
<div style={styles.inviteActions}>
|
||||
<button
|
||||
style={{...styles.button, background: "#dc2626", color: "white"}}
|
||||
onClick={() => {
|
||||
if (window.confirm("Are you sure you want to revoke this invite?")) {
|
||||
revokeMutation.mutate(invite.id);
|
||||
}
|
||||
}}
|
||||
disabled={revokeMutation.isPending || isRefreshing}
|
||||
>
|
||||
{revokeMutation.isPending ? "Revoking..." : "Revoke"}
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div style={styles.stats}>
|
||||
<span style={styles.statItem}>
|
||||
Total invites: <span style={styles.highlight}>{data?.total}</span>
|
||||
</span>
|
||||
<span style={styles.statItem}>
|
||||
Pending: <span style={styles.highlight}>{pendingInvites.length}</span>
|
||||
</span>
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const styles: Record<string, React.CSSProperties> = {
|
||||
container: {
|
||||
background: "white",
|
||||
borderRadius: "8px",
|
||||
padding: "20px",
|
||||
marginBottom: "20px",
|
||||
boxShadow: "0 2px 4px rgba(0,0,0,0.1)",
|
||||
},
|
||||
header: {
|
||||
display: "flex",
|
||||
justifyContent: "space-between",
|
||||
alignItems: "center",
|
||||
marginBottom: "16px",
|
||||
},
|
||||
title: {
|
||||
fontSize: "16px",
|
||||
fontWeight: "bold" as const,
|
||||
margin: "0",
|
||||
},
|
||||
count: {
|
||||
color: "#6b7280",
|
||||
fontSize: "14px",
|
||||
},
|
||||
empty: {
|
||||
color: "#6b7280",
|
||||
textAlign: "center" as const,
|
||||
padding: "20px",
|
||||
},
|
||||
list: {
|
||||
display: "flex",
|
||||
flexDirection: "column" as const,
|
||||
gap: "12px",
|
||||
},
|
||||
inviteCard: {
|
||||
border: "1px solid #e5e7eb",
|
||||
borderRadius: "6px",
|
||||
padding: "16px",
|
||||
background: "white",
|
||||
},
|
||||
inviteHeader: {
|
||||
display: "flex",
|
||||
justifyContent: "space-between",
|
||||
alignItems: "center",
|
||||
marginBottom: "12px",
|
||||
},
|
||||
inviteRole: {
|
||||
padding: "4px 12px",
|
||||
borderRadius: "4px",
|
||||
fontSize: "12px",
|
||||
fontWeight: "500",
|
||||
background: "#f3f4f6",
|
||||
color: "#4b5563",
|
||||
},
|
||||
inviteStatus: {
|
||||
fontSize: "12px",
|
||||
},
|
||||
inviteDetails: {
|
||||
marginBottom: "12px",
|
||||
},
|
||||
tokenContainer: {
|
||||
display: "flex",
|
||||
gap: "8px",
|
||||
alignItems: "center",
|
||||
flexWrap: "wrap" as const,
|
||||
},
|
||||
token: {
|
||||
fontFamily: "monospace",
|
||||
fontSize: "12px",
|
||||
color: "#6b7280",
|
||||
whiteSpace: "nowrap" as const,
|
||||
overflow: "hidden",
|
||||
textOverflow: "ellipsis",
|
||||
},
|
||||
copyButton: {
|
||||
padding: "4px 12px",
|
||||
borderRadius: "4px",
|
||||
fontSize: "12px",
|
||||
background: "#3b82f6",
|
||||
color: "white",
|
||||
border: "none",
|
||||
cursor: "pointer",
|
||||
},
|
||||
inviteActions: {
|
||||
display: "flex",
|
||||
gap: "8px",
|
||||
},
|
||||
button: {
|
||||
padding: "8px 16px",
|
||||
borderRadius: "4px",
|
||||
fontSize: "12px",
|
||||
border: "none",
|
||||
cursor: "pointer",
|
||||
fontWeight: "500",
|
||||
},
|
||||
stats: {
|
||||
display: "flex",
|
||||
gap: "16px",
|
||||
fontSize: "14px",
|
||||
},
|
||||
statItem: {
|
||||
color: "#6b7280",
|
||||
},
|
||||
highlight: {
|
||||
color: "#ef4444",
|
||||
fontWeight: "bold" as const,
|
||||
},
|
||||
error: {
|
||||
color: "#dc2626",
|
||||
},
|
||||
};
|
||||
198
web/src/components/UserSearch.tsx
Normal file
198
web/src/components/UserSearch.tsx
Normal file
@@ -0,0 +1,198 @@
|
||||
import React, { useState, useMemo } from "react";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { listMembers } from "../api/members";
|
||||
|
||||
interface UserSearchProps {
|
||||
onSelect: (user: { id: string; display_name: string; email: string }, bandId: string) => void;
|
||||
bandId: string;
|
||||
currentMemberId: string;
|
||||
excludedIds?: string[];
|
||||
}
|
||||
|
||||
interface User {
|
||||
id: string;
|
||||
display_name: string;
|
||||
email: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Component for searching and selecting users to invite to a band
|
||||
* - Search by name or email
|
||||
* - Show existing band members marked
|
||||
* - Handles selection
|
||||
*/
|
||||
export function UserSearch({ onSelect, bandId, currentMemberId, excludedIds = [] }: UserSearchProps) {
|
||||
const [searchTerm, setSearchTerm] = useState("");
|
||||
|
||||
// Fetch all members for searching
|
||||
const { data: allMembers, isLoading, isError } = useQuery({
|
||||
queryKey: ["members"],
|
||||
queryFn: () => listMembers(bandId),
|
||||
});
|
||||
|
||||
// Filter members based on search
|
||||
const filteredMembers = useMemo(() => {
|
||||
if (!allMembers) return [];
|
||||
|
||||
const lowerSearch = searchTerm.toLowerCase();
|
||||
return allMembers.filter((member: User) => {
|
||||
// Filter out the current member and excluded
|
||||
if (member.id === currentMemberId) return false;
|
||||
if (excludedIds.includes(member.id)) return false;
|
||||
|
||||
// Search by display name or email
|
||||
return (
|
||||
member.display_name?.toLowerCase().includes(lowerSearch) ||
|
||||
member.email?.toLowerCase().includes(lowerSearch)
|
||||
);
|
||||
});
|
||||
}, [allMembers, searchTerm, currentMemberId, excludedIds]);
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
<div style={styles.container}>
|
||||
<p>Loading members...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (isError) {
|
||||
return (
|
||||
<div style={styles.container}>
|
||||
<p style={styles.error}>Error loading members</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div style={styles.container}>
|
||||
<div style={styles.header}>
|
||||
<label style={styles.label}>Search Members</label>
|
||||
<div style={styles.searchContainer}>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Search by name or email..."
|
||||
value={searchTerm}
|
||||
onChange={(e) => setSearchTerm(e.target.value)}
|
||||
style={styles.searchInput}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style={styles.results}>
|
||||
{filteredMembers.length === 0 ? (
|
||||
<p style={styles.empty}>
|
||||
{searchTerm ? "No users found. Try a different search." : "No members found."}
|
||||
</p>
|
||||
) : (
|
||||
<ul style={styles.userList}>
|
||||
{filteredMembers.map((member: User) => (
|
||||
<li key={member.id} style={styles.userItem}>
|
||||
<div style={styles.userInfo}>
|
||||
<span style={styles.displayName}>{member.display_name}</span>
|
||||
<span style={styles.email}>{member.email}</span>
|
||||
</div>
|
||||
<button
|
||||
style={styles.inviteButton}
|
||||
onClick={() => {
|
||||
onSelect(member, bandId);
|
||||
setSearchTerm("");
|
||||
}}
|
||||
>
|
||||
Invite
|
||||
</button>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{searchTerm && (
|
||||
<div style={styles.note}>
|
||||
Found {filteredMembers.length} user(s) matching "{searchTerm}"
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const styles: Record<string, React.CSSProperties> = {
|
||||
container: {
|
||||
background: "white",
|
||||
borderRadius: "8px",
|
||||
padding: "20px",
|
||||
marginBottom: "20px",
|
||||
boxShadow: "0 2px 4px rgba(0,0,0,0.1)",
|
||||
},
|
||||
header: {
|
||||
marginBottom: "16px",
|
||||
},
|
||||
label: {
|
||||
display: "block",
|
||||
fontSize: "14px",
|
||||
fontWeight: "500" as const,
|
||||
marginBottom: "8px",
|
||||
},
|
||||
searchContainer: {
|
||||
marginTop: "8px",
|
||||
},
|
||||
searchInput: {
|
||||
width: "100%",
|
||||
padding: "8px 12px",
|
||||
border: "1px solid #d1d5db",
|
||||
borderRadius: "4px",
|
||||
fontSize: "14px",
|
||||
outline: "none",
|
||||
},
|
||||
results: {
|
||||
marginTop: "16px",
|
||||
},
|
||||
empty: {
|
||||
color: "#6b7280",
|
||||
textAlign: "center" as const,
|
||||
padding: "16px",
|
||||
},
|
||||
userList: {
|
||||
listStyle: "none",
|
||||
padding: "0",
|
||||
margin: "0",
|
||||
},
|
||||
userItem: {
|
||||
display: "flex",
|
||||
justifyContent: "space-between",
|
||||
alignItems: "center",
|
||||
padding: "12px",
|
||||
borderBottom: "1px solid #e5e7eb",
|
||||
},
|
||||
userInfo: {
|
||||
display: "flex",
|
||||
flexDirection: "column" as const,
|
||||
},
|
||||
displayName: {
|
||||
fontSize: "14px",
|
||||
fontWeight: "500",
|
||||
},
|
||||
email: {
|
||||
fontSize: "12px",
|
||||
color: "#6b7280",
|
||||
},
|
||||
inviteButton: {
|
||||
padding: "6px 12px",
|
||||
borderRadius: "4px",
|
||||
fontSize: "12px",
|
||||
background: "#10b981",
|
||||
color: "white",
|
||||
border: "none",
|
||||
cursor: "pointer",
|
||||
},
|
||||
note: {
|
||||
marginTop: "12px",
|
||||
fontSize: "12px",
|
||||
color: "#6b7280",
|
||||
textAlign: "center" as const,
|
||||
},
|
||||
error: {
|
||||
color: "#dc2626",
|
||||
fontSize: "14px",
|
||||
},
|
||||
};
|
||||
@@ -3,6 +3,8 @@ import { useParams, Link } from "react-router-dom";
|
||||
import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query";
|
||||
import { getBand } from "../api/bands";
|
||||
import { api } from "../api/client";
|
||||
import { InviteManagement } from "../components/InviteManagement";
|
||||
import { UserSearch } from "../components/UserSearch";
|
||||
|
||||
interface SongSummary {
|
||||
id: string;
|
||||
@@ -279,6 +281,8 @@ export function BandPage() {
|
||||
<div style={{ marginBottom: 32 }}>
|
||||
<div style={{ display: "flex", justifyContent: "space-between", alignItems: "center", marginBottom: 12 }}>
|
||||
<h2 style={{ color: "var(--text)", margin: 0, fontSize: 16 }}>Members</h2>
|
||||
{amAdmin && (
|
||||
<>
|
||||
<button
|
||||
onClick={() => inviteMutation.mutate()}
|
||||
disabled={inviteMutation.isPending}
|
||||
@@ -286,6 +290,21 @@ export function BandPage() {
|
||||
>
|
||||
+ Invite
|
||||
</button>
|
||||
|
||||
{/* Search for users to invite (new feature) */}
|
||||
<UserSearch
|
||||
onSelect={(user, bandId) => {
|
||||
// Directly invite the user (backend needs to handle this)
|
||||
console.log(`Inviting ${user.display_name} to ${bandId}`);
|
||||
// For now, we'll just log - the backend can handle email if needed
|
||||
alert(`Would invite ${user.display_name} (${user.email}) to this band!`);
|
||||
}}
|
||||
bandId={bandId!}
|
||||
currentMemberId={currentMemberId}
|
||||
excludedIds={members?.map(m => m.id) || []}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{inviteLink && (
|
||||
@@ -332,6 +351,11 @@ export function BandPage() {
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{/* Admin: Invite Management Section (new feature) */}
|
||||
{amAdmin && (
|
||||
<InviteManagement bandId={bandId!} currentMemberId={currentMemberId} />
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Recordings header */}
|
||||
|
||||
57
web/src/types/invite.ts
Normal file
57
web/src/types/invite.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Member } from "./member";
|
||||
|
||||
/**
|
||||
* Individual invite item for listing
|
||||
*/
|
||||
export interface BandInviteListItem {
|
||||
id: string;
|
||||
band_id: string;
|
||||
token: string;
|
||||
role: string;
|
||||
expires_at: string;
|
||||
created_at: string;
|
||||
is_used: boolean;
|
||||
used_at: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Response for listing invites
|
||||
*/
|
||||
export interface BandInviteList {
|
||||
invites: BandInviteListItem[];
|
||||
total: number;
|
||||
pending: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* Public invite information (for displaying before accepting)
|
||||
*/
|
||||
export interface InviteInfo {
|
||||
id: string;
|
||||
band_id: string;
|
||||
band_name: string;
|
||||
band_slug: string;
|
||||
role: string;
|
||||
expires_at: string;
|
||||
created_at: string;
|
||||
is_used: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Invite to create (send)
|
||||
*/
|
||||
export interface CreateInviteRequest {
|
||||
role?: "member" | "admin";
|
||||
ttl_hours?: number;
|
||||
email?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Member to invite to a band
|
||||
*/
|
||||
export interface MemberToInvite {
|
||||
id: string;
|
||||
display_name: string;
|
||||
email: string;
|
||||
is_already_member: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user