mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-06 19:04:41 +02:00
98 lines
3.4 KiB
TypeScript
98 lines
3.4 KiB
TypeScript
|
"use client";
|
||
|
|
||
|
import { useState } from "react";
|
||
|
import {
|
||
|
Card,
|
||
|
CardHeader,
|
||
|
CardTitle,
|
||
|
CardContent,
|
||
|
CardDescription
|
||
|
} from "@/components/ui/card";
|
||
|
import { Button } from "@/components/ui/button";
|
||
|
import Link from "next/link";
|
||
|
import { ArrowRight, Plus } from "lucide-react";
|
||
|
interface Organization {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
}
|
||
|
|
||
|
interface OrganizationLandingProps {
|
||
|
organizations?: Organization[];
|
||
|
disableCreateOrg?: boolean;
|
||
|
}
|
||
|
|
||
|
export default function OrganizationLanding({
|
||
|
organizations = [],
|
||
|
disableCreateOrg = false
|
||
|
}: OrganizationLandingProps) {
|
||
|
const [selectedOrg, setSelectedOrg] = useState<string | null>(null);
|
||
|
|
||
|
const handleOrgClick = (orgId: string) => {
|
||
|
setSelectedOrg(orgId);
|
||
|
};
|
||
|
|
||
|
function getDescriptionText() {
|
||
|
if (organizations.length === 0) {
|
||
|
if (!disableCreateOrg) {
|
||
|
return "You are not currently a member of any organizations. Create an organization to get started.";
|
||
|
} else {
|
||
|
return "You are not currently a member of any organizations.";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return `You're a member of ${organizations.length} ${
|
||
|
organizations.length === 1 ? "organization" : "organizations"
|
||
|
}.`;
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Card>
|
||
|
<CardHeader>
|
||
|
<CardTitle>Welcome to Pangolin</CardTitle>
|
||
|
<CardDescription>{getDescriptionText()}</CardDescription>
|
||
|
</CardHeader>
|
||
|
<CardContent>
|
||
|
{organizations.length === 0 ? (
|
||
|
disableCreateOrg ? (
|
||
|
<p className="text-center text-muted-foreground">
|
||
|
You are not currently a member of any organizations.
|
||
|
</p>
|
||
|
) : (
|
||
|
<Link href="/setup">
|
||
|
<Button
|
||
|
className="w-full h-auto py-3 text-lg"
|
||
|
size="lg"
|
||
|
>
|
||
|
<Plus className="mr-2 h-5 w-5" />
|
||
|
Create an Organization
|
||
|
</Button>
|
||
|
</Link>
|
||
|
)
|
||
|
) : (
|
||
|
<ul className="space-y-2">
|
||
|
{organizations.map((org) => (
|
||
|
<li key={org.id}>
|
||
|
<Link href={`/${org.id}/settings`}>
|
||
|
<Button
|
||
|
variant="outline"
|
||
|
className={`flex items-center justify-between w-full h-auto py-3 ${
|
||
|
selectedOrg === org.id
|
||
|
? "ring-2 ring-primary"
|
||
|
: ""
|
||
|
}`}
|
||
|
>
|
||
|
<div className="truncate">
|
||
|
{org.name}
|
||
|
</div>
|
||
|
<ArrowRight size={20} />
|
||
|
</Button>
|
||
|
</Link>
|
||
|
</li>
|
||
|
))}
|
||
|
</ul>
|
||
|
)}
|
||
|
</CardContent>
|
||
|
</Card>
|
||
|
);
|
||
|
}
|