forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.tsx
223 lines (203 loc) · 6.84 KB
/
search.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import { autocomplete, getAlgoliaResults } from '@algolia/autocomplete-js'
import algoliasearch from 'algoliasearch/lite'
import React, { createElement, Fragment, useEffect, useRef } from 'react'
import ReactDOM, { render } from 'react-dom'
// Algolia search
const appId = process.env.ALGOLIA_APP_ID
const apiKey = process.env.ALGOLIA_PUBLIC_API_KEY
const indexName = process.env.ALGOLIA_INDEX_NAME
const searchClient = algoliasearch(appId, apiKey)
const CommandIcon: React.FC = ({ children }) => {
return (
<svg width="15" height="15">
<g
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.2"
>
{children}
</g>
</svg>
)
}
const Chevron: React.FC = () => {
return (
<svg
className="h-3 w-3 inline"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M9 5l7 7-7 7"
/>
</svg>
)
}
const Result = ({ hit, components }) => {
const hierarchy = hit.hierarchy.concat(hit.title)
const isRootPage = hierarchy.length < 1
return (
<a href={hit.itemUrl}>
<div className="border-r border-gray-300 py-4 pl-2 h-full leading-relaxed">
{hit.category}
</div>
<div className="p-2 block">
<div className="text-gray-800 text-md mb-1 font-medium leading-relaxed ">
{!isRootPage &&
hierarchy.map((t, i) => (
<span key={`${hit.itemUrl}-${t}`}>
<span className="w-2 h-2 inline" key={`${t.itemUrl}`}>
{t}
</span>
{i < hierarchy.length - 1 && (
<span className="inline ml-1 mr-1">
<Chevron />
</span>
)}
</span>
))}
{isRootPage && <components.Highlight hit={hit} attribute="title" />}
</div>
<p className="text-gray-600 text-sm">
{hit.content && (
<components.Highlight hit={hit} attribute="content" />
)}
{!hit.content && (
<span style={{ wordBreak: 'break-word' }}>{hit.itemUrl}</span>
)}
</p>
</div>
</a>
)
}
const Autocomplete = (props) => {
const containerRef = useRef(null)
useEffect(() => {
if (!containerRef.current) {
return undefined
}
const search = autocomplete({
container: containerRef.current,
renderer: { createElement, Fragment },
render({ children, state, components }, root) {
const { preview } = state.context as any
render(
<Fragment>
<div className="aa-Grid">
<div className="aa-Results aa-Column">{children}</div>
<div className="aa-Footer border-t">
<ul className="DocSearch-Commands">
<li>
<span className="DocSearch-Commands-Key">
<CommandIcon>
<path d="M12 3.53088v3c0 1-1 2-2 2H4M7 11.53088l-3-3 3-3" />
</CommandIcon>
</span>
<span className="DocSearch-Label">to select</span>
</li>
<li>
<span className="DocSearch-Commands-Key">
<CommandIcon>
<path d="M7.5 3.5v8M10.5 8.5l-3 3-3-3" />
</CommandIcon>
</span>
<span className="DocSearch-Commands-Key">
<CommandIcon>
<path d="M7.5 11.5v-8M10.5 6.5l-3-3-3 3" />
</CommandIcon>
</span>
<span className="DocSearch-Label">to navigate</span>
</li>
<li>
<span className="DocSearch-Commands-Key">
<CommandIcon>
<path d="M13.6167 8.936c-.1065.3583-.6883.962-1.4875.962-.7993 0-1.653-.9165-1.653-2.1258v-.5678c0-1.2548.7896-2.1016 1.653-2.1016.8634 0 1.3601.4778 1.4875 1.0724M9 6c-.1352-.4735-.7506-.9219-1.46-.8972-.7092.0246-1.344.57-1.344 1.2166s.4198.8812 1.3445.9805C8.465 7.3992 8.968 7.9337 9 8.5c.032.5663-.454 1.398-1.4595 1.398C6.6593 9.898 6 9 5.963 8.4851m-1.4748.5368c-.2635.5941-.8099.876-1.5443.876s-1.7073-.6248-1.7073-2.204v-.4603c0-1.0416.721-2.131 1.7073-2.131.9864 0 1.6425 1.031 1.5443 2.2492h-2.956" />
</CommandIcon>
</span>
<span className="DocSearch-Label">to close</span>
</li>
</ul>
</div>
</div>
</Fragment>,
root,
)
},
...props,
})
return () => {
search.destroy()
}
}, [props])
return <div ref={containerRef} />
}
const Search = () => {
return (
<Autocomplete
aria-label="Search query results"
openOnFocus={false}
detachedMediaQuery=""
defaultActiveItemId={0}
getSources={({ query }) => [
{
sourceId: 'queryResults',
getItems() {
const res = getAlgoliaResults({
searchClient,
queries: [
{
indexName,
query,
params: {
hitsPerPage: 8,
},
},
],
transformResponse(res: any) {
// order the hits by page group
const hits = res.hits[0].sort((a, b) => (a < b ? -1 : 1))
// add page as category if there are duplicates
const hitsWithCategory = hits.map((h, i) => {
const prev = hits[i - 1] as any
// if no previous hit is in this category
if (!prev) {
return { ...h, category: h.pageTitle }
}
// skip if there is already one in this category
if (prev && prev.pageTitle === h.pageTitle) {
return h
}
// add category if needed
if (prev && prev.pageTitle !== h.pageTitle) {
return { ...h, category: h.pageTitle }
}
return h
})
return hitsWithCategory
},
})
return res
},
getItemUrl({ item }) {
return item.itemUrl
},
onActive({ item, setContext }) {
setContext({ preview: item })
},
templates: {
item({ item, components }) {
return <Result hit={item} components={components} />
},
},
},
]}
/>
)
}
ReactDOM.render(<Search />, document.getElementById('site-search'))