tftsr-devops_investigation/src/components/Proxmox/AclList.tsx
Shaun Arman 88bd5a8c95 feat(proxmox): implement HA groups manager and user management UI (phases 8-9)
- HAGroupsList: replace stub with real HaGroup type from proxmoxClient;
  columns: Name, Nodes, Restricted, No-Quorum Policy, Comment, Actions;
  empty state; onCreate/onEdit/onDelete props wired
- HAResourcesList: replace stub with real HaResource type; columns:
  Resource ID, Group, State, Max Restart, Max Relocate, Actions;
  onEnable/onRemove props; empty state
- HAPage: add useEffect data fetching for listHaGroups/listHaResources;
  auto-selects first cluster from listProxmoxClusters; multi-cluster
  dropdown when >1 cluster; wires deleteHaGroup and enableHaResource
- AclList: migrate from local AclInfo to canonical AclEntry type
  (ugid/roleid fields); composite key for rows without unique id
- UserList: migrate from local UserInfo to ProxmoxUser type; adds
  Realm, Name, Expire columns; deriveRealm helper; proper icon buttons
- RealmList: migrate from local RealmInfo to AuthRealm type (realm/type/
  comment); trimmed to three columns matching backend shape
- ACLPage: replace hardcoded dummy ACL array with real data fetching;
  add Tabs (ACL / Users / Auth Realms) with controlled state; calls
  listAcls, listUsers, listRealms on mount and cluster change; removes
  all hardcoded stub data
2026-06-12 21:55:35 -05:00

110 lines
4.0 KiB
TypeScript

import React from 'react';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/index';
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/index';
import { Button } from '@/components/ui/index';
import { Pencil, Trash2, PlusCircle, RefreshCw } from 'lucide-react';
import { AclEntry } from '@/lib/proxmoxClient';
interface AclListProps {
acls: AclEntry[];
onRefresh?: () => void;
isLoading?: boolean;
onAdd?: () => void;
onEdit?: (acl: AclEntry) => void;
onDelete?: (acl: AclEntry) => void;
}
export function AclList({
acls,
onRefresh,
isLoading,
onAdd,
onEdit,
onDelete,
}: AclListProps) {
return (
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle>Access Control Lists (ACL)</CardTitle>
<div className="flex space-x-2">
<Button variant="outline" size="sm" onClick={onRefresh} disabled={isLoading}>
<RefreshCw className="mr-2 h-4 w-4" />
Refresh
</Button>
{onAdd && (
<Button size="sm" onClick={onAdd}>
<PlusCircle className="mr-2 h-4 w-4" />
New ACL
</Button>
)}
</div>
</CardHeader>
<CardContent>
<div className="overflow-auto">
<Table>
<TableHeader>
<TableRow>
<TableHead>Path</TableHead>
<TableHead>Type</TableHead>
<TableHead>Principal</TableHead>
<TableHead>Role</TableHead>
<TableHead>Propagate</TableHead>
<TableHead className="text-right">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{acls.length === 0 ? (
<TableRow>
<TableCell colSpan={6} className="text-center text-muted-foreground py-8">
No ACL entries configured
</TableCell>
</TableRow>
) : (
acls.map((acl, index) => (
<TableRow key={`${acl.path}-${acl.ugid}-${acl.roleid}-${index}`}>
<TableCell className="font-mono text-xs">{acl.path}</TableCell>
<TableCell>
<span className={`inline-flex items-center rounded-full px-2 py-1 text-xs font-medium ${
acl.type === 'user' ? 'bg-blue-100 text-blue-800' :
acl.type === 'group' ? 'bg-purple-100 text-purple-800' :
'bg-orange-100 text-orange-800'
}`}>
{acl.type}
</span>
</TableCell>
<TableCell>{acl.ugid}</TableCell>
<TableCell>
<span className="rounded-full bg-gray-100 px-2 py-0.5 text-xs text-gray-800">
{acl.roleid}
</span>
</TableCell>
<TableCell>{acl.propagate ? 'Yes' : 'No'}</TableCell>
<TableCell className="text-right">
<div className="flex items-center justify-end space-x-2">
<button
className="rounded-md p-1 hover:bg-accent"
onClick={() => onEdit?.(acl)}
title="Edit"
>
<Pencil className="h-4 w-4" />
</button>
<button
className="rounded-md p-1 hover:bg-red-100 hover:text-red-600"
onClick={() => onDelete?.(acl)}
title="Delete"
>
<Trash2 className="h-4 w-4" />
</button>
</div>
</TableCell>
</TableRow>
))
)}
</TableBody>
</Table>
</div>
</CardContent>
</Card>
);
}