mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
27 lines
784 B
JavaScript
27 lines
784 B
JavaScript
import { useTranslation } from "next-i18next";
|
|
import ErrorBoundary from "components/errorboundry";
|
|
|
|
import components from "widgets/components";
|
|
|
|
export default function Widget({ widget, service }) {
|
|
const { t } = useTranslation("common");
|
|
|
|
const ServiceWidget = components[widget.type];
|
|
|
|
const fullService = Object.apply({}, service);
|
|
fullService.widget = widget;
|
|
if (ServiceWidget) {
|
|
return (
|
|
<ErrorBoundary>
|
|
<ServiceWidget service={fullService} />
|
|
</ErrorBoundary>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="bg-theme-200/50 dark:bg-theme-900/20 rounded-sm m-1 flex-1 flex flex-col items-center justify-center p-1 service-missing">
|
|
<div className="font-thin text-sm">{t("widget.missing_type", { type: widget.type })}</div>
|
|
</div>
|
|
);
|
|
}
|