mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 20:12:08 +01:00
- Set up pre-commit hooks with husky and lint-staged for automated code quality - Improved TypeScript type safety by replacing 'any' types with proper generics - Fixed markdown linting violations (MD030 spacing) across all documentation - Fixed compound adjective hyphenation in technical documentation - Fixed invalid JSON union syntax in API documentation examples - Automated code formatting and linting on commit - Enhanced error handling with better type constraints - Configured biome and markdownlint for consistent code style - All changes verified with successful production build
1031 lines
32 KiB
TypeScript
1031 lines
32 KiB
TypeScript
"use client";
|
|
|
|
import {
|
|
Activity,
|
|
ArrowLeft,
|
|
Calendar,
|
|
Database,
|
|
Mail,
|
|
Save,
|
|
UserPlus,
|
|
Users,
|
|
} from "lucide-react";
|
|
import { useParams, useRouter } from "next/navigation";
|
|
import { useSession } from "next-auth/react";
|
|
import { useCallback, useEffect, useId, useState } from "react";
|
|
import {
|
|
AlertDialog,
|
|
AlertDialogAction,
|
|
AlertDialogCancel,
|
|
AlertDialogContent,
|
|
AlertDialogDescription,
|
|
AlertDialogFooter,
|
|
AlertDialogHeader,
|
|
AlertDialogTitle,
|
|
AlertDialogTrigger,
|
|
} from "@/components/ui/alert-dialog";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
|
|
type ToastFunction = (props: {
|
|
title: string;
|
|
description: string;
|
|
variant?: "default" | "destructive";
|
|
}) => void;
|
|
|
|
interface CompanyManagementState {
|
|
company: Company | null;
|
|
setCompany: (company: Company | null) => void;
|
|
isLoading: boolean;
|
|
setIsLoading: (loading: boolean) => void;
|
|
isSaving: boolean;
|
|
setIsSaving: (saving: boolean) => void;
|
|
editData: Partial<Company>;
|
|
setEditData: (
|
|
data: Partial<Company> | ((prev: Partial<Company>) => Partial<Company>)
|
|
) => void;
|
|
originalData: Partial<Company>;
|
|
setOriginalData: (data: Partial<Company>) => void;
|
|
showInviteUser: boolean;
|
|
setShowInviteUser: (show: boolean) => void;
|
|
inviteData: { name: string; email: string; role: string };
|
|
setInviteData: (
|
|
data:
|
|
| { name: string; email: string; role: string }
|
|
| ((prev: { name: string; email: string; role: string }) => {
|
|
name: string;
|
|
email: string;
|
|
role: string;
|
|
})
|
|
) => void;
|
|
showUnsavedChangesDialog: boolean;
|
|
setShowUnsavedChangesDialog: (show: boolean) => void;
|
|
pendingNavigation: string | null;
|
|
setPendingNavigation: (navigation: string | null) => void;
|
|
}
|
|
|
|
interface User {
|
|
id: string;
|
|
name: string;
|
|
email: string;
|
|
role: string;
|
|
createdAt: string;
|
|
invitedBy: string | null;
|
|
invitedAt: string | null;
|
|
}
|
|
|
|
interface Company {
|
|
id: string;
|
|
name: string;
|
|
email: string;
|
|
status: string;
|
|
maxUsers: number;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
users: User[];
|
|
_count: {
|
|
sessions: number;
|
|
imports: number;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Custom hook for company management state
|
|
*/
|
|
function useCompanyManagementState() {
|
|
const [company, setCompany] = useState<Company | null>(null);
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const [isSaving, setIsSaving] = useState(false);
|
|
const [editData, setEditData] = useState<Partial<Company>>({});
|
|
const [originalData, setOriginalData] = useState<Partial<Company>>({});
|
|
const [showInviteUser, setShowInviteUser] = useState(false);
|
|
const [inviteData, setInviteData] = useState({
|
|
name: "",
|
|
email: "",
|
|
role: "USER",
|
|
});
|
|
const [showUnsavedChangesDialog, setShowUnsavedChangesDialog] =
|
|
useState(false);
|
|
const [pendingNavigation, setPendingNavigation] = useState<string | null>(
|
|
null
|
|
);
|
|
|
|
return {
|
|
company,
|
|
setCompany,
|
|
isLoading,
|
|
setIsLoading,
|
|
isSaving,
|
|
setIsSaving,
|
|
editData,
|
|
setEditData,
|
|
originalData,
|
|
setOriginalData,
|
|
showInviteUser,
|
|
setShowInviteUser,
|
|
inviteData,
|
|
setInviteData,
|
|
showUnsavedChangesDialog,
|
|
setShowUnsavedChangesDialog,
|
|
pendingNavigation,
|
|
setPendingNavigation,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Custom hook for form IDs
|
|
*/
|
|
function useCompanyFormIds() {
|
|
const companyNameFieldId = useId();
|
|
const companyEmailFieldId = useId();
|
|
const maxUsersFieldId = useId();
|
|
const inviteNameFieldId = useId();
|
|
const inviteEmailFieldId = useId();
|
|
|
|
return {
|
|
companyNameFieldId,
|
|
companyEmailFieldId,
|
|
maxUsersFieldId,
|
|
inviteNameFieldId,
|
|
inviteEmailFieldId,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Custom hook for data validation and comparison
|
|
*/
|
|
function useDataComparison(
|
|
editData: Partial<Company>,
|
|
originalData: Partial<Company>
|
|
) {
|
|
const hasUnsavedChanges = useCallback(() => {
|
|
const normalizeValue = (value: string | number | null | undefined) => {
|
|
if (value === null || value === undefined || value === "") {
|
|
return "";
|
|
}
|
|
return value;
|
|
};
|
|
|
|
const normalizedEditData = {
|
|
name: normalizeValue(editData.name),
|
|
email: normalizeValue(editData.email),
|
|
status: normalizeValue(editData.status),
|
|
maxUsers: editData.maxUsers || 0,
|
|
};
|
|
|
|
const normalizedOriginalData = {
|
|
name: normalizeValue(originalData.name),
|
|
email: normalizeValue(originalData.email),
|
|
status: normalizeValue(originalData.status),
|
|
maxUsers: originalData.maxUsers || 0,
|
|
};
|
|
|
|
return (
|
|
JSON.stringify(normalizedEditData) !==
|
|
JSON.stringify(normalizedOriginalData)
|
|
);
|
|
}, [editData, originalData]);
|
|
|
|
return { hasUnsavedChanges };
|
|
}
|
|
|
|
/**
|
|
* Custom hook for company data fetching
|
|
*/
|
|
function useCompanyData(
|
|
params: { id: string | string[] },
|
|
toast: ToastFunction,
|
|
state: CompanyManagementState
|
|
) {
|
|
const { setCompany, setEditData, setOriginalData, setIsLoading } = state;
|
|
const [hasFetched, setHasFetched] = useState(false);
|
|
|
|
const fetchCompany = useCallback(async () => {
|
|
if (hasFetched) return;
|
|
|
|
try {
|
|
const response = await fetch(`/api/platform/companies/${params.id}`);
|
|
if (response.ok) {
|
|
const data = await response.json();
|
|
setCompany(data);
|
|
const companyData = {
|
|
name: data.name,
|
|
email: data.email,
|
|
status: data.status,
|
|
maxUsers: data.maxUsers,
|
|
};
|
|
setEditData(companyData);
|
|
setOriginalData(companyData);
|
|
setHasFetched(true);
|
|
} else {
|
|
const errorText = await response.text();
|
|
const errorMessage = `Failed to load company data (${response.status}: ${response.statusText})`;
|
|
|
|
console.error("Failed to fetch company - HTTP Error:", {
|
|
status: response.status,
|
|
statusText: response.statusText,
|
|
response: errorText,
|
|
url: response.url,
|
|
});
|
|
|
|
toast({
|
|
title: "Error",
|
|
description: errorMessage,
|
|
variant: "destructive",
|
|
});
|
|
}
|
|
} catch (error) {
|
|
const errorMessage =
|
|
error instanceof Error ? error.message : "Unknown error occurred";
|
|
|
|
console.error("Failed to fetch company - Network/Parse Error:", {
|
|
message: errorMessage,
|
|
error: error,
|
|
stack: error instanceof Error ? error.stack : undefined,
|
|
url: `/api/platform/companies/${params.id}`,
|
|
});
|
|
|
|
toast({
|
|
title: "Error",
|
|
description: `Failed to load company data: ${errorMessage}`,
|
|
variant: "destructive",
|
|
});
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
}, [
|
|
params.id,
|
|
hasFetched,
|
|
toast,
|
|
setCompany,
|
|
setEditData,
|
|
setOriginalData,
|
|
setIsLoading,
|
|
]);
|
|
|
|
return { fetchCompany };
|
|
}
|
|
|
|
/**
|
|
* Custom hook for navigation handling
|
|
*/
|
|
function useNavigationControl(
|
|
router: { push: (url: string) => void },
|
|
params: { id: string | string[] },
|
|
hasUnsavedChanges: () => boolean,
|
|
state: CompanyManagementState
|
|
) {
|
|
const { setPendingNavigation, setShowUnsavedChangesDialog } = state;
|
|
|
|
const handleNavigation = useCallback(
|
|
(url: string) => {
|
|
if (url.includes(`/platform/companies/${params.id}`)) {
|
|
router.push(url);
|
|
return;
|
|
}
|
|
|
|
if (hasUnsavedChanges()) {
|
|
setPendingNavigation(url);
|
|
setShowUnsavedChangesDialog(true);
|
|
} else {
|
|
router.push(url);
|
|
}
|
|
},
|
|
[
|
|
router,
|
|
params.id,
|
|
hasUnsavedChanges,
|
|
setPendingNavigation,
|
|
setShowUnsavedChangesDialog,
|
|
]
|
|
);
|
|
|
|
return { handleNavigation };
|
|
}
|
|
|
|
/**
|
|
* Helper function to render company information card
|
|
*/
|
|
function renderCompanyInfoCard(
|
|
state: CompanyManagementState,
|
|
canEdit: boolean,
|
|
companyNameFieldId: string,
|
|
companyEmailFieldId: string,
|
|
maxUsersFieldId: string,
|
|
hasUnsavedChanges: () => boolean,
|
|
handleSave: () => Promise<void>
|
|
) {
|
|
return (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Company Information</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<div>
|
|
<Label htmlFor={companyNameFieldId}>Company Name</Label>
|
|
<Input
|
|
id={companyNameFieldId}
|
|
value={state.editData.name || ""}
|
|
onChange={(e) =>
|
|
state.setEditData((prev) => ({
|
|
...prev,
|
|
name: e.target.value,
|
|
}))
|
|
}
|
|
disabled={!canEdit}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor={companyEmailFieldId}>Contact Email</Label>
|
|
<Input
|
|
id={companyEmailFieldId}
|
|
type="email"
|
|
value={state.editData.email || ""}
|
|
onChange={(e) =>
|
|
state.setEditData((prev) => ({
|
|
...prev,
|
|
email: e.target.value,
|
|
}))
|
|
}
|
|
disabled={!canEdit}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor={maxUsersFieldId}>Max Users</Label>
|
|
<Input
|
|
id={maxUsersFieldId}
|
|
type="number"
|
|
value={state.editData.maxUsers || 0}
|
|
onChange={(e) => {
|
|
const value = e.target.value;
|
|
const parsedValue = Number.parseInt(value, 10);
|
|
|
|
// Validate input: must be a positive number
|
|
const maxUsers =
|
|
!Number.isNaN(parsedValue) && parsedValue > 0
|
|
? parsedValue
|
|
: 1; // Default to 1 for invalid/negative values
|
|
|
|
state.setEditData((prev) => ({
|
|
...prev,
|
|
maxUsers,
|
|
}));
|
|
}}
|
|
disabled={!canEdit}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor="status">Status</Label>
|
|
<Select
|
|
value={state.editData.status}
|
|
onValueChange={(value) =>
|
|
state.setEditData((prev) => ({
|
|
...prev,
|
|
status: value,
|
|
}))
|
|
}
|
|
disabled={!canEdit}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="ACTIVE">Active</SelectItem>
|
|
<SelectItem value="TRIAL">Trial</SelectItem>
|
|
<SelectItem value="SUSPENDED">Suspended</SelectItem>
|
|
<SelectItem value="ARCHIVED">Archived</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
{canEdit && hasUnsavedChanges() && (
|
|
<div className="flex gap-2 pt-4 border-t">
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
state.setEditData(state.originalData);
|
|
}}
|
|
>
|
|
Cancel Changes
|
|
</Button>
|
|
<Button onClick={handleSave} disabled={state.isSaving}>
|
|
<Save className="w-4 h-4 mr-2" />
|
|
{state.isSaving ? "Saving..." : "Save Changes"}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Helper function to render users tab content
|
|
*/
|
|
function renderUsersTab(state: CompanyManagementState, canEdit: boolean) {
|
|
return (
|
|
<TabsContent value="users" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="flex items-center justify-between">
|
|
<span className="flex items-center gap-2">
|
|
<Users className="w-5 h-5" />
|
|
Users ({state.company?.users.length || 0})
|
|
</span>
|
|
{canEdit && (
|
|
<Button size="sm" onClick={() => state.setShowInviteUser(true)}>
|
|
<UserPlus className="w-4 h-4 mr-2" />
|
|
Invite User
|
|
</Button>
|
|
)}
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="space-y-4">
|
|
{state.company?.users.map((user) => (
|
|
<div
|
|
key={user.id}
|
|
className="flex items-center justify-between p-4 border rounded-lg"
|
|
>
|
|
<div className="flex items-center gap-4">
|
|
<div className="w-10 h-10 bg-blue-100 dark:bg-blue-900 rounded-full flex items-center justify-center">
|
|
<span className="text-sm font-medium text-blue-600 dark:text-blue-300">
|
|
{user.name?.charAt(0) ||
|
|
user.email.charAt(0).toUpperCase()}
|
|
</span>
|
|
</div>
|
|
<div>
|
|
<div className="font-medium">{user.name || "No name"}</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
{user.email}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-4">
|
|
<Badge variant="outline">{user.role}</Badge>
|
|
<div className="text-sm text-muted-foreground">
|
|
Joined {new Date(user.createdAt).toLocaleDateString()}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
{(state.company?.users.length || 0) === 0 && (
|
|
<div className="text-center py-8 text-muted-foreground">
|
|
No users found. Invite the first user to get started.
|
|
</div>
|
|
)}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
);
|
|
}
|
|
|
|
export default function CompanyManagement() {
|
|
const { data: session, status } = useSession();
|
|
const router = useRouter();
|
|
const params = useParams();
|
|
const { toast } = useToast();
|
|
|
|
const state = useCompanyManagementState();
|
|
const {
|
|
companyNameFieldId,
|
|
companyEmailFieldId,
|
|
maxUsersFieldId,
|
|
inviteNameFieldId,
|
|
inviteEmailFieldId,
|
|
} = useCompanyFormIds();
|
|
const { hasUnsavedChanges } = useDataComparison(
|
|
state.editData,
|
|
state.originalData
|
|
);
|
|
const { fetchCompany } = useCompanyData(
|
|
{ id: params.id as string },
|
|
toast,
|
|
state
|
|
);
|
|
const { handleNavigation } = useNavigationControl(
|
|
router,
|
|
{ id: params.id as string },
|
|
hasUnsavedChanges,
|
|
state
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (status === "loading") return;
|
|
|
|
if (!session?.user?.isPlatformUser) {
|
|
router.push("/platform/login");
|
|
return;
|
|
}
|
|
|
|
fetchCompany();
|
|
}, [status, session?.user?.isPlatformUser, fetchCompany, router]);
|
|
|
|
const handleSave = async () => {
|
|
state.setIsSaving(true);
|
|
try {
|
|
const response = await fetch(`/api/platform/companies/${params.id}`, {
|
|
method: "PATCH",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify(state.editData),
|
|
});
|
|
|
|
if (response.ok) {
|
|
const updatedCompany = await response.json();
|
|
state.setCompany(updatedCompany);
|
|
const companyData = {
|
|
name: updatedCompany.name,
|
|
email: updatedCompany.email,
|
|
status: updatedCompany.status,
|
|
maxUsers: updatedCompany.maxUsers,
|
|
};
|
|
state.setOriginalData(companyData);
|
|
toast({
|
|
title: "Success",
|
|
description: "Company updated successfully",
|
|
});
|
|
} else {
|
|
throw new Error("Failed to update company");
|
|
}
|
|
} catch (_error) {
|
|
toast({
|
|
title: "Error",
|
|
description: "Failed to update company",
|
|
variant: "destructive",
|
|
});
|
|
} finally {
|
|
state.setIsSaving(false);
|
|
}
|
|
};
|
|
|
|
const handleStatusChange = async (newStatus: string) => {
|
|
const statusAction = newStatus === "SUSPENDED" ? "suspend" : "activate";
|
|
|
|
try {
|
|
const response = await fetch(`/api/platform/companies/${params.id}`, {
|
|
method: "PATCH",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ status: newStatus }),
|
|
});
|
|
|
|
if (response.ok) {
|
|
state.setCompany((prev) =>
|
|
prev ? { ...prev, status: newStatus } : null
|
|
);
|
|
state.setEditData((prev) => ({ ...prev, status: newStatus }));
|
|
toast({
|
|
title: "Success",
|
|
description: `Company ${statusAction}d successfully`,
|
|
});
|
|
} else {
|
|
throw new Error(`Failed to ${statusAction} company`);
|
|
}
|
|
} catch (_error) {
|
|
toast({
|
|
title: "Error",
|
|
description: `Failed to ${statusAction} company`,
|
|
variant: "destructive",
|
|
});
|
|
}
|
|
};
|
|
|
|
const confirmNavigation = () => {
|
|
if (state.pendingNavigation) {
|
|
router.push(state.pendingNavigation);
|
|
state.setPendingNavigation(null);
|
|
}
|
|
state.setShowUnsavedChangesDialog(false);
|
|
};
|
|
|
|
const cancelNavigation = () => {
|
|
state.setPendingNavigation(null);
|
|
state.setShowUnsavedChangesDialog(false);
|
|
};
|
|
|
|
const handleInviteUser = async () => {
|
|
try {
|
|
const response = await fetch(
|
|
`/api/platform/companies/${params.id}/users`,
|
|
{
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify(state.inviteData),
|
|
}
|
|
);
|
|
|
|
if (response.ok) {
|
|
state.setShowInviteUser(false);
|
|
state.setInviteData({ name: "", email: "", role: "USER" });
|
|
// Refresh company data to show new user
|
|
const updatedResponse = await fetch(
|
|
`/api/platform/companies/${params.id}`
|
|
);
|
|
if (updatedResponse.ok) {
|
|
const updatedData = await updatedResponse.json();
|
|
state.setCompany(updatedData);
|
|
}
|
|
toast({
|
|
title: "Success",
|
|
description: "User invited successfully",
|
|
});
|
|
} else {
|
|
throw new Error("Failed to invite user");
|
|
}
|
|
} catch (_error) {
|
|
toast({
|
|
title: "Error",
|
|
description: "Failed to invite user",
|
|
variant: "destructive",
|
|
});
|
|
}
|
|
};
|
|
|
|
// Protect against browser back/forward and other navigation
|
|
useEffect(() => {
|
|
const handleBeforeUnload = (e: BeforeUnloadEvent) => {
|
|
if (hasUnsavedChanges()) {
|
|
e.preventDefault();
|
|
e.returnValue = "";
|
|
}
|
|
};
|
|
|
|
const handlePopState = (e: PopStateEvent) => {
|
|
if (hasUnsavedChanges()) {
|
|
const confirmLeave = window.confirm(
|
|
"You have unsaved changes. Are you sure you want to leave this page?"
|
|
);
|
|
if (!confirmLeave) {
|
|
window.history.pushState(null, "", window.location.href);
|
|
e.preventDefault();
|
|
}
|
|
}
|
|
};
|
|
|
|
window.addEventListener("beforeunload", handleBeforeUnload);
|
|
window.addEventListener("popstate", handlePopState);
|
|
|
|
return () => {
|
|
window.removeEventListener("beforeunload", handleBeforeUnload);
|
|
window.removeEventListener("popstate", handlePopState);
|
|
};
|
|
}, [hasUnsavedChanges]);
|
|
|
|
const getStatusBadgeVariant = (status: string) => {
|
|
switch (status) {
|
|
case "ACTIVE":
|
|
return "default";
|
|
case "TRIAL":
|
|
return "secondary";
|
|
case "SUSPENDED":
|
|
return "destructive";
|
|
case "ARCHIVED":
|
|
return "outline";
|
|
default:
|
|
return "default";
|
|
}
|
|
};
|
|
|
|
if (status === "loading" || state.isLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen">
|
|
<div className="text-center">Loading company details...</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!session?.user?.isPlatformUser || !state.company) {
|
|
return null;
|
|
}
|
|
|
|
const canEdit = session.user.platformRole === "SUPER_ADMIN";
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 dark:bg-gray-900">
|
|
<div className="border-b bg-white dark:bg-gray-800">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="flex justify-between items-center py-6">
|
|
<div className="flex items-center gap-4">
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => handleNavigation("/platform/dashboard")}
|
|
>
|
|
<ArrowLeft className="w-4 h-4 mr-2" />
|
|
Back to Dashboard
|
|
</Button>
|
|
<div>
|
|
<div className="flex items-center gap-3">
|
|
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">
|
|
{state.company.name}
|
|
</h1>
|
|
<Badge variant={getStatusBadgeVariant(state.company.status)}>
|
|
{state.company.status}
|
|
</Badge>
|
|
</div>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400">
|
|
Company Management
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
{canEdit && (
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={() => state.setShowInviteUser(true)}
|
|
>
|
|
<UserPlus className="w-4 h-4 mr-2" />
|
|
Invite User
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<Tabs defaultValue="overview" className="space-y-6">
|
|
<TabsList>
|
|
<TabsTrigger value="overview">Overview</TabsTrigger>
|
|
<TabsTrigger value="users">Users</TabsTrigger>
|
|
<TabsTrigger value="settings">Settings</TabsTrigger>
|
|
<TabsTrigger value="analytics">Analytics</TabsTrigger>
|
|
</TabsList>
|
|
|
|
<TabsContent value="overview" className="space-y-6">
|
|
{/* Stats Overview */}
|
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-6">
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">
|
|
Total Users
|
|
</CardTitle>
|
|
<Users className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">
|
|
{state.company.users.length}
|
|
</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
of {state.company.maxUsers} maximum
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">
|
|
Total Sessions
|
|
</CardTitle>
|
|
<Database className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">
|
|
{state.company._count.sessions}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">
|
|
Data Imports
|
|
</CardTitle>
|
|
<Activity className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">
|
|
{state.company._count.imports}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Created</CardTitle>
|
|
<Calendar className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-sm font-bold">
|
|
{new Date(state.company.createdAt).toLocaleDateString()}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
|
|
{/* Company Info */}
|
|
{renderCompanyInfoCard(
|
|
state,
|
|
canEdit,
|
|
companyNameFieldId,
|
|
companyEmailFieldId,
|
|
maxUsersFieldId,
|
|
hasUnsavedChanges,
|
|
handleSave
|
|
)}
|
|
</TabsContent>
|
|
|
|
{renderUsersTab(state, canEdit)}
|
|
|
|
<TabsContent value="settings" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-red-600 dark:text-red-400">
|
|
Danger Zone
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
{canEdit && (
|
|
<>
|
|
<div className="flex items-center justify-between p-4 border border-red-200 dark:border-red-800 rounded-lg">
|
|
<div>
|
|
<h3 className="font-medium">Suspend Company</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Temporarily disable access to this company
|
|
</p>
|
|
</div>
|
|
<AlertDialog>
|
|
<AlertDialogTrigger asChild>
|
|
<Button
|
|
variant="destructive"
|
|
disabled={state.company.status === "SUSPENDED"}
|
|
>
|
|
{state.company.status === "SUSPENDED"
|
|
? "Already Suspended"
|
|
: "Suspend"}
|
|
</Button>
|
|
</AlertDialogTrigger>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>Suspend Company</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
Are you sure you want to suspend this company?
|
|
This will disable access for all users.
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
<AlertDialogAction
|
|
onClick={() => handleStatusChange("SUSPENDED")}
|
|
>
|
|
Suspend
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
</div>
|
|
|
|
{state.company.status === "SUSPENDED" && (
|
|
<div className="flex items-center justify-between p-4 border border-green-200 dark:border-green-800 rounded-lg">
|
|
<div>
|
|
<h3 className="font-medium">Reactivate Company</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Restore access to this company
|
|
</p>
|
|
</div>
|
|
<Button
|
|
variant="default"
|
|
onClick={() => handleStatusChange("ACTIVE")}
|
|
>
|
|
Reactivate
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
<TabsContent value="analytics" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Analytics</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-center py-8 text-muted-foreground">
|
|
Analytics dashboard coming soon...
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
</Tabs>
|
|
</div>
|
|
|
|
{/* Invite User Dialog */}
|
|
{state.showInviteUser && (
|
|
<div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50">
|
|
<Card className="w-full max-w-md mx-4">
|
|
<CardHeader>
|
|
<CardTitle>Invite User</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div>
|
|
<Label htmlFor={inviteNameFieldId}>Name</Label>
|
|
<Input
|
|
id={inviteNameFieldId}
|
|
value={state.inviteData.name}
|
|
onChange={(e) =>
|
|
state.setInviteData((prev) => ({
|
|
...prev,
|
|
name: e.target.value,
|
|
}))
|
|
}
|
|
placeholder="User's full name"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor={inviteEmailFieldId}>Email</Label>
|
|
<Input
|
|
id={inviteEmailFieldId}
|
|
type="email"
|
|
value={state.inviteData.email}
|
|
onChange={(e) =>
|
|
state.setInviteData((prev) => ({
|
|
...prev,
|
|
email: e.target.value,
|
|
}))
|
|
}
|
|
placeholder="user@example.com"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor="inviteRole">Role</Label>
|
|
<Select
|
|
value={state.inviteData.role}
|
|
onValueChange={(value) =>
|
|
state.setInviteData((prev) => ({ ...prev, role: value }))
|
|
}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="USER">User</SelectItem>
|
|
<SelectItem value="ADMIN">Admin</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
<div className="flex gap-2 pt-4">
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => state.setShowInviteUser(false)}
|
|
className="flex-1"
|
|
>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
onClick={handleInviteUser}
|
|
className="flex-1"
|
|
disabled={!state.inviteData.email || !state.inviteData.name}
|
|
>
|
|
<Mail className="w-4 h-4 mr-2" />
|
|
Send Invite
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)}
|
|
|
|
{/* Unsaved Changes Dialog */}
|
|
<AlertDialog
|
|
open={state.showUnsavedChangesDialog}
|
|
onOpenChange={state.setShowUnsavedChangesDialog}
|
|
>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>Unsaved Changes</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
You have unsaved changes that will be lost if you leave this page.
|
|
Are you sure you want to continue?
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel onClick={cancelNavigation}>
|
|
Stay on Page
|
|
</AlertDialogCancel>
|
|
<AlertDialogAction onClick={confirmNavigation}>
|
|
Leave Without Saving
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
</div>
|
|
);
|
|
}
|