Skip to content

Commit 63584c2

Browse files
authoredJul 29, 2022
fix: remove duplicate router logic (#1087)
1 parent fb9cee9 commit 63584c2

File tree

1 file changed

+1
-42
lines changed

1 file changed

+1
-42
lines changed
 

‎src/client/theme-default/components/VPAlgoliaSearchBox.vue

+1-42
Original file line numberDiff line numberDiff line change
@@ -60,63 +60,22 @@ function initialize(userOptions: DefaultTheme.AlgoliaSearchOptions) {
6060
},
6161
6262
hitComponent({ hit, children }: { hit: any; children: any }) {
63-
const relativeHit = hit.url.startsWith('http')
64-
? getRelativePath(hit.url as string)
65-
: hit.url
66-
6763
return {
6864
__v: null,
6965
type: 'a',
7066
ref: undefined,
7167
constructor: undefined,
7268
key: undefined,
73-
74-
props: {
75-
href: hit.url,
76-
77-
onClick(event: MouseEvent) {
78-
if (isSpecialClick(event)) {
79-
return
80-
}
81-
82-
// we rely on the native link scrolling when user is already on
83-
// the right anchor because Router doesn't support duplicated
84-
// history entries.
85-
if (route.path === relativeHit) {
86-
return
87-
}
88-
89-
// if the hits goes to another page, we prevent the native link
90-
// behavior to leverage the Router loading feature.
91-
if (route.path !== relativeHit) {
92-
event.preventDefault()
93-
}
94-
95-
router.go(relativeHit)
96-
},
97-
98-
children
99-
}
69+
props: { href: hit.url, children }
10070
}
10171
}
10272
})
10373
10474
docsearch(options)
10575
}
10676
107-
function isSpecialClick(event: MouseEvent) {
108-
return (
109-
event.button === 1 ||
110-
event.altKey ||
111-
event.ctrlKey ||
112-
event.metaKey ||
113-
event.shiftKey
114-
)
115-
}
116-
11777
function getRelativePath(absoluteUrl: string) {
11878
const { pathname, hash } = new URL(absoluteUrl)
119-
12079
return pathname + hash
12180
}
12281
</script>

0 commit comments

Comments
 (0)
Please sign in to comment.