mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
84 lines
2.8 KiB
JavaScript
84 lines
2.8 KiB
JavaScript
import Image from "next/future/image";
|
|
import { Disclosure } from "@headlessui/react";
|
|
|
|
import Status from "./status";
|
|
import Widget from "./widget";
|
|
import Docker from "./widgets/service/docker";
|
|
|
|
function resolveIcon(icon) {
|
|
if (icon.startsWith("http")) {
|
|
return `/api/proxy?url=${encodeURIComponent(icon)}`;
|
|
}
|
|
|
|
if (icon.startsWith("/")) {
|
|
return icon;
|
|
}
|
|
|
|
if (icon.endsWith(".png")) {
|
|
return `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${icon}`;
|
|
}
|
|
|
|
return `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${icon}.png`;
|
|
}
|
|
|
|
export default function Item({ service }) {
|
|
return (
|
|
<li key={service.name}>
|
|
<Disclosure>
|
|
<div
|
|
className={`${
|
|
service.href && service.href !== "#" ? "cursor-pointer " : "cursor-default "
|
|
}transition-all h-15 mb-3 p-1 rounded-md font-medium text-theme-700 hover:text-theme-700/70 dark:text-theme-200 dark:hover:text-theme-300 shadow-md shadow-black/10 dark:shadow-black/20 bg-white/50 hover:bg-theme-300/20 dark:bg-white/10 dark:hover:bg-white/20 backdrop-blur-md`}
|
|
>
|
|
<div className="flex">
|
|
{service.icon && (
|
|
<button
|
|
type="button"
|
|
onClick={() => {
|
|
if (service.href && service.href !== "#") {
|
|
window.open(service.href, "_blank").focus();
|
|
}
|
|
}}
|
|
className="flex-shrink-0 flex items-center justify-center w-12 "
|
|
>
|
|
<Image src={resolveIcon(service.icon)} width={32} height={32} alt="logo" />
|
|
</button>
|
|
)}
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => {
|
|
if (service.href && service.href !== "#") {
|
|
window.open(service.href, "_blank").focus();
|
|
}
|
|
}}
|
|
className="flex-1 flex items-center justify-between rounded-r-md "
|
|
>
|
|
<div className="flex-1 px-2 py-2 text-sm text-left">
|
|
{service.name}
|
|
<p className="text-theme-500 dark:text-theme-400 text-xs font-extralight">{service.description}</p>
|
|
</div>
|
|
</button>
|
|
{service.container && (
|
|
<Disclosure.Button
|
|
as="div"
|
|
className="flex-shrink-0 flex items-center justify-center w-12 cursor-pointer"
|
|
>
|
|
<Status service={service} />
|
|
</Disclosure.Button>
|
|
)}
|
|
</div>
|
|
|
|
<Disclosure.Panel>
|
|
<div className="w-full">
|
|
<Docker service={{ widget: { container: service.container, server: service.server } }} />
|
|
</div>
|
|
</Disclosure.Panel>
|
|
|
|
{service.widget && <Widget service={service} />}
|
|
</div>
|
|
</Disclosure>
|
|
</li>
|
|
);
|
|
}
|