-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathsearchBar.tsx
More file actions
419 lines (386 loc) · 15.9 KB
/
searchBar.tsx
File metadata and controls
419 lines (386 loc) · 15.9 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
'use client';
import { useClickListener } from "@/hooks/useClickListener";
import { SearchQueryParams } from "@/lib/types";
import { cn, createPathWithQueryParams } from "@/lib/utils";
import {
cursorCharLeft,
cursorCharRight,
cursorDocEnd,
cursorDocStart,
cursorLineBoundaryBackward,
cursorLineBoundaryForward,
deleteCharBackward,
deleteCharForward,
deleteGroupBackward,
deleteGroupForward,
deleteLineBoundaryBackward,
deleteLineBoundaryForward,
history,
historyKeymap,
selectAll,
selectCharLeft,
selectCharRight,
selectDocEnd,
selectDocStart,
selectLineBoundaryBackward,
selectLineBoundaryForward
} from "@codemirror/commands";
import CodeMirror, { Annotation, EditorView, KeyBinding, keymap, ReactCodeMirrorRef } from "@uiw/react-codemirror";
import { cva } from "class-variance-authority";
import { useRouter } from "next/navigation";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { useHotkeys } from 'react-hotkeys-hook';
import { SearchSuggestionsBox } from "./searchSuggestionsBox";
import { useSuggestionsData } from "./useSuggestionsData";
import { zoekt } from "./zoektLanguageExtension";
import { CounterClockwiseClockIcon } from "@radix-ui/react-icons";
import { useSuggestionModeAndQuery } from "./useSuggestionModeAndQuery";
import { Separator } from "@/components/ui/separator";
import { Tooltip, TooltipTrigger, TooltipContent } from "@/components/ui/tooltip";
import { Toggle } from "@/components/ui/toggle";
import { useDomain } from "@/hooks/useDomain";
import React from "react";
import Link from "next/link";
import { CaseSensitiveIcon, RegexIcon, Wand2Icon } from "lucide-react";
import { SearchAssistBox } from "./searchAssistBox";
import useCaptureEvent from "@/hooks/useCaptureEvent";
import { useCodeMirrorTheme } from "@/hooks/useCodeMirrorTheme";
const LANGUAGE_MODEL_DOCS_URL = "https://docs.sourcebot.dev/docs/configuration/language-model-providers";
interface SearchBarProps {
className?: string;
size?: "default" | "sm";
defaults?: {
isRegexEnabled?: boolean;
isCaseSensitivityEnabled?: boolean;
query?: string;
}
autoFocus?: boolean;
isSearchAssistSupported: boolean;
}
const searchBarKeymap: readonly KeyBinding[] = ([
{ key: "ArrowLeft", run: cursorCharLeft, shift: selectCharLeft, preventDefault: true },
{ key: "ArrowRight", run: cursorCharRight, shift: selectCharRight, preventDefault: true },
{ key: "Home", run: cursorLineBoundaryBackward, shift: selectLineBoundaryBackward, preventDefault: true },
{ key: "Mod-Home", run: cursorDocStart, shift: selectDocStart },
{ key: "End", run: cursorLineBoundaryForward, shift: selectLineBoundaryForward, preventDefault: true },
{ key: "Mod-End", run: cursorDocEnd, shift: selectDocEnd },
{ key: "Mod-a", run: selectAll },
{ key: "Backspace", run: deleteCharBackward, shift: deleteCharBackward },
{ key: "Delete", run: deleteCharForward },
{ key: "Mod-Backspace", mac: "Alt-Backspace", run: deleteGroupBackward },
{ key: "Mod-Delete", mac: "Alt-Delete", run: deleteGroupForward },
{ mac: "Mod-Backspace", run: deleteLineBoundaryBackward },
{ mac: "Mod-Delete", run: deleteLineBoundaryForward }
] as KeyBinding[]).concat(historyKeymap);
const searchBarContainerVariants = cva(
"search-bar-container flex items-center justify-center py-0.5 px-2 border rounded-md relative",
{
variants: {
size: {
default: "min-h-10",
sm: "min-h-8"
}
},
defaultVariants: {
size: "default",
}
}
);
export const SearchBar = ({
className,
size,
autoFocus,
defaults: {
isRegexEnabled: defaultIsRegexEnabled = false,
isCaseSensitivityEnabled: defaultIsCaseSensitivityEnabled = false,
query: defaultQuery = "",
} = {},
isSearchAssistSupported,
}: SearchBarProps) => {
const router = useRouter();
const domain = useDomain();
const captureEvent = useCaptureEvent();
const suggestionBoxRef = useRef<HTMLDivElement>(null);
const editorRef = useRef<ReactCodeMirrorRef>(null);
const [cursorPosition, setCursorPosition] = useState(0);
const [activePanel, setActivePanel] = useState<'suggestions' | 'searchAssist'>();
const isSuggestionsEnabled = activePanel === 'suggestions';
const isSearchAssistEnabled = activePanel === 'searchAssist';
const [isSuggestionsBoxFocused, setIsSuggestionsBoxFocused] = useState(false);
const [isHistorySearchEnabled, setIsHistorySearchEnabled] = useState(false);
const [isRegexEnabled, setIsRegexEnabled] = useState(defaultIsRegexEnabled);
const [isCaseSensitivityEnabled, setIsCaseSensitivityEnabled] = useState(defaultIsCaseSensitivityEnabled);
const focusEditor = useCallback(() => editorRef.current?.view?.focus(), []);
const focusSuggestionsBox = useCallback(() => suggestionBoxRef.current?.focus(), []);
const [_query, setQuery] = useState(defaultQuery);
const query = useMemo(() => {
// Replace any newlines with spaces to handle
// copy & pasting text with newlines.
return _query.replaceAll(/\n/g, " ");
}, [_query]);
// When the user navigates backwards/forwards while on the
// search page (causing the `query` search param to change),
// we want to update what query is displayed in the search bar.
useEffect(() => {
if (defaultQuery) {
setQuery(defaultQuery);
}
}, [defaultQuery])
const { suggestionMode, suggestionQuery } = useSuggestionModeAndQuery({
isSuggestionsEnabled,
isHistorySearchEnabled,
cursorPosition,
query,
});
const suggestionData = useSuggestionsData({
suggestionMode,
suggestionQuery,
});
const theme = useCodeMirrorTheme();
const extensions = useMemo(() => {
return [
zoekt(),
keymap.of(searchBarKeymap),
history(),
EditorView.lineWrapping,
EditorView.updateListener.of(update => {
if (update.selectionSet) {
const selection = update.state.selection.main;
if (selection.empty) {
setCursorPosition(selection.anchor);
}
}
})
];
}, []);
// Hotkey to focus the search bar.
useHotkeys('/', (event) => {
event.preventDefault();
focusEditor();
setActivePanel('suggestions');
if (editorRef.current?.view) {
cursorDocEnd({
state: editorRef.current.view.state,
dispatch: editorRef.current.view.dispatch,
});
}
});
// Collapse the suggestions box if the user clicks outside of the search bar container.
useClickListener('.search-bar-container', (isElementClicked) => {
if (!isElementClicked) {
setActivePanel(undefined);
} else {
setActivePanel(prev => prev ?? 'suggestions');
}
});
const onSubmit = useCallback((query: string) => {
setActivePanel(undefined);
setIsHistorySearchEnabled(false);
const url = createPathWithQueryParams(`/${domain}/search`,
[SearchQueryParams.query, query],
[SearchQueryParams.isRegexEnabled, isRegexEnabled ? "true" : null],
[SearchQueryParams.isCaseSensitivityEnabled, isCaseSensitivityEnabled ? "true" : null],
);
router.push(url);
}, [domain, router, isRegexEnabled, isCaseSensitivityEnabled]);
return (
<div
className={cn(searchBarContainerVariants({ size, className }))}
onKeyDown={(e) => {
if (e.key === 'Enter') {
e.preventDefault();
if (activePanel !== 'searchAssist') {
setActivePanel(undefined);
onSubmit(query);
}
}
if (e.key === 'Escape') {
e.preventDefault();
setActivePanel(undefined);
}
if (e.key === 'ArrowDown' && !isSearchAssistEnabled) {
e.preventDefault();
setActivePanel('suggestions');
focusSuggestionsBox();
}
if (e.key === 'ArrowUp') {
e.preventDefault();
}
}}
>
<div className="flex flex-row items-center gap-1">
<SearchBarButton
isToggled={isHistorySearchEnabled}
onClick={() => {
setQuery("");
setIsHistorySearchEnabled(!isHistorySearchEnabled);
setActivePanel('suggestions');
focusEditor();
}}
tooltip="Search history"
icon={CounterClockwiseClockIcon}
/>
<SearchBarButton
isToggled={isSearchAssistEnabled}
onClick={() => {
setQuery("");
setIsHistorySearchEnabled(false);
setActivePanel(prev => {
const next = prev === 'searchAssist' ? undefined : 'searchAssist';
if (next === 'searchAssist') {
captureEvent('wa_search_assist_opened', {});
}
return next;
});
focusEditor();
}}
tooltip="AI search assist"
icon={Wand2Icon}
preventBlurOnClick
disabled={!isSearchAssistSupported}
disabledTooltip={
<span>
AI search assist requires a language model to be configured.{" "}
<Link href={LANGUAGE_MODEL_DOCS_URL} target="_blank" className="underline">
Learn more
</Link>.
</span>
}
/>
</div>
<Separator
className="mx-1 h-6"
orientation="vertical"
/>
<CodeMirror
ref={editorRef}
className="w-full"
placeholder={isHistorySearchEnabled ? "Filter history..." : "Search (/) through repos..."}
value={query}
onChange={(value) => {
setQuery(value);
// Whenever the user types, we want to re-enable
// the suggestions box.
setActivePanel('suggestions');
}}
theme={theme}
basicSetup={false}
extensions={extensions}
indentWithTab={false}
autoFocus={autoFocus ?? false}
/>
<div className="flex flex-row items-center gap-1 ml-1">
<SearchBarButton
isToggled={isCaseSensitivityEnabled}
onClick={() => setIsCaseSensitivityEnabled(!isCaseSensitivityEnabled)}
tooltip={`${isCaseSensitivityEnabled ? "Disable" : "Enable"} case sensitivity`}
icon={CaseSensitiveIcon}
/>
<SearchBarButton
isToggled={isRegexEnabled}
onClick={() => setIsRegexEnabled(!isRegexEnabled)}
tooltip={`${isRegexEnabled ? "Disable" : "Enable"} regular expressions`}
icon={RegexIcon}
/>
</div>
<SearchAssistBox
className={size === "sm" ? "top-7" : "top-9"}
isEnabled={isSearchAssistEnabled}
onBlur={() => {
setActivePanel(undefined);
}}
onQueryGenerated={(translatedQuery: string) => {
setQuery(translatedQuery);
editorRef.current?.view?.dispatch({
changes: { from: 0, to: editorRef.current.view.state.doc.length, insert: translatedQuery },
selection: { anchor: translatedQuery.length },
});
setActivePanel(undefined);
focusEditor();
// Always enable regex and case sensitivity when using search assist.
setIsRegexEnabled(true);
setIsCaseSensitivityEnabled(true);
}}
/>
<SearchSuggestionsBox
ref={suggestionBoxRef}
className={size === "sm" ? "top-9" : "top-12"}
query={query}
suggestionQuery={suggestionQuery}
suggestionMode={suggestionMode}
onCompletion={(newQuery: string, newCursorPosition: number, autoSubmit = false) => {
setQuery(newQuery);
// Move the cursor to it's new position.
// @note : normally, react-codemirror handles syncing `query`
// and the document state, but this happens on re-render. Since
// we want to move the cursor before the component re-renders,
// we manually update the document state inline.
editorRef.current?.view?.dispatch({
changes: { from: 0, to: query.length, insert: newQuery },
annotations: [Annotation.define<boolean>().of(true)],
});
editorRef.current?.view?.dispatch({
selection: { anchor: newCursorPosition, head: newCursorPosition },
});
// Re-focus the editor since suggestions cause focus to be lost (both click & keyboard)
editorRef.current?.view?.focus();
if (autoSubmit) {
onSubmit(newQuery);
}
}}
isEnabled={isSuggestionsEnabled}
onReturnFocus={() => {
focusEditor();
}}
isFocused={isSuggestionsBoxFocused}
onFocus={() => {
setIsSuggestionsBoxFocused(document.activeElement === suggestionBoxRef.current);
}}
onBlur={() => {
setIsSuggestionsBoxFocused(document.activeElement === suggestionBoxRef.current);
}}
cursorPosition={cursorPosition}
{...suggestionData}
/>
</div>
)
}
const SearchBarButton = ({
isToggled,
onClick,
tooltip,
icon: Icon,
preventBlurOnClick = false,
disabled = false,
disabledTooltip,
}: {
isToggled: boolean,
onClick: () => void,
tooltip: React.ReactNode,
icon: React.ElementType,
preventBlurOnClick?: boolean,
disabled?: boolean,
disabledTooltip?: React.ReactNode,
}) => {
return (
<Tooltip>
<TooltipTrigger asChild={true}>
{/* @see : https://github.com/shadcn-ui/ui/issues/1988#issuecomment-1980597269 */}
<div>
<Toggle
pressed={isToggled}
className="h-6 w-6 min-w-6 px-0 p-1 cursor-pointer"
onClick={onClick}
onMouseDown={preventBlurOnClick ? (e) => e.preventDefault() : undefined}
disabled={disabled}
>
<Icon className="w-4 h-4" />
</Toggle>
</div>
</TooltipTrigger>
<TooltipContent side="bottom">
{disabled && disabledTooltip ? disabledTooltip : tooltip}
</TooltipContent>
</Tooltip>
)
}