Skip to content

Commit 2a5d98b

Browse files
committedNov 2, 2023
some middleware fixes
1 parent fd3b05a commit 2a5d98b

File tree

3 files changed

+29
-12
lines changed

3 files changed

+29
-12
lines changed
 

‎app/[lang]/_components/FloatingNavCover.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const FloatingNavCover = async ({
1212
return (
1313
<div
1414
className="fixed bottom-6 left-1/2 transform -translate-x-1/2 p-4 bg-white rounded-xl shadow-lg gt-sm:flex lt-sm:flex-col">
15-
<a href="/about"
15+
<a href={`/${params.lang}/about`}
1616
className="inline-flex justify-center items-center mx-auto py-3 px-3 gt-lg:px-10 gt-lg:w-52 lt-sm:w-72 text-base font-medium text-center text-black rounded-lg bg-amber-100 hover:bg-amber-200 focus:bg-amber-200 dark:focus:bg-amber-400">
1717
{learn_more}
1818
</a>

‎app/[lang]/page.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ export default function Home({
1010
params
1111
}: { params: { lang: Language }
1212
}) {
13+
if (params.lang !== 'en' && params.lang !== 'fr') {
14+
params.lang = 'en';
15+
}
1316
return (
1417
<div className="flex flex-col gt-lg:justify-center w-screen h-screen">
1518
<Image src={"/Banner_Unbranded_2024.png"} alt={"McGameJam 2024"}

‎middleware.ts.a ‎middleware.ts

+25-11
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function getLocale(request: NextRequest): string | undefined {
1818
}
1919

2020
export function middleware(request: NextRequest) {
21-
console.log("request.url ", request.url);
21+
//console.log("request.url ", request.url);
2222
const pathname = new URL(request.url).pathname ? new URL(request.url).pathname : `/${new URL(request.url).pathname}`;
2323
// check if the pathname is a resource file
2424
const isResourceFile = pathname.match(/\.[0-9a-z]+$/i)
@@ -27,22 +27,36 @@ export function middleware(request: NextRequest) {
2727
locale => !pathname.startsWith(`/${locale}`) && pathname !== `/${locale}`
2828
)
2929

30-
console.log("pathnameIsMissingLocale ", pathnameIsMissingLocale);
31-
console.log("pathname ", pathname);
30+
// console.log("request.url ", request);
31+
32+
// console.log("pathnameIsMissingLocale ", pathnameIsMissingLocale);
33+
// console.log("pathname ", pathname);
3234

3335
// Redirect if there is no locale
3436
if (pathnameIsMissingLocale) {
35-
const locale = getLocale(request)
36-
return NextResponse.redirect(
37-
new URL(
38-
`/${locale}${pathname.startsWith('/') ? '' : '/'}${pathname}`,
39-
request.url
37+
const locale = getLocale(request);
38+
if (locale === 'fr') {
39+
console.log("redirecting " + pathname + " to " + `/${locale}${pathname.startsWith('/') ? '' : '/'}${pathname}`);
40+
return NextResponse.redirect(
41+
new URL(
42+
`/${locale}${pathname.startsWith('/') ? '' : '/'}${pathname}`,
43+
request.url
44+
)
45+
)
46+
} else {
47+
//console.log("rewriting " + pathname + " to " + `/en${pathname.startsWith('/') ? '' : '/'}${pathname}`);
48+
return NextResponse.redirect(
49+
new URL(
50+
`/fr${pathname.startsWith('/') ? '' : '/'}${pathname}`,
51+
request.url
52+
)
4053
)
41-
)
54+
}
4255
}
4356
}
4457

4558
export const config = {
46-
// Matcher ignoring `/_next/` and `/api/`
47-
matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)']
59+
matcher: [
60+
'/:path*'
61+
]
4862
}

0 commit comments

Comments
 (0)