File tree 1 file changed +1
-42
lines changed
src/client/theme-default/components
1 file changed +1
-42
lines changed Original file line number Diff line number Diff line change @@ -60,63 +60,22 @@ function initialize(userOptions: DefaultTheme.AlgoliaSearchOptions) {
60
60
},
61
61
62
62
hitComponent({ hit , children }: { hit: any ; children: any }) {
63
- const relativeHit = hit .url .startsWith (' http' )
64
- ? getRelativePath (hit .url as string )
65
- : hit .url
66
-
67
63
return {
68
64
__v: null ,
69
65
type: ' a' ,
70
66
ref: undefined ,
71
67
constructor: undefined ,
72
68
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 }
100
70
}
101
71
}
102
72
})
103
73
104
74
docsearch (options )
105
75
}
106
76
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
-
117
77
function getRelativePath(absoluteUrl : string ) {
118
78
const { pathname, hash } = new URL (absoluteUrl )
119
-
120
79
return pathname + hash
121
80
}
122
81
</script >
You can’t perform that action at this time.
0 commit comments