nuxt-i18n-micro 1.30.2 → 1.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"id":"edff320c-6841-423f-a5dc-20a9dd95fd1e","timestamp":1729777215384}
1
+ {"id":"905aebfb-7659-4ec4-86aa-8f4e4ded54d9","timestamp":1729794403479}
@@ -0,0 +1 @@
1
+ {"id":"905aebfb-7659-4ec4-86aa-8f4e4ded54d9","timestamp":1729794403479,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
@@ -1,12 +1,12 @@
1
1
  <!DOCTYPE html><html data-capo=""><head><meta charset="utf-8">
2
2
  <meta name="viewport" content="width=device-width, initial-scale=1">
3
3
  <link rel="stylesheet" href="/__nuxt-i18n-micro/_nuxt/entry.BqOlM4b6.css">
4
- <link rel="modulepreload" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/mVL4Ag1z.js">
4
+ <link rel="modulepreload" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/Czi4MokJ.js">
5
5
  <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/B6E6ObS_.js">
6
6
  <link rel="prefetch" as="style" crossorigin href="/__nuxt-i18n-micro/_nuxt/error-404.C_4C5G96.css">
7
- <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/B3qz2zap.js">
8
- <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/CtNJ_juG.js">
7
+ <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/BfH8Q6Ot.js">
8
+ <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/0GmYR_kR.js">
9
9
  <link rel="prefetch" as="style" crossorigin href="/__nuxt-i18n-micro/_nuxt/error-500.CBAEdpZV.css">
10
- <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/CKE-slgQ.js">
11
- <script type="module" src="/__nuxt-i18n-micro/_nuxt/mVL4Ag1z.js" crossorigin></script></head><body><div id="__nuxt"></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1729777228519,false]</script>
12
- <script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__nuxt-i18n-micro",buildId:"edff320c-6841-423f-a5dc-20a9dd95fd1e",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script></body></html>
10
+ <link rel="prefetch" as="script" crossorigin href="/__nuxt-i18n-micro/_nuxt/2C6ahHCU.js">
11
+ <script type="module" src="/__nuxt-i18n-micro/_nuxt/Czi4MokJ.js" crossorigin></script></head><body><div id="__nuxt"></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1729794418117,false]</script>
12
+ <script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__nuxt-i18n-micro",buildId:"905aebfb-7659-4ec4-86aa-8f4e4ded54d9",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script></body></html>
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-i18n-micro",
3
3
  "configKey": "i18n",
4
- "version": "1.30.2",
4
+ "version": "1.31.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -184,15 +184,7 @@ class PageManager {
184
184
  const page = pages[i];
185
185
  const pagePath = page.path ?? "";
186
186
  const pageName = page.name ?? "";
187
- const defaultLocalePath = this.localizedPaths[pagePath]?.[this.defaultLocale.code];
188
- if (defaultLocalePath !== void 0)
189
- continue;
190
- const isLocalized = Object.values(this.localizedPaths).some(
191
- (paths) => paths[this.defaultLocale.code] === pagePath
192
- );
193
- if (isLocalized)
194
- continue;
195
- if (this.globalLocaleRoutes[pageName] !== void 0)
187
+ if (this.globalLocaleRoutes[pageName] === false)
196
188
  continue;
197
189
  if (!/^\/:locale/.test(pagePath) && pagePath !== "/") {
198
190
  pages.splice(i, 1);
@@ -533,6 +525,17 @@ const module = defineNuxtModule({
533
525
  localeManager.ensureTranslationFilesExist(pagesNames, options.translationDir, nuxt.options.rootDir);
534
526
  }
535
527
  pageManager.extendPages(pages, nuxt.options.rootDir, options.customRegexMatcher);
528
+ if (options.includeDefaultLocaleRoute) {
529
+ const fallbackRoute = {
530
+ path: "/:pathMatch(.*)*",
531
+ name: "custom-fallback-route",
532
+ file: resolver.resolve("./runtime/components/locale-redirect.vue"),
533
+ meta: {
534
+ globalLocaleRoutes: options.globalLocaleRoutes
535
+ }
536
+ };
537
+ pages.push(fallbackRoute);
538
+ }
536
539
  nuxt.options.generate.routes = Array.isArray(nuxt.options.generate.routes) ? nuxt.options.generate.routes : [];
537
540
  const prerenderRoutes = [];
538
541
  localeManager.locales.forEach((locale) => {
@@ -0,0 +1,42 @@
1
+ <template>
2
+ <div />
3
+ </template>
4
+
5
+ <script setup>
6
+ import { useRoute, useI18n, createError, navigateTo } from '#imports'
7
+
8
+ const route = useRoute()
9
+ const { $getLocales, $defaultLocale } = useI18n()
10
+
11
+ const locales = $getLocales().map(locale => locale.code)
12
+ const defaultLocale = $defaultLocale() || 'en'
13
+ const pathSegments = route.fullPath.split('/')
14
+ const firstSegment = pathSegments[1]
15
+
16
+ const generateRouteName = (segments) => {
17
+ return segments
18
+ .filter(segment => segment)
19
+ .map(segment => segment.replace(/:/g, ''))
20
+ .join('-')
21
+ }
22
+
23
+ const currentPageName = generateRouteName(pathSegments)
24
+ const globalLocaleRoutes = route.meta.globalLocaleRoutes ?? {}
25
+
26
+ if (globalLocaleRoutes && globalLocaleRoutes[currentPageName]) {
27
+ const localizedRoutes = globalLocaleRoutes[currentPageName]
28
+ if (localizedRoutes && localizedRoutes[defaultLocale]) {
29
+ const localizedPath = localizedRoutes[defaultLocale]
30
+ navigateTo(localizedPath, { redirectCode: 301, external: true })
31
+ }
32
+ }
33
+ else if (!locales.includes(firstSegment)) {
34
+ const newPath = `/${defaultLocale}${route.fullPath}`
35
+ navigateTo(newPath, { redirectCode: 301, external: true })
36
+ }
37
+ else {
38
+ throw createError({
39
+ statusCode: 404,
40
+ })
41
+ }
42
+ </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-i18n-micro",
3
- "version": "1.30.2",
3
+ "version": "1.31.0",
4
4
  "description": "Nuxt I18n Micro is a lightweight, high-performance internationalization module for Nuxt, designed to handle multi-language support with minimal overhead, fast build times, and efficient runtime performance.",
5
5
  "repository": "s00d/nuxt-i18n-micro",
6
6
  "license": "MIT",
@@ -1 +0,0 @@
1
- {"id":"edff320c-6841-423f-a5dc-20a9dd95fd1e","timestamp":1729777215384,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}