Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(nuxt): resolve internal target: blank links with base #23751

Merged
merged 17 commits into from Oct 20, 2023
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 10 additions & 4 deletions packages/nuxt/src/app/components/nuxt-link.ts
@@ -1,12 +1,11 @@
import type { ComputedRef, DefineComponent, InjectionKey, PropType } from 'vue'
import { computed, defineComponent, h, inject, onBeforeUnmount, onMounted, provide, ref, resolveComponent } from 'vue'
import type { RouteLocation, RouteLocationRaw } from '#vue-router'
import { hasProtocol, parseQuery, parseURL, withTrailingSlash, withoutTrailingSlash } from 'ufo'

import { hasProtocol, joinURL, parseQuery, parseURL, withLeadingSlash, withTrailingSlash, withoutTrailingSlash } from 'ufo'
import { preloadRouteComponents } from '../composables/preload'
import { onNuxtReady } from '../composables/ready'
import { navigateTo, useRouter } from '../composables/router'
import { useNuxtApp } from '../nuxt'
import { useNuxtApp, useRuntimeConfig } from '../nuxt'
import { cancelIdleCallback, requestIdleCallback } from '../compat/idle-callback'

// @ts-expect-error virtual file
Expand Down Expand Up @@ -280,8 +279,15 @@ export function defineNuxtLink (options: NuxtLinkOptions) {

// Resolves `to` value if it's a route location object
// converts `""` to `null` to prevent the attribute from being added as empty (`href=""`)
const href = typeof to.value === 'object' ? router.resolve(to.value)?.href ?? null : to.value || null
let href = typeof to.value === 'object' ? router.resolve(to.value)?.href ?? null : to.value || null

// joins with `baseURL` if it's an relative link
if (import.meta.client && href && href.startsWith('/') && !href.startsWith('//')) {
Jannchie marked this conversation as resolved.
Show resolved Hide resolved
Jannchie marked this conversation as resolved.
Show resolved Hide resolved
const baseURL = useRuntimeConfig().app.baseURL
if (href !== '/' && !href.startsWith(baseURL)) {
Jannchie marked this conversation as resolved.
Show resolved Hide resolved
href = joinURL(withLeadingSlash(withTrailingSlash(baseURL)), href)
}
}
// Resolves `target` value
const target = props.target || null

Expand Down