mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 01:10:54 +01:00
24 lines
720 B
TypeScript
24 lines
720 B
TypeScript
import { trpc } from "@homarr/api/server";
|
|
import { db, inArray } from "@homarr/db";
|
|
import { apps } from "@homarr/db/schema";
|
|
import { logger } from "@homarr/log";
|
|
|
|
import type { Prefetch } from "../definition";
|
|
|
|
const prefetchAllAsync: Prefetch<"app"> = async (queryClient, items) => {
|
|
const appIds = items.map((item) => item.options.appId);
|
|
const distinctAppIds = [...new Set(appIds)];
|
|
|
|
const dbApps = await db.query.apps.findMany({
|
|
where: inArray(apps.id, distinctAppIds),
|
|
});
|
|
|
|
for (const app of dbApps) {
|
|
queryClient.setQueryData(trpc.app.byId.queryKey({ id: app.id }), app);
|
|
}
|
|
|
|
logger.info(`Successfully prefetched ${dbApps.length} apps for app widget`);
|
|
};
|
|
|
|
export default prefetchAllAsync;
|