Complete stabilization pass bringing all 3 stacks to green: Frontend (apps/web/): - Fix TypeScript nullability in useSeason.ts, useTimeOfDay.ts hooks - Disable no-undef in ESLint config (TypeScript handles it; JSX misidentified) - Rename 306 story imports from @storybook/react to @storybook/react-vite - Fix conditional hook call in useMediaQuery.ts useIsTablet - Move useQuery to top of LoginPage.tsx component - Remove useless try/catch in GearFormModal.tsx - Fix stale closure in ResetPasswordPage.tsx handleChange - Make Storybook decorators (withRouter, withQueryClient, withToast, withAudio) no-ops since global StorybookDecorator already provides these — prevents nested Router / duplicate provider crashes in vitest-browser - Fix nested MemoryRouter in 3 page stories (TrackDetail, PlaylistDetail, UserProfile) - Update i18n initialization in test setup (await init before changeLanguage) - Update ~30 test assertions from English to French to match i18n translations - Update test assertions to match SUMI V3 design changes (shadow vs border) - Fix remaining story type errors (PlayerError, PlaylistBatchActions, TrackFilters, VirtualizedChatMessages) Backend (veza-backend-api/): - Fix response_test.go RespondWithAppError signature (2 args, not 3) - Fix TestErrorContractAuthEndpoints expected error codes (ErrCodeUnauthorized vs ErrCodeInvalidCredentials) - Fix TestTrackHandler_GetTrackLikes_Success missing auth middleware setup - Fix TestPlaybackAnalyticsService_GetTrackStats k-anonymity threshold (needs 5 unique users, not 1) - Replace NOW() PostgreSQL function with time.Now() parameter in marketplace service for SQLite test compatibility - Add missing AutoMigrate entries in marketplace_test.go (ProductImage, ProductPreview, ProductLicense, ProductReview) Results: - Frontend TypeCheck: 617 errors -> 0 errors - Frontend ESLint: 349 errors -> 0 errors - Frontend Vitest: 196 failing tests -> 1 skipped (3396/3397 passing) - Backend go vet: 1 error -> 0 errors - Backend tests: 5 failing -> all 13 packages passing - Rust: 150/150 tests passing (unchanged) - Storybook audit: 0 errors across 1244 stories Triage report: docs/TRIAGE_REPORT.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
160 lines
6.8 KiB
TypeScript
160 lines
6.8 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { Card } from '../ui/card';
|
|
import { Button } from '../ui/button';
|
|
import { Input } from '../ui/input';
|
|
import { UserTableRow } from './UserTableRow';
|
|
import { BanUserModal } from './modals/BanUserModal';
|
|
import { User } from '../../types';
|
|
import { Search, Shield, Activity, Users, Download, UserPlus, Loader2 } from 'lucide-react';
|
|
import { useToast } from '../../components/feedback/ToastProvider';
|
|
import { userService } from '../../services/userService';
|
|
import { logger } from '@/utils/logger';
|
|
|
|
export const AdminUsersView: React.FC = () => {
|
|
const { addToast } = useToast();
|
|
const [search, setSearch] = useState('');
|
|
const [users, setUsers] = useState<User[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
const [selectedUser, setSelectedUser] = useState<User | null>(null);
|
|
|
|
useEffect(() => {
|
|
const loadUsers = async () => {
|
|
setLoading(true);
|
|
try {
|
|
const res = await userService.list();
|
|
setUsers(res.users);
|
|
} catch (e) {
|
|
logger.error('Failed to load users', { error: e });
|
|
addToast('Failed to load users', 'error');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
loadUsers();
|
|
}, []);
|
|
|
|
const handleBan = (duration: string) => {
|
|
if (!selectedUser) return;
|
|
addToast(`Node ${selectedUser.username} quarantined for ${duration}.`, 'success');
|
|
setUsers(users.filter((u) => u.id !== selectedUser.id));
|
|
setSelectedUser(null);
|
|
};
|
|
|
|
const handleDelete = (user: User) => {
|
|
if (confirm(`INITIATE PERMANENT DELETION: ${user.username}?`)) {
|
|
setUsers(users.filter((u) => u.id !== user.id));
|
|
addToast(`Identity purged: ${user.username}`, 'info');
|
|
}
|
|
};
|
|
|
|
const filteredUsers = users.filter(
|
|
(u) =>
|
|
u.username.toLowerCase().includes(search.toLowerCase()) ||
|
|
u.email.toLowerCase().includes(search.toLowerCase()),
|
|
);
|
|
|
|
return (
|
|
<div className="space-y-6 animate-fadeIn pb-24 container py-8">
|
|
<div className="flex flex-col md:flex-row justify-between items-end gap-6 border-b border-white/5 pb-8">
|
|
<div>
|
|
<h2 className="text-4xl font-heading font-bold text-foreground mb-2 flex items-center gap-3 tracking-tight">
|
|
<Users className="text-primary w-8 h-8" /> IDENTITY GRID
|
|
</h2>
|
|
<p className="text-muted-foreground font-mono text-xs tracking-[0.2em]">USER DIRECTORY • ACCESS PERMISSIONS</p>
|
|
</div>
|
|
<div className="flex gap-3">
|
|
<Button variant="outline" onClick={() => addToast('Generating CSV matrix...', 'info')} className="border-border hover:bg-muted/50 font-mono text-xs tracking-widest uppercase">
|
|
<Download className="w-4 h-4 mr-2" /> Export
|
|
</Button>
|
|
<Button variant="primary" onClick={() => addToast('Opening Registration Terminal...', 'info')} className="shadow-glow-cyan font-mono text-xs tracking-widest uppercase">
|
|
<UserPlus className="w-4 h-4 mr-2" /> New Entity
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<Card variant="glass" className="p-0 overflow-hidden bg-card/80">
|
|
<div className="p-6 border-b border-border bg-muted/20 flex flex-col md:flex-row gap-6 justify-between items-center">
|
|
<div className="w-full md:w-96 relative group">
|
|
<Input
|
|
icon={<Search className="w-4 h-4" />}
|
|
placeholder="Search by ID or frequency..."
|
|
value={search}
|
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => setSearch(e.target.value)}
|
|
className="bg-muted/30 border-border"
|
|
/>
|
|
</div>
|
|
<div className="flex gap-3">
|
|
<Button variant="outline" size="sm" className="bg-muted/20 border-border hover:bg-muted/50 font-mono text-xs tracking-widest uppercase h-10">
|
|
<Shield className="w-3 h-3 mr-2 text-primary" /> Filter Role
|
|
</Button>
|
|
<Button variant="outline" size="sm" className="bg-muted/20 border-border hover:bg-muted/50 font-mono text-xs tracking-widest uppercase h-10">
|
|
<Activity className="w-3 h-3 mr-2 text-primary" /> Filter Status
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{loading ? (
|
|
<div className="flex justify-center py-20 opacity-40">
|
|
<Loader2 className="w-12 h-12 text-primary animate-spin" />
|
|
</div>
|
|
) : (
|
|
<div className="overflow-x-auto">
|
|
<table className="w-full text-left">
|
|
<thead>
|
|
<tr className="text-xs text-muted-foreground uppercase tracking-[0.2em] border-b border-border bg-muted/30">
|
|
<th className="py-4 pl-8">Identity</th>
|
|
<th className="py-4">Access Origin</th>
|
|
<th className="py-4">Assigned Roles</th>
|
|
<th className="py-4">Network Plan</th>
|
|
<th className="py-4">Registered</th>
|
|
<th className="py-4">Last Sync</th>
|
|
<th className="py-4 text-right pr-8">Management</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="text-sm divide-y divide-border font-sans">
|
|
{filteredUsers.map((user) => (
|
|
<UserTableRow
|
|
key={user.id}
|
|
user={user}
|
|
onBan={() => setSelectedUser(user)}
|
|
onDelete={() => handleDelete(user)}
|
|
onEditRole={() => addToast(`Modifying access roles for ${user.username}`, 'info')}
|
|
/>
|
|
))}
|
|
{filteredUsers.length === 0 && (
|
|
<tr>
|
|
<td colSpan={7} className="p-20 text-center text-muted-foreground font-mono uppercase tracking-widest opacity-30">
|
|
No entities found.
|
|
</td>
|
|
</tr>
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
)}
|
|
|
|
<div className="p-6 border-t border-border bg-muted/20 flex justify-between items-center">
|
|
<span className="text-xs font-mono text-muted-foreground uppercase tracking-widest">
|
|
Displaying {filteredUsers.length} / {users.length} active nodes
|
|
</span>
|
|
<div className="flex gap-3">
|
|
<Button variant="outline" size="sm" disabled className="border-border opacity-50 font-mono text-xs h-9">
|
|
PREV
|
|
</Button>
|
|
<Button variant="outline" size="sm" className="border-border hover:bg-muted/50 font-mono text-xs h-9">
|
|
NEXT
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
|
|
{selectedUser && (
|
|
<BanUserModal
|
|
username={selectedUser.username}
|
|
onClose={() => setSelectedUser(null)}
|
|
onConfirm={(_reason, _details, duration) => handleBan(duration)}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|