mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-22 22:35:23 +02:00
- Updated the ShowIconSettings component to include a dialog for icon selection and upload. - Added functionality to handle file uploads, including validation for file types and sizes. - Implemented icon removal feature within the dialog. - Refactored icon selection logic to improve user experience and maintainability. - Adjusted the application page to integrate the updated ShowIconSettings component.
278 lines
7.8 KiB
TypeScript
278 lines
7.8 KiB
TypeScript
import DOMPurify from "dompurify";
|
|
import { GlobeIcon, Pencil, Search, X } from "lucide-react";
|
|
import { useEffect, useMemo, useState } from "react";
|
|
import { toast } from "sonner";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Dropzone } from "@/components/ui/dropzone";
|
|
import { Input } from "@/components/ui/input";
|
|
import { type BundledIcon, bundledIcons } from "@/lib/bundled-icons";
|
|
import { api } from "@/utils/api";
|
|
|
|
interface ShowIconSettingsProps {
|
|
applicationId: string;
|
|
icon?: string | null;
|
|
}
|
|
|
|
const svgToDataUrl = (icon: BundledIcon): string => {
|
|
const svg = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#${icon.hex}"><path d="${icon.path}"/></svg>`;
|
|
return `data:image/svg+xml;base64,${btoa(svg)}`;
|
|
};
|
|
|
|
export const ShowIconSettings = ({
|
|
applicationId,
|
|
icon,
|
|
}: ShowIconSettingsProps) => {
|
|
const [open, setOpen] = useState(false);
|
|
const [iconSearchQuery, setIconSearchQuery] = useState("");
|
|
const [iconsToShow, setIconsToShow] = useState(24);
|
|
|
|
const filteredIcons = useMemo(() => {
|
|
if (!iconSearchQuery) return bundledIcons;
|
|
const q = iconSearchQuery.toLowerCase();
|
|
return bundledIcons.filter(
|
|
(i) =>
|
|
i.title.toLowerCase().includes(q) || i.slug.toLowerCase().includes(q),
|
|
);
|
|
}, [iconSearchQuery]);
|
|
|
|
const displayedIcons = filteredIcons.slice(0, iconsToShow);
|
|
const hasMoreIcons = filteredIcons.length > iconsToShow;
|
|
|
|
const utils = api.useUtils();
|
|
const { mutateAsync: updateApplication } =
|
|
api.application.update.useMutation();
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
setIconSearchQuery("");
|
|
setIconsToShow(24);
|
|
}
|
|
}, [open]);
|
|
|
|
const handleIconSelect = async (selectedIcon: BundledIcon) => {
|
|
try {
|
|
const dataUrl = svgToDataUrl(selectedIcon);
|
|
await updateApplication({
|
|
applicationId,
|
|
icon: dataUrl,
|
|
});
|
|
toast.success("Icon saved successfully");
|
|
await utils.application.one.invalidate({ applicationId });
|
|
setOpen(false);
|
|
} catch (_error) {
|
|
toast.error("Error saving icon");
|
|
}
|
|
};
|
|
|
|
const handleRemoveIcon = async () => {
|
|
try {
|
|
await updateApplication({
|
|
applicationId,
|
|
icon: null,
|
|
});
|
|
toast.success("Icon removed");
|
|
await utils.application.one.invalidate({ applicationId });
|
|
} catch (_error) {
|
|
toast.error("Error removing icon");
|
|
}
|
|
};
|
|
|
|
const sanitizeSvg = (svgContent: string): string | null => {
|
|
const clean = DOMPurify.sanitize(svgContent, {
|
|
USE_PROFILES: { svg: true, svgFilters: true },
|
|
ADD_TAGS: ["use"],
|
|
});
|
|
if (!clean) return null;
|
|
return `data:image/svg+xml;base64,${btoa(clean)}`;
|
|
};
|
|
|
|
const handleFileUpload = async (files: FileList | null) => {
|
|
if (!files || files.length === 0) return;
|
|
const file = files[0];
|
|
if (!file) return;
|
|
|
|
const allowedTypes = [
|
|
"image/jpeg",
|
|
"image/jpg",
|
|
"image/png",
|
|
"image/svg+xml",
|
|
];
|
|
const fileExtension = file.name.split(".").pop()?.toLowerCase();
|
|
const allowedExtensions = ["jpg", "jpeg", "png", "svg"];
|
|
|
|
if (
|
|
!allowedTypes.includes(file.type) &&
|
|
!allowedExtensions.includes(fileExtension || "")
|
|
) {
|
|
toast.error("Only JPG, JPEG, PNG, and SVG files are allowed");
|
|
return;
|
|
}
|
|
|
|
if (file.size > 2 * 1024 * 1024) {
|
|
toast.error("Image size must be less than 2MB");
|
|
return;
|
|
}
|
|
|
|
const isSvg = file.type === "image/svg+xml" || fileExtension === "svg";
|
|
|
|
if (isSvg) {
|
|
const text = await file.text();
|
|
const sanitizedDataUrl = sanitizeSvg(text);
|
|
if (!sanitizedDataUrl) {
|
|
toast.error("Invalid SVG file");
|
|
return;
|
|
}
|
|
try {
|
|
await updateApplication({
|
|
applicationId,
|
|
icon: sanitizedDataUrl,
|
|
});
|
|
toast.success("Icon saved!");
|
|
await utils.application.one.invalidate({ applicationId });
|
|
setOpen(false);
|
|
} catch (_error) {
|
|
toast.error("Error saving icon");
|
|
}
|
|
return;
|
|
}
|
|
|
|
const reader = new FileReader();
|
|
reader.onload = async (event) => {
|
|
const result = event.target?.result as string;
|
|
try {
|
|
await updateApplication({
|
|
applicationId,
|
|
icon: result,
|
|
});
|
|
toast.success("Icon saved!");
|
|
await utils.application.one.invalidate({ applicationId });
|
|
setOpen(false);
|
|
} catch (_error) {
|
|
toast.error("Error saving icon");
|
|
}
|
|
};
|
|
reader.readAsDataURL(file);
|
|
};
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>
|
|
<button
|
|
type="button"
|
|
className="relative group flex items-center justify-center"
|
|
>
|
|
{icon ? (
|
|
// biome-ignore lint/performance/noImgElement: icon is data URL or base64
|
|
<img
|
|
src={icon}
|
|
alt="Application icon"
|
|
className="h-8 w-8 object-contain"
|
|
/>
|
|
) : (
|
|
<GlobeIcon className="h-6 w-6 text-muted-foreground" />
|
|
)}
|
|
<div className="absolute inset-0 flex items-center justify-center bg-black/50 rounded opacity-0 group-hover:opacity-100 transition-opacity">
|
|
<Pencil className="h-3 w-3 text-white" />
|
|
</div>
|
|
</button>
|
|
</DialogTrigger>
|
|
<DialogContent className="max-w-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle className="flex items-center justify-between">
|
|
Change Icon
|
|
{icon && (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={handleRemoveIcon}
|
|
className="text-muted-foreground"
|
|
>
|
|
<X className="size-4 mr-1" />
|
|
Remove icon
|
|
</Button>
|
|
)}
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-4">
|
|
<div className="relative">
|
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 size-4 text-muted-foreground" />
|
|
<Input
|
|
placeholder="Search icons (e.g. react, vue, docker)..."
|
|
value={iconSearchQuery}
|
|
onChange={(e) => setIconSearchQuery(e.target.value)}
|
|
className="pl-9"
|
|
/>
|
|
</div>
|
|
|
|
<div className="max-h-[300px] overflow-y-auto border rounded-lg p-4">
|
|
{displayedIcons.length === 0 ? (
|
|
<div className="text-center py-8 text-sm text-muted-foreground">
|
|
No icons found
|
|
</div>
|
|
) : (
|
|
<>
|
|
<div className="grid grid-cols-4 sm:grid-cols-6 md:grid-cols-8 gap-2">
|
|
{displayedIcons.map((i) => (
|
|
<button
|
|
type="button"
|
|
key={i.slug}
|
|
onClick={() => handleIconSelect(i)}
|
|
className="flex flex-col items-center gap-1.5 p-2 rounded-lg border hover:border-primary hover:bg-muted transition-colors group"
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
className="size-7 group-hover:scale-110 transition-transform"
|
|
fill={`#${i.hex}`}
|
|
>
|
|
<path d={i.path} />
|
|
</svg>
|
|
<span className="text-[10px] text-muted-foreground capitalize truncate w-full text-center">
|
|
{i.title}
|
|
</span>
|
|
</button>
|
|
))}
|
|
</div>
|
|
{hasMoreIcons && (
|
|
<div className="flex justify-center mt-3">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={() => setIconsToShow((prev) => prev + 24)}
|
|
>
|
|
Load More ({filteredIcons.length - iconsToShow} remaining)
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
<div className="relative pt-3 border-t">
|
|
<p className="text-sm text-muted-foreground text-center mb-3">
|
|
or upload a custom icon
|
|
</p>
|
|
<Dropzone
|
|
dropMessage="Drag & drop an icon or click to upload"
|
|
accept=".jpg,.jpeg,.png,.svg,image/jpeg,image/png,image/svg+xml"
|
|
onChange={handleFileUpload}
|
|
classNameWrapper="border-2 border-dashed border-border hover:border-primary bg-muted/30 hover:bg-muted/50 transition-all rounded-lg"
|
|
/>
|
|
<div className="mt-2 text-center text-xs text-muted-foreground">
|
|
Supported formats: JPG, JPEG, PNG, SVG (max 2MB)
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|