mirror of
https://github.com/fosrl/pangolin.git
synced 2026-08-02 02:30:45 +02:00
basic functionality
This commit is contained in:
@@ -0,0 +1,121 @@
|
||||
"use client";
|
||||
|
||||
import { Button } from "@app/components/ui/button";
|
||||
import {
|
||||
DropdownMenu,
|
||||
DropdownMenuContent,
|
||||
DropdownMenuItem,
|
||||
DropdownMenuTrigger
|
||||
} from "@app/components/ui/dropdown-menu";
|
||||
import { useTranslations } from "next-intl";
|
||||
import { ChevronDown } from "lucide-react";
|
||||
import { cn } from "@app/lib/cn";
|
||||
|
||||
type LauncherViewTabsProps = {
|
||||
activeViewId: number | "default";
|
||||
savedViews: Array<{ viewId: number; name: string }>;
|
||||
onSelectView: (viewId: number | "default") => void;
|
||||
};
|
||||
|
||||
export function LauncherViewTabs({
|
||||
activeViewId,
|
||||
savedViews,
|
||||
onSelectView
|
||||
}: LauncherViewTabsProps) {
|
||||
const t = useTranslations();
|
||||
|
||||
const viewOptions: Array<{
|
||||
value: number | "default";
|
||||
label: string;
|
||||
}> = [
|
||||
{ value: "default", label: t("resourceLauncherDefaultView") },
|
||||
...savedViews.map((view) => ({
|
||||
value: view.viewId,
|
||||
label: view.name
|
||||
}))
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-2 overflow-x-auto max-w-full shrink min-w-0">
|
||||
{viewOptions.map((option) => {
|
||||
const isSelected = activeViewId === option.value;
|
||||
return (
|
||||
<Button
|
||||
key={option.value}
|
||||
type="button"
|
||||
variant={
|
||||
isSelected
|
||||
? "squareOutlinePrimary"
|
||||
: "squareOutline"
|
||||
}
|
||||
className={cn(
|
||||
"shrink-0 min-w-30 shadow-none",
|
||||
isSelected && "bg-primary/10"
|
||||
)}
|
||||
onClick={() => onSelectView(option.value)}
|
||||
>
|
||||
{option.label}
|
||||
</Button>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
type LauncherSaveViewMenuProps = {
|
||||
isDefaultView: boolean;
|
||||
isAdmin: boolean;
|
||||
isOrgWideView: boolean;
|
||||
hasUnsavedChanges: boolean;
|
||||
onSaveToCurrent: () => void;
|
||||
onSaveAsNew: () => void;
|
||||
onSaveForEveryone: () => void;
|
||||
onMakePersonal: () => void;
|
||||
};
|
||||
|
||||
export function LauncherSaveViewMenu({
|
||||
isDefaultView,
|
||||
isAdmin,
|
||||
isOrgWideView,
|
||||
hasUnsavedChanges,
|
||||
onSaveToCurrent,
|
||||
onSaveAsNew,
|
||||
onSaveForEveryone,
|
||||
onMakePersonal
|
||||
}: LauncherSaveViewMenuProps) {
|
||||
const t = useTranslations();
|
||||
|
||||
return (
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant="outline" className="shrink-0">
|
||||
{hasUnsavedChanges ? (
|
||||
<span className="size-2 rounded-full bg-primary mr-2" />
|
||||
) : null}
|
||||
{t("resourceLauncherSaveView")}
|
||||
<ChevronDown className="ml-2 size-4" />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
{!isDefaultView ? (
|
||||
<DropdownMenuItem onSelect={onSaveToCurrent}>
|
||||
{t("resourceLauncherSaveToCurrentView")}
|
||||
</DropdownMenuItem>
|
||||
) : null}
|
||||
<DropdownMenuItem onSelect={onSaveAsNew}>
|
||||
{t("resourceLauncherSaveAsNewView")}
|
||||
</DropdownMenuItem>
|
||||
{isAdmin && !isDefaultView && !isOrgWideView ? (
|
||||
<DropdownMenuItem onSelect={onSaveForEveryone}>
|
||||
{t("resourceLauncherSaveForEveryone")}
|
||||
</DropdownMenuItem>
|
||||
) : null}
|
||||
{isAdmin && !isDefaultView && isOrgWideView ? (
|
||||
<DropdownMenuItem onSelect={onMakePersonal}>
|
||||
{t("resourceLauncherMakePersonal")}
|
||||
</DropdownMenuItem>
|
||||
) : null}
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user