Skip to content

Commit 3ca5e38

Browse files
authoredMar 22, 2025··
feat: accept route name argument getRouteBaseName (#3446)
1 parent e675b96 commit 3ca5e38

File tree

10 files changed

+35
-16
lines changed

10 files changed

+35
-16
lines changed
 

‎docs/content/docs/04.api/05.vue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The APIs listed are available in the Options API. They are kept for Nuxt2 to mig
1212
### `getRouteBaseName()`{lang="ts"}
1313

1414
- **Arguments**:
15-
- route (type: `Route`{lang="ts-type"}, default: current route)
15+
- route (type: `string | Route`{lang="ts-type"}, default: current route)
1616
- **Returns**: `string`{lang="ts-type"}
1717

1818
Returns base name of the passed route (uses the current route by default). The base name of a route is its name without a locale suffix or other metadata added by `@nuxtjs/i18n`.

‎docs/content/docs/06.composables/06.use-route-base-name.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `useRouteBaseName()`{lang="ts"} composable returns a function that gets the
99
```ts
1010
declare function useRouteBaseName(
1111
options?: I18nCommonRoutingOptionsWithComposable
12-
): (givenRoute?: Route | RouteLocationNormalizedLoaded) => string | undefined
12+
): (givenRoute?: string | Route | RouteLocationNormalizedLoaded) => string | undefined
1313
```
1414

1515
## Usage
@@ -18,9 +18,9 @@ declare function useRouteBaseName(
1818
<script setup>
1919
const route = useRoute()
2020
const getRouteBaseName = useRouteBaseName()
21-
const baseRouteName = computed(() => {
22-
return getRouteBaseName(route)
23-
})
21+
const baseRouteName = computed(() => getRouteBaseName(route))
22+
// or
23+
const baseRouteNameString = computed(() => getRouteBaseName(route.name))
2424
</script>
2525
2626
<template>

‎specs/basic_usage.spec.ts

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ describe('basic usage', async () => {
110110
const { page } = await renderPage('/nuxt-context-extension')
111111

112112
expect(await getText(page, '#get-route-base-name')).toEqual('nuxt-context-extension')
113+
expect(await getText(page, '#get-route-base-name-string')).toEqual('nuxt-context-extension')
113114
expect(await getText(page, '#switch-locale-path')).toEqual('/ja/nuxt-context-extension')
114115
expect(await getText(page, '#locale-path')).toEqual('/nl/nuxt-context-extension')
115116

‎specs/basic_usage_compat_4.spec.ts

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ describe('basic usage - compatibilityVersion: 4', async () => {
110110
const { page } = await renderPage('/nuxt-context-extension')
111111

112112
expect(await getText(page, '#get-route-base-name')).toEqual('nuxt-context-extension')
113+
expect(await getText(page, '#get-route-base-name-string')).toEqual('nuxt-context-extension')
113114
expect(await getText(page, '#switch-locale-path')).toEqual('/ja/nuxt-context-extension')
114115
expect(await getText(page, '#locale-path')).toEqual('/nl/nuxt-context-extension')
115116

‎specs/fixtures/basic_usage/pages/nuxt-context-extension.vue

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<template>
44
<div>
55
<p id="get-route-base-name">{{ $nuxt.$getRouteBaseName($route) }}</p>
6+
<p id="get-route-base-name-string">{{ $nuxt.$getRouteBaseName($route.name) }}</p>
67
<p id="switch-locale-path">{{ $nuxt.$switchLocalePath('ja') }}</p>
78
<p id="locale-path">{{ $nuxt.$localePath('nuxt-context-extension', 'nl') }}</p>
89
<p id="locale-route">{{ JSON.stringify($nuxt.$localeRoute()) }}</p>

‎specs/fixtures/basic_usage_compat_4/app/pages/nuxt-context-extension.vue

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<template>
44
<div>
55
<p id="get-route-base-name">{{ $nuxt.$getRouteBaseName($route) }}</p>
6+
<p id="get-route-base-name-string">{{ $nuxt.$getRouteBaseName($route.name) }}</p>
67
<p id="switch-locale-path">{{ $nuxt.$switchLocalePath('ja') }}</p>
78
<p id="locale-path">{{ $nuxt.$localePath('nuxt-context-extension', 'nl') }}</p>
89
<p id="locale-route">{{ JSON.stringify($nuxt.$localeRoute()) }}</p>

‎src/runtime/composables/index.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,14 @@ import type { Ref } from 'vue'
2020
import type { Locale } from 'vue-i18n'
2121
import type { resolveRoute } from '../routing/routing'
2222
import type { I18nHeadMetaInfo, I18nHeadOptions, SeoAttributesOptions } from '#internal-i18n-types'
23-
import type { RouteLocationAsRelativeI18n, RouteLocationRaw, RouteLocationResolvedI18n, RouteMapI18n } from 'vue-router'
23+
import type {
24+
RouteLocationAsRelativeI18n,
25+
RouteLocationRaw,
26+
RouteLocationResolvedI18n,
27+
RouteMap,
28+
RouteMapI18n
29+
} from 'vue-router'
30+
import type { RouteLocationGenericPath } from '../types'
2431

2532
export * from 'vue-i18n'
2633
export * from './shared'
@@ -189,15 +196,14 @@ export type ResolveRouteFunction = (route: RouteLocationRaw, locale?: Locale) =>
189196
*
190197
* @returns Route base name (without localization suffix) or `undefined` if no name was found.
191198
*/
192-
export type RouteBaseNameFunction = <Name extends keyof RouteMapI18n = keyof RouteMapI18n>(
193-
route: Name | RouteLocationI18nGenericPath
199+
export type RouteBaseNameFunction = <Name extends keyof RouteMap = keyof RouteMap>(
200+
route: Name | RouteLocationGenericPath
194201
) => string | undefined
195202

196203
/**
197204
* Returns a {@link RouteBaseNameFunction} used get the base name of a route.
198205
*/
199206
export function useRouteBaseName(): RouteBaseNameFunction {
200-
// @ts-expect-error - generated types conflict with the generic types we accept
201207
return wrapComposable(getRouteBaseName)
202208
}
203209

‎src/runtime/routing/routing.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,26 @@ import { getLocaleRouteName, getRouteName } from './utils'
88
import { extendPrefixable, extendSwitchLocalePathIntercepter, type CommonComposableOptions } from '../utils'
99

1010
import type { Locale } from 'vue-i18n'
11-
import type { RouteLocationRaw, RouteLocationPathRaw, RouteLocationNamedRaw, RouteRecordNameGeneric } from 'vue-router'
11+
import type { RouteLocationRaw, RouteLocationPathRaw, RouteLocationNamedRaw, RouteMap } from 'vue-router'
1212
import type { I18nPublicRuntimeConfig } from '#internal-i18n-types'
13-
import type { CompatRoute } from '../types'
13+
import type { CompatRoute, RouteLocationGenericPath } from '../types'
1414

1515
/**
1616
* Returns base name of current (if argument not provided) or passed in route.
1717
*
1818
* @remarks
1919
* Base name is name of the route without locale suffix and other metadata added by nuxt i18n module
2020
*/
21-
export function getRouteBaseName(common: CommonComposableOptions, route: { name?: RouteRecordNameGeneric | null }) {
21+
export function getRouteBaseName<Name extends keyof RouteMap = keyof RouteMap>(
22+
common: CommonComposableOptions,
23+
route: Name | RouteLocationGenericPath | null
24+
) {
2225
const _route = unref(route)
23-
if (_route == null || !_route.name) {
26+
const routeName = typeof _route === 'object' ? _route?.name : _route
27+
if (_route == null || !routeName) {
2428
return
2529
}
26-
const name = getRouteName(_route.name)
30+
const name = getRouteName(routeName)
2731
return name.split(common.runtimeConfig.public.i18n.routesNameSeparator)[0]
2832
}
2933

‎src/runtime/routing/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function getNormalizedLocales(locales: Locale[] | LocaleObject[]): Locale
1010
return locales.map(x => (typeof x === 'string' ? { code: x } : x))
1111
}
1212

13-
export function getRouteName(routeName?: string | symbol | null) {
13+
export function getRouteName(routeName?: string | symbol | number | null) {
1414
if (typeof routeName === 'string') return routeName
1515
if (routeName != null) return routeName.toString()
1616
return '(null)'

‎src/runtime/types.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@ import type { NuxtApp } from '#app'
22
import type { ComputedRef } from 'vue'
33
import type { Directions, LocaleObject, Strategies } from '#internal-i18n-types'
44
import type { I18n, Locale, Composer, VueI18n, ExportedGlobalComposer } from 'vue-i18n'
5-
import type { RouteLocationNormalizedGeneric, RouteRecordNameGeneric } from 'vue-router'
5+
import type { RouteLocationAsRelative, RouteLocationNormalizedGeneric, RouteRecordNameGeneric } from 'vue-router'
66

77
export type CompatRoute = Omit<RouteLocationNormalizedGeneric, 'name'> & {
88
name: RouteRecordNameGeneric | null
99
}
1010

11+
export type RouteLocationGenericPath = Omit<RouteLocationAsRelative, 'path' | 'name'> & {
12+
path?: string
13+
name?: RouteLocationAsRelative['name'] | null
14+
}
15+
1116
/**
1217
* Called before the app's locale is switched.
1318
*

0 commit comments

Comments
 (0)
Please sign in to comment.