File size: 2,663 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
import { t } from "@lingui/macro";
import type { ResumeDto } from "@reactive-resume/dto";
import { useCallback, useEffect } from "react";
import { Helmet } from "react-helmet-async";
import type { LoaderFunction } from "react-router";
import { redirect } from "react-router";
import { queryClient } from "@/client/libs/query-client";
import { findResumeById } from "@/client/services/resume";
import { useBuilderStore } from "@/client/stores/builder";
import { useResumeStore } from "@/client/stores/resume";
export const BuilderPage = () => {
const frameRef = useBuilderStore((state) => state.frame.ref);
const setFrameRef = useBuilderStore((state) => state.frame.setRef);
const resume = useResumeStore((state) => state.resume);
const title = useResumeStore((state) => state.resume.title);
const syncResumeToArtboard = useCallback(() => {
setImmediate(() => {
if (!frameRef?.contentWindow) return;
const message = { type: "SET_RESUME", payload: resume.data };
frameRef.contentWindow.postMessage(message, "*");
});
}, [frameRef?.contentWindow, resume.data]);
// Send resume data to iframe on initial load
useEffect(() => {
if (!frameRef) return;
frameRef.addEventListener("load", syncResumeToArtboard);
return () => {
frameRef.removeEventListener("load", syncResumeToArtboard);
};
}, [frameRef]);
// Persistently check if iframe has loaded using setInterval
useEffect(() => {
const interval = setInterval(() => {
if (frameRef?.contentWindow?.document.readyState === "complete") {
syncResumeToArtboard();
clearInterval(interval);
}
}, 100);
return () => {
clearInterval(interval);
};
}, [frameRef]);
// Send resume data to iframe on change of resume data
useEffect(syncResumeToArtboard, [resume.data]);
return (
<>
<Helmet>
<title>
{title} - {t`Reactive Resume`}
</title>
</Helmet>
<iframe
ref={setFrameRef}
title={resume.id}
src="/artboard/builder"
className="mt-16 w-screen"
style={{ height: `calc(100vh - 64px)` }}
/>
</>
);
};
export const builderLoader: LoaderFunction<ResumeDto> = async ({ params }) => {
try {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const id = params.id!;
const resume = await queryClient.fetchQuery({
queryKey: ["resume", { id }],
queryFn: () => findResumeById({ id }),
});
useResumeStore.setState({ resume });
useResumeStore.temporal.getState().clear();
return resume;
} catch {
return redirect("/dashboard");
}
};
|