-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathresource.locales.ts
42 lines (34 loc) · 1.08 KB
/
resource.locales.ts
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
import { cacheHeader } from "pretty-cache-header"
import { z } from "zod"
import { resources } from "~/localization/resource"
import { globalAppContext } from "~/server/context"
import type { Route } from "./+types/resource.locales"
export async function loader({ request, context }: Route.LoaderArgs) {
const { env } = context.get(globalAppContext)
const url = new URL(request.url)
const lng = z
.string()
.refine((lng): lng is keyof typeof resources => Object.keys(resources).includes(lng))
.parse(url.searchParams.get("lng"))
const namespaces = resources[lng]
const ns = z
.string()
.refine((ns): ns is keyof typeof namespaces => {
return Object.keys(resources[lng]).includes(ns)
})
.parse(url.searchParams.get("ns"))
const headers = new Headers()
// On production, we want to add cache headers to the response
if (env.APP_DEPLOYMENT_ENV === "production") {
headers.set(
"Cache-Control",
cacheHeader({
maxAge: "5m",
sMaxage: "1d",
staleWhileRevalidate: "7d",
staleIfError: "7d",
})
)
}
return Response.json(namespaces[ns], { headers })
}