-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: vercel enable middleware and i18n redirection (#5300)
- Loading branch information
Showing
5 changed files
with
202 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import { NextResponse } from 'next/server'; | ||
import localeConfig from './i18n/config.json'; | ||
import type { NextRequest } from 'next/server'; | ||
|
||
// As set of available and enabled locales for the website | ||
// This is used for allowing us to redirect the user to any | ||
// of the available locales that we have enabled on the website | ||
const localeCodes = localeConfig | ||
.filter(locale => locale.enabled) | ||
.map(locale => locale.code); | ||
|
||
export async function middleware(req: NextRequest) { | ||
const { pathname, search } = req.nextUrl; | ||
|
||
// This function allows us to redirect with a Locale Code | ||
const redirectWithLocale = (locale: string) => { | ||
const redirectUrl = `/${locale}${pathname}${search}`; | ||
|
||
return NextResponse.redirect(new URL(redirectUrl, req.url)); | ||
}; | ||
|
||
const localeCookie = req.cookies.get('NEXT_LOCALE'); | ||
|
||
// If we already have a NEXT_LOCALE Cookie, then Redirect to the stored Locale Code | ||
if (localeCookie && localeCookie.value) { | ||
return redirectWithLocale(localeCookie.value); | ||
} | ||
|
||
// If not, we try to check if the Browser is sending `Accept-Language` Header | ||
const acceptedLanguagesRaw = req.headers.get('Accept-Language') || 'en'; | ||
|
||
// If present, we try to split the format into ['code', 'q=order', ...] | ||
// Where q= is the precedence of the Accepted Language | ||
// We then filter those out as we don't want them | ||
const acceptedLanguages = acceptedLanguagesRaw | ||
.split(';') | ||
.map(collection => collection.split(',')) | ||
.flat() | ||
.filter(locale => !locale.startsWith('q=')); | ||
|
||
// We check if we have any matching Language in the order of preference given | ||
// And if yes, we return that Locale Code | ||
const matchedLocaleCode = acceptedLanguages.find(acceptedLocale => | ||
localeCodes.some(supportedLocale => supportedLocale === acceptedLocale) | ||
); | ||
|
||
// We create a new Response Object containing the Locale Match or the default Language | ||
const responseWithCookie = redirectWithLocale(matchedLocaleCode || 'en'); | ||
|
||
// Then we set a Cookie to avoid this calculation from happening on every / hit | ||
responseWithCookie.cookies.set('NEXT_LOCALE', matchedLocaleCode || 'en'); | ||
|
||
return responseWithCookie; | ||
} | ||
|
||
export const config = { matcher: '/' }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
68d92e1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nodejs-org – ./
node-js-org.vercel.app
nodejs-org-git-major-website-redesign-openjs.vercel.app
nodejs-org-openjs.vercel.app
68d92e1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nodejs-org-stories – ./
nodejs-org-storybook.vercel.app
nodejs-org-stories-git-major-website-redesign-openjs.vercel.app
nodejs-org-stories-openjs.vercel.app