From 63584c2812d2c5172356ef2615ac608684d52681 Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Fri, 29 Jul 2022 14:21:46 +0530 Subject: [PATCH] fix: remove duplicate router logic (#1087) --- .../components/VPAlgoliaSearchBox.vue | 43 +------------------ 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/src/client/theme-default/components/VPAlgoliaSearchBox.vue b/src/client/theme-default/components/VPAlgoliaSearchBox.vue index 7e3ca208..3079f28e 100644 --- a/src/client/theme-default/components/VPAlgoliaSearchBox.vue +++ b/src/client/theme-default/components/VPAlgoliaSearchBox.vue @@ -60,43 +60,13 @@ function initialize(userOptions: DefaultTheme.AlgoliaSearchOptions) { }, hitComponent({ hit, children }: { hit: any; children: any }) { - const relativeHit = hit.url.startsWith('http') - ? getRelativePath(hit.url as string) - : hit.url - return { __v: null, type: 'a', ref: undefined, constructor: undefined, key: undefined, - - props: { - href: hit.url, - - onClick(event: MouseEvent) { - if (isSpecialClick(event)) { - return - } - - // we rely on the native link scrolling when user is already on - // the right anchor because Router doesn't support duplicated - // history entries. - if (route.path === relativeHit) { - return - } - - // if the hits goes to another page, we prevent the native link - // behavior to leverage the Router loading feature. - if (route.path !== relativeHit) { - event.preventDefault() - } - - router.go(relativeHit) - }, - - children - } + props: { href: hit.url, children } } } }) @@ -104,19 +74,8 @@ function initialize(userOptions: DefaultTheme.AlgoliaSearchOptions) { docsearch(options) } -function isSpecialClick(event: MouseEvent) { - return ( - event.button === 1 || - event.altKey || - event.ctrlKey || - event.metaKey || - event.shiftKey - ) -} - function getRelativePath(absoluteUrl: string) { const { pathname, hash } = new URL(absoluteUrl) - return pathname + hash }