mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
22 lines
884 B
JavaScript
22 lines
884 B
JavaScript
export default function ({ isHMR, app, store, route, params, error, redirect }) {
|
|
const defaultLocale = app.i18n.fallbackLocale
|
|
// If middleware is called from hot module replacement, ignore it
|
|
if (isHMR) { return }
|
|
// Get locale from params
|
|
const locale = params.lang || defaultLocale
|
|
if (!store.state.locales.includes(locale)) {
|
|
return error({ message: 'This page could not be found.', statusCode: 404 })
|
|
}
|
|
// Set locale
|
|
store.commit('SET_LANG', locale)
|
|
app.i18n.locale = store.state.locale
|
|
// If route is /<defaultLocale>/... -> redirect to /...
|
|
if (locale === defaultLocale && route.fullPath.indexOf('/' + defaultLocale) === 0) {
|
|
const toReplace = '^/' + defaultLocale + (route.fullPath.indexOf('/' + defaultLocale + '/') === 0 ? '/' : '')
|
|
const re = new RegExp(toReplace)
|
|
return redirect(
|
|
route.fullPath.replace(re, '/')
|
|
)
|
|
}
|
|
}
|