mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
import dynamic from "next/dynamic";
|
|
|
|
import ErrorBoundary from "components/errorboundry";
|
|
|
|
const widgetMappings = {
|
|
weatherapi: dynamic(() => import("components/widgets/weather/weather")),
|
|
openweathermap: dynamic(() => import("components/widgets/openweathermap/weather")),
|
|
resources: dynamic(() => import("components/widgets/resources/resources")),
|
|
search: dynamic(() => import("components/widgets/search/search")),
|
|
greeting: dynamic(() => import("components/widgets/greeting/greeting")),
|
|
datetime: dynamic(() => import("components/widgets/datetime/datetime")),
|
|
logo: dynamic(() => import("components/widgets/logo/logo"), { ssr: false }),
|
|
unifi_console: dynamic(() => import("components/widgets/unifi_console/unifi_console")),
|
|
glances: dynamic(() => import("components/widgets/glances/glances")),
|
|
openmeteo: dynamic(() => import("components/widgets/openmeteo/openmeteo")),
|
|
longhorn: dynamic(() => import("components/widgets/longhorn/longhorn")),
|
|
kubernetes: dynamic(() => import("components/widgets/kubernetes/kubernetes")),
|
|
};
|
|
|
|
export default function Widget({ widget, style }) {
|
|
const InfoWidget = widgetMappings[widget.type];
|
|
|
|
if (InfoWidget) {
|
|
return (
|
|
<ErrorBoundary>
|
|
<InfoWidget options={{ ...widget.options, style }} />
|
|
</ErrorBoundary>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex-none flex flex-row items-center justify-center">
|
|
Missing <strong>{widget.type}</strong>
|
|
</div>
|
|
);
|
|
}
|