Traefik gets the same treatment as the other six services now instead of a bespoke widget type: docker health merged with a single "Routes" stat, via the same internal container-to-container API call (http://traefik:8080/api/http/routers) it already used. No auth needed, same as before. Deleted lib/collectors/traefik.ts, lib/types/traefik-result.ts, and components/widgets/traefik/ entirely - the generic service Widget.tsx and ServiceWidgetResult shape cover it with zero new component code.
25 lines
824 B
TypeScript
25 lines
824 B
TypeScript
import type { ComponentType } from "react";
|
|
import type { Widget } from "@/lib/config/schema";
|
|
import { BookmarkWidget } from "./bookmark/Widget";
|
|
import { SearchWidget } from "./search/Widget";
|
|
import { DockerWidget } from "./docker/Widget";
|
|
import { DatabaseWidget } from "./database/Widget";
|
|
import { SystemWidget } from "./system/Widget";
|
|
import { HttpWidget } from "./http/Widget";
|
|
import { ServiceWidget } from "./service/Widget";
|
|
|
|
type WidgetComponent<T extends Widget["type"]> = ComponentType<{
|
|
widget: Extract<Widget, { type: T }>;
|
|
widgetId: string;
|
|
}>;
|
|
|
|
export const widgetRegistry: { [K in Widget["type"]]: WidgetComponent<K> } = {
|
|
bookmark: BookmarkWidget,
|
|
search: SearchWidget,
|
|
docker: DockerWidget,
|
|
database: DatabaseWidget,
|
|
system: SystemWidget,
|
|
http: HttpWidget,
|
|
service: ServiceWidget,
|
|
};
|