mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-26 16:30:57 +01:00
83 lines
2.8 KiB
TypeScript
83 lines
2.8 KiB
TypeScript
import type { LoaderComponent } from "next/dynamic";
|
|
import type { QueryClient } from "@tanstack/react-query";
|
|
import type { DefaultErrorData } from "@trpc/server/unstable-core-do-not-import";
|
|
|
|
import type { IntegrationKind, WidgetKind } from "@homarr/definitions";
|
|
import type { ServerSettings } from "@homarr/server-settings";
|
|
import type { SettingsContextProps } from "@homarr/settings/creator";
|
|
import type { stringOrTranslation } from "@homarr/translation";
|
|
import type { TablerIcon } from "@homarr/ui";
|
|
|
|
import type { WidgetImports } from ".";
|
|
import type { inferOptionsFromCreator, WidgetOptionsRecord } from "./options";
|
|
|
|
const createWithDynamicImport =
|
|
<TKind extends WidgetKind, TDefinition extends WidgetDefinition>(kind: TKind, definition: TDefinition) =>
|
|
(componentLoader: () => LoaderComponent<WidgetComponentProps<TKind>>) => ({
|
|
definition: {
|
|
...definition,
|
|
kind,
|
|
},
|
|
kind,
|
|
componentLoader,
|
|
});
|
|
|
|
export type PrefetchLoader<TKind extends WidgetKind> = () => Promise<{ default: Prefetch<TKind> }>;
|
|
export type Prefetch<TKind extends WidgetKind> = (
|
|
queryClient: QueryClient,
|
|
items: {
|
|
options: inferOptionsFromCreator<WidgetOptionsRecordOf<TKind>>;
|
|
integrationIds: string[];
|
|
}[],
|
|
) => Promise<void>;
|
|
|
|
export const createWidgetDefinition = <TKind extends WidgetKind, TDefinition extends WidgetDefinition>(
|
|
kind: TKind,
|
|
definition: TDefinition,
|
|
) => ({
|
|
withDynamicImport: createWithDynamicImport(kind, definition),
|
|
});
|
|
|
|
export interface WidgetDefinition {
|
|
icon: TablerIcon;
|
|
supportedIntegrations?: IntegrationKind[];
|
|
integrationsRequired?: boolean;
|
|
createOptions: (settings: SettingsContextProps) => WidgetOptionsRecord;
|
|
errors?: Partial<
|
|
Record<
|
|
DefaultErrorData["code"],
|
|
{
|
|
icon: TablerIcon;
|
|
message: stringOrTranslation;
|
|
hideLogsLink?: boolean;
|
|
}
|
|
>
|
|
>;
|
|
}
|
|
|
|
export interface WidgetProps<TKind extends WidgetKind> {
|
|
options: inferOptionsFromCreator<WidgetOptionsRecordOf<TKind>>;
|
|
integrationIds: string[];
|
|
itemId: string | undefined; // undefined when in preview mode
|
|
}
|
|
|
|
export type WidgetComponentProps<TKind extends WidgetKind> = WidgetProps<TKind> & {
|
|
boardId: string | undefined; // undefined when in preview mode
|
|
isEditMode: boolean;
|
|
setOptions: ({ newOptions }: { newOptions: Partial<inferOptionsFromCreator<WidgetOptionsRecordOf<TKind>>> }) => void;
|
|
width: number;
|
|
height: number;
|
|
};
|
|
|
|
export type WidgetOptionsRecordOf<TKind extends WidgetKind> = WidgetImports[TKind]["definition"]["createOptions"];
|
|
|
|
/**
|
|
* The following type should only include values that can be available for user (including anonymous).
|
|
* Because they need to be provided to the client to for example set certain default values.
|
|
*/
|
|
export interface WidgetOptionsSettings {
|
|
server: {
|
|
board: Pick<ServerSettings["board"], "enableStatusByDefault" | "forceDisableStatus">;
|
|
};
|
|
}
|