Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add title tag #41

Merged
merged 6 commits into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 21 additions & 17 deletions lib/middlewares/with-ctx-react.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,24 @@ import type { ReactNode } from "react"

export const withCtxReact: Middleware<
{},
{ react: (component: ReactNode) => Response }
{ react: (component: ReactNode, title?: string) => Response }
> = async (req, ctx, next) => {
ctx.react = (component: ReactNode) => {
ctx.react = (component: ReactNode, title?: string) => {
const pathComponents = new URL(req.url).pathname.split("/").filter(Boolean)
const timezone = req.headers.get("X-Timezone") || "UTC"

return new Response(
renderToString(
<html lang="en">
<meta charSet="utf-8" />
<script src="https://cdn.tailwindcss.com" />
<style
type="text/tailwindcss"
// biome-ignore lint/security/noDangerouslySetInnerHtml: <explanation>
dangerouslySetInnerHTML={{
__html: `
<head>
<meta charSet="utf-8" />
<title>{`${title || "JLCPCB Parts Search"}`}</title>
<script src="https://cdn.tailwindcss.com" />
<style
type="text/tailwindcss"
// biome-ignore lint/security/noDangerouslySetInnerHtml: <explanation>
dangerouslySetInnerHTML={{
__html: `
a {
@apply underline text-blue-600 hover:text-blue-800 visited:text-purple-600 m-1
}
Expand All @@ -44,20 +47,21 @@ button {
@apply text-center py-2 text-xs text-gray-600 border-t border-gray-300 mt-4
}
`,
}}
/>
<script
// biome-ignore lint/security/noDangerouslySetInnerHtml: Analytics script needs to execute
dangerouslySetInnerHTML={{
__html: `
}}
/>
<script
// biome-ignore lint/security/noDangerouslySetInnerHtml: Analytics script needs to execute
dangerouslySetInnerHTML={{
__html: `
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.crossOrigin="anonymous",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug getPageViewId".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('phc_htd8AQjSfVEsFCLQMAiUooG4Q0DKBCjqYuQglc9V3Wo', {
api_host:'https://us.i.posthog.com',
person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well
})
`,
}}
/>
}}
/>
</head>
<body>
<div className="wrapper">
<div className="border-b border-gray-300 py-1 flex justify-between items-center">
Expand Down
1 change: 1 addition & 0 deletions routes/adcs/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,5 +230,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB ADC Search",
)
})
1 change: 1 addition & 0 deletions routes/analog_multiplexers/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,5 +196,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Analog Multiplexer Search",
)
})
1 change: 1 addition & 0 deletions routes/capacitors/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Capacitor Search",
)
})
1 change: 1 addition & 0 deletions routes/categories/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Component Categories",
)
})
3 changes: 3 additions & 0 deletions routes/components/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,8 @@ export default withWinterSpec({
)}
<Table rows={req.query.full ? fullComponents : components} />
</div>,
req.query.search
? `${req.query.search} - JLCPCB Component Search`
: "JLCPCB Component Search",
)
})
1 change: 1 addition & 0 deletions routes/dacs/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,5 +223,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB DAC Search",
)
})
1 change: 1 addition & 0 deletions routes/diodes/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Diode Search",
)
})
1 change: 1 addition & 0 deletions routes/headers/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Header Search",
)
})
1 change: 1 addition & 0 deletions routes/io_expanders/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,5 +178,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB I/O Expander Search",
)
})
1 change: 1 addition & 0 deletions routes/lcd_display/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,5 +226,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB LCD Display Search",
)
})
1 change: 1 addition & 0 deletions routes/led_drivers/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,5 +232,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB LED Driver Search",
)
})
1 change: 1 addition & 0 deletions routes/led_segment_display/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,5 +257,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB LED Segment Display Search",
)
})
1 change: 1 addition & 0 deletions routes/microcontrollers/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,5 +254,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Microcontroller Search",
)
})
1 change: 1 addition & 0 deletions routes/oled_display/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,5 +226,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB OLED Display Search",
)
})
1 change: 1 addition & 0 deletions routes/voltage_regulators/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,5 +190,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB Voltage Regulator Search",
)
})
1 change: 1 addition & 0 deletions routes/wifi_modules/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,5 +233,6 @@ export default withWinterSpec({
}))}
/>
</div>,
"JLCPCB WiFi Module Search",
)
})
Loading