* feat: add home board for users * fix: format issues * fix: deepsource issue * chore: address pull request feedback * fix: typecheck issue
117 lines
2.8 KiB
TypeScript
117 lines
2.8 KiB
TypeScript
"use client";
|
|
|
|
import type { PropsWithChildren } from "react";
|
|
import {
|
|
createContext,
|
|
useCallback,
|
|
useContext,
|
|
useEffect,
|
|
useState,
|
|
} from "react";
|
|
import { usePathname } from "next/navigation";
|
|
|
|
import type { RouterOutputs } from "@homarr/api";
|
|
import { clientApi } from "@homarr/api/client";
|
|
|
|
import { updateBoardName } from "./_client";
|
|
|
|
const BoardContext = createContext<{
|
|
board: RouterOutputs["board"]["getHomeBoard"];
|
|
isReady: boolean;
|
|
markAsReady: (id: string) => void;
|
|
} | null>(null);
|
|
|
|
export const BoardProvider = ({
|
|
children,
|
|
initialBoard,
|
|
}: PropsWithChildren<{
|
|
initialBoard: RouterOutputs["board"]["getBoardByName"];
|
|
}>) => {
|
|
const pathname = usePathname();
|
|
const utils = clientApi.useUtils();
|
|
const [readySections, setReadySections] = useState<string[]>([]);
|
|
const { data } = clientApi.board.getBoardByName.useQuery(
|
|
{ name: initialBoard.name },
|
|
{
|
|
initialData: initialBoard,
|
|
refetchOnMount: false,
|
|
refetchOnWindowFocus: false,
|
|
refetchOnReconnect: false,
|
|
},
|
|
);
|
|
// Update the board name so it can be used within updateBoard method
|
|
updateBoardName(initialBoard.name);
|
|
|
|
// Invalidate the board when the pathname changes
|
|
// This allows to refetch the board when it might have changed - e.g. if someone else added an item
|
|
useEffect(() => {
|
|
return () => {
|
|
setReadySections([]);
|
|
void utils.board.getBoardByName.invalidate({ name: initialBoard.name });
|
|
};
|
|
}, [pathname, utils, initialBoard.name]);
|
|
|
|
useEffect(() => {
|
|
setReadySections((previous) =>
|
|
previous.filter((id) =>
|
|
data.sections.some((section) => section.id === id),
|
|
),
|
|
);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [data.sections.length, setReadySections]);
|
|
|
|
const markAsReady = useCallback((id: string) => {
|
|
setReadySections((previous) =>
|
|
previous.includes(id) ? previous : [...previous, id],
|
|
);
|
|
}, []);
|
|
|
|
return (
|
|
<BoardContext.Provider
|
|
value={{
|
|
board: data,
|
|
isReady: data.sections.length === readySections.length,
|
|
markAsReady,
|
|
}}
|
|
>
|
|
{children}
|
|
</BoardContext.Provider>
|
|
);
|
|
};
|
|
|
|
export const useMarkSectionAsReady = () => {
|
|
const context = useContext(BoardContext);
|
|
|
|
if (!context) {
|
|
throw new Error("Board is required");
|
|
}
|
|
|
|
return context.markAsReady;
|
|
};
|
|
|
|
export const useIsBoardReady = () => {
|
|
const context = useContext(BoardContext);
|
|
|
|
if (!context) {
|
|
throw new Error("Board is required");
|
|
}
|
|
|
|
return context.isReady;
|
|
};
|
|
|
|
export const useRequiredBoard = () => {
|
|
const optionalBoard = useOptionalBoard();
|
|
|
|
if (!optionalBoard) {
|
|
throw new Error("Board is required");
|
|
}
|
|
|
|
return optionalBoard;
|
|
};
|
|
|
|
export const useOptionalBoard = () => {
|
|
const context = useContext(BoardContext);
|
|
|
|
return context?.board;
|
|
};
|