From 8cb19f4ec8894cd54bef304a6e289a49f504cdd6 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Fri, 31 Jan 2025 22:10:14 +0500 Subject: [PATCH] add scripts to the head --- src/build.tsx | 4 +++ src/templates/Components/Head.tsx | 46 +++++++++++++++++++++++++------ src/templates/index.tsx | 2 +- 3 files changed, 43 insertions(+), 9 deletions(-) diff --git a/src/build.tsx b/src/build.tsx index 2f9b0b9..f0bad95 100644 --- a/src/build.tsx +++ b/src/build.tsx @@ -125,6 +125,10 @@ let html = renderToString( `${environment == "prod" ? process.env.WEB_URL : "."}/data/videos.json`, ], dns: [process.env.ENDPOINT as string, "https://wsrv.nl"], + script: [ + environment == "dev" ? "/static/dev/hotreload.js" : "", + environment == "dev" ? "/static/populate_index.js" : "/static/populate_index.min.js" + ] }} /> ); diff --git a/src/templates/Components/Head.tsx b/src/templates/Components/Head.tsx index 70f8bfd..027bd63 100644 --- a/src/templates/Components/Head.tsx +++ b/src/templates/Components/Head.tsx @@ -7,6 +7,7 @@ export default function head(props: { environment: "prod" | "dev"; preload?: string[]; dns?: string[]; + script?: string[]; }) { const mimetype = `image/${ props.image.split(".")[props.image.split(".").length - 1] @@ -26,14 +27,43 @@ export default function head(props: { - - {props.preload ? props.preload.map((item) => ) : ""} - {props.dns ? props.dns.map((item) => ) : ""} - {props.environment == "dev" ? ( - - ) : ( - "" - )} + + {props.preload + ? props.preload.map((item) => + item ? ( + + ) : ( + "" + ) + ) + : ""} + {props.dns + ? props.dns.map((item) => + item ? ( + + ) : ( + "" + ) + ) + : ""} + {props.script + ? props.script.map((item) => + item ? : "" + ) + : ""} ); } diff --git a/src/templates/index.tsx b/src/templates/index.tsx index 10b06a9..3e4ce90 100644 --- a/src/templates/index.tsx +++ b/src/templates/index.tsx @@ -11,6 +11,7 @@ export default function Index(props: { url: string; preload?: string[]; dns?: string[]; + script?: string[]; }; }) { return ( @@ -56,7 +57,6 @@ export default function Index(props: { - );