2024-10-06 09:15:44 +02:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import React, { useState } from "react";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
import {
|
|
|
|
Dialog,
|
|
|
|
DialogContent,
|
|
|
|
DialogHeader,
|
|
|
|
DialogTitle,
|
|
|
|
DialogTrigger,
|
|
|
|
} from "@/components/ui/dialog";
|
|
|
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
|
|
|
import { Maximize2, SwatchBookIcon, X } from "lucide-react";
|
|
|
|
import { ModelId, MODELS } from "@common/models-list";
|
|
|
|
import { useAtom, useAtomValue } from "jotai";
|
|
|
|
import { selectedModelIdAtom } from "@/atoms/user-settings-atom";
|
|
|
|
import { customModelIdsAtom } from "@/atoms/models-list-atom";
|
|
|
|
|
|
|
|
export default function SelectModel() {
|
|
|
|
const [selectedModelId, setSelectedModelId] = useAtom(selectedModelIdAtom);
|
2024-10-30 14:33:41 +01:00
|
|
|
console.log("🚀 => selectedModelId:", selectedModelId);
|
|
|
|
|
2024-10-06 09:15:44 +02:00
|
|
|
const customModelIds = useAtomValue(customModelIdsAtom);
|
|
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const [zoomedModel, setZoomedModel] = useState<ModelId | null>(null);
|
|
|
|
|
|
|
|
const handleModelSelect = (model: ModelId | string) => {
|
2024-10-30 14:33:41 +01:00
|
|
|
console.log("🚀 => model:", model);
|
|
|
|
|
2024-10-06 09:15:44 +02:00
|
|
|
setSelectedModelId(model);
|
|
|
|
setOpen(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleZoom = (event: React.MouseEvent, model: ModelId) => {
|
|
|
|
event.stopPropagation();
|
|
|
|
setZoomedModel(model);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="flex flex-col gap-4">
|
|
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
|
|
<DialogTrigger asChild>
|
|
|
|
<button className="btn btn-primary justify-start border-border">
|
|
|
|
<SwatchBookIcon className="mr-2 h-5 w-5" />
|
|
|
|
{MODELS[selectedModelId]?.name || selectedModelId}
|
|
|
|
</button>
|
|
|
|
</DialogTrigger>
|
|
|
|
<DialogContent className="z-50 sm:max-w-lg">
|
|
|
|
<DialogHeader>
|
|
|
|
<DialogTitle>Select AI Model</DialogTitle>
|
|
|
|
</DialogHeader>
|
|
|
|
<ScrollArea className="max-h-[600px] pr-4">
|
|
|
|
<div className="grid gap-4">
|
|
|
|
{Object.entries(MODELS).map((modelData) => {
|
|
|
|
const modelId = modelData[0] as ModelId;
|
|
|
|
const model = modelData[1];
|
|
|
|
return (
|
2024-10-06 09:31:25 +02:00
|
|
|
<button
|
2024-10-06 09:15:44 +02:00
|
|
|
key={modelId}
|
2024-10-06 09:31:25 +02:00
|
|
|
className="btn h-auto w-full flex-col items-start p-4"
|
2024-10-06 09:15:44 +02:00
|
|
|
onClick={() => handleModelSelect(modelId)}
|
|
|
|
>
|
|
|
|
<div className="mb-2 font-semibold">{model.name}</div>
|
|
|
|
<div className="relative h-52 w-full overflow-hidden rounded-md">
|
|
|
|
<div className="flex h-full w-full">
|
|
|
|
<img
|
2024-10-06 09:31:25 +02:00
|
|
|
src={`/model-comparison/${model.id}/before.webp`}
|
2024-10-06 09:15:44 +02:00
|
|
|
alt={`${model.name} Before`}
|
|
|
|
className="h-full w-1/2 object-cover"
|
|
|
|
/>
|
|
|
|
<img
|
|
|
|
src={`/model-comparison/${model.id}/after.webp`}
|
|
|
|
alt={`${model.name} After`}
|
|
|
|
className="h-full w-1/2 object-cover"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="pointer-events-none absolute inset-0 flex items-center justify-center">
|
|
|
|
<div className="h-full w-px bg-white opacity-50"></div>
|
|
|
|
</div>
|
|
|
|
<div className="absolute bottom-2 left-2 rounded bg-black bg-opacity-50 px-1 text-xs text-white">
|
|
|
|
Before
|
|
|
|
</div>
|
|
|
|
<div className="absolute bottom-2 right-2 rounded bg-black bg-opacity-50 px-1 text-xs text-white">
|
|
|
|
After
|
|
|
|
</div>
|
|
|
|
<Button
|
|
|
|
variant="secondary"
|
|
|
|
size="icon"
|
|
|
|
className="absolute right-2 top-2"
|
|
|
|
onClick={(e) => handleZoom(e, modelId)}
|
|
|
|
>
|
|
|
|
<Maximize2 className="h-4 w-4" />
|
|
|
|
<span className="sr-only">Zoom</span>
|
|
|
|
</Button>
|
|
|
|
</div>
|
2024-10-06 09:31:25 +02:00
|
|
|
</button>
|
2024-10-06 09:15:44 +02:00
|
|
|
);
|
|
|
|
})}
|
2024-10-06 09:31:25 +02:00
|
|
|
<p className="font-semibold text-base-content">
|
|
|
|
Imported Custom Models
|
|
|
|
</p>
|
2024-10-06 09:15:44 +02:00
|
|
|
{customModelIds.map((customModel) => {
|
|
|
|
return (
|
2024-10-06 09:31:25 +02:00
|
|
|
<button
|
2024-10-06 09:15:44 +02:00
|
|
|
key={customModel}
|
2024-10-06 09:31:25 +02:00
|
|
|
className="btn h-auto w-full flex-col items-start p-4"
|
2024-10-06 09:15:44 +02:00
|
|
|
onClick={() => handleModelSelect(customModel)}
|
|
|
|
>
|
|
|
|
{customModel}
|
2024-10-06 09:31:25 +02:00
|
|
|
</button>
|
2024-10-06 09:15:44 +02:00
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</ScrollArea>
|
|
|
|
</DialogContent>
|
|
|
|
</Dialog>
|
|
|
|
|
|
|
|
<Dialog
|
|
|
|
open={!!zoomedModel}
|
|
|
|
onOpenChange={(open) => !open && setZoomedModel(null)}
|
|
|
|
>
|
|
|
|
<DialogContent
|
|
|
|
className="h-screen w-screen max-w-full p-0"
|
|
|
|
hideCloseButton
|
|
|
|
>
|
|
|
|
<div className="relative flex h-full w-full items-center justify-center bg-black">
|
|
|
|
<div className="flex h-full w-full">
|
|
|
|
<div className="relative h-full w-1/2">
|
|
|
|
<img
|
|
|
|
src={`/model-comparison/${MODELS[zoomedModel]?.id}/before.webp`}
|
|
|
|
alt={`${MODELS[zoomedModel]?.name} Before`}
|
|
|
|
className="h-full w-full object-contain"
|
|
|
|
/>
|
|
|
|
<div className="absolute bottom-4 left-4 rounded bg-black bg-opacity-50 px-2 py-1 text-sm text-white">
|
|
|
|
Before
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="relative h-full w-1/2">
|
|
|
|
<img
|
|
|
|
src={`/model-comparison/${MODELS[zoomedModel]?.id}/after.webp`}
|
|
|
|
alt={`${MODELS[zoomedModel]?.name} After`}
|
|
|
|
className="h-full w-full object-contain"
|
|
|
|
/>
|
|
|
|
<div className="absolute bottom-4 right-4 rounded bg-black bg-opacity-50 px-2 py-1 text-sm text-white">
|
|
|
|
After
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-10-06 09:31:25 +02:00
|
|
|
<button
|
|
|
|
className="btn btn-circle btn-secondary absolute right-4 top-4"
|
2024-10-06 09:15:44 +02:00
|
|
|
onClick={() => setZoomedModel(null)}
|
|
|
|
>
|
|
|
|
<X className="h-4 w-4" />
|
|
|
|
<span className="sr-only">Close</span>
|
2024-10-06 09:31:25 +02:00
|
|
|
</button>
|
2024-10-06 09:15:44 +02:00
|
|
|
</div>
|
|
|
|
</DialogContent>
|
|
|
|
</Dialog>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|