-
-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: nested search #105
feat: nested search #105
Changes from 18 commits
b7478db
dbd5fbf
3fc225c
505502a
adbb2af
65a8d2b
f074415
63aea35
6508290
c6289cd
ff5f1bc
2c1263e
860819e
341c0c0
468afbd
4df68a0
08093e6
4d3a49b
a42585d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ import * as React from "react"; | |
import { KBarAnimator } from "../../src/KBarAnimator"; | ||
import { KBarProvider } from "../../src/KBarContextProvider"; | ||
import KBarPortal from "../../src/KBarPortal"; | ||
import useMatches, { NO_GROUP } from "../../src/useMatches"; | ||
import { NO_GROUP } from "../../src/useMatches"; | ||
import useDeepMatches from "../../src/useDeepMatches"; | ||
import KBarPositioner from "../../src/KBarPositioner"; | ||
import KBarSearch from "../../src/KBarSearch"; | ||
import KBarResults from "../../src/KBarResults"; | ||
|
@@ -14,8 +15,9 @@ import Docs from "./Docs"; | |
import SearchDocsActions from "./SearchDocsActions"; | ||
import { createAction } from "../../src/utils"; | ||
import { useAnalytics } from "./utils"; | ||
import { Action } from "../../src"; | ||
import Blog from "./Blog"; | ||
import { ActionImpl } from "../../src/action"; | ||
import { ActionId } from "../../src"; | ||
|
||
const searchStyle = { | ||
padding: "12px 16px", | ||
|
@@ -43,7 +45,6 @@ const groupNameStyle = { | |
fontSize: "10px", | ||
textTransform: "uppercase" as const, | ||
opacity: 0.5, | ||
background: "var(--background)", | ||
}; | ||
|
||
const App = () => { | ||
|
@@ -102,7 +103,7 @@ const App = () => { | |
{ | ||
id: "darkTheme", | ||
name: "Dark", | ||
keywords: "dark", | ||
keywords: "dark theme", | ||
section: "", | ||
perform: () => | ||
document.documentElement.setAttribute("data-theme-dark", ""), | ||
|
@@ -111,7 +112,7 @@ const App = () => { | |
{ | ||
id: "lightTheme", | ||
name: "Light", | ||
keywords: "light", | ||
keywords: "light theme", | ||
section: "", | ||
perform: () => | ||
document.documentElement.removeAttribute("data-theme-dark"), | ||
|
@@ -123,10 +124,7 @@ const App = () => { | |
<KBarPortal> | ||
<KBarPositioner> | ||
<KBarAnimator style={animatorStyle}> | ||
<KBarSearch | ||
style={searchStyle} | ||
placeholder="Type a command or search…" | ||
/> | ||
<KBarSearch style={searchStyle} /> | ||
<RenderResults /> | ||
</KBarAnimator> | ||
</KBarPositioner> | ||
|
@@ -152,25 +150,33 @@ const App = () => { | |
}; | ||
|
||
function RenderResults() { | ||
const groups = useMatches(); | ||
const flattened = React.useMemo( | ||
() => | ||
groups.reduce((acc, curr) => { | ||
acc.push(curr.name); | ||
acc.push(...curr.actions); | ||
return acc; | ||
}, []), | ||
[groups] | ||
); | ||
const { throttledGroups: matches, throttledRootActionId: rootActionId } = | ||
useDeepMatches(); | ||
|
||
const flattened = React.useMemo(() => { | ||
let res = []; | ||
for (let i = 0; i < matches.length; i++) { | ||
let match = matches[i]; | ||
if (match !== NO_GROUP) res.push(match.name); | ||
for (let j = 0; j < match.actions.length; j++) { | ||
res.push(match.actions[j]); | ||
} | ||
} | ||
return res; | ||
}, [matches]); | ||
|
||
return ( | ||
<KBarResults | ||
items={flattened.filter((i) => i !== NO_GROUP)} | ||
items={flattened} | ||
onRender={({ item, active }) => | ||
typeof item === "string" ? ( | ||
<div style={groupNameStyle}>{item}</div> | ||
) : ( | ||
<ResultItem action={item} active={active} /> | ||
<ResultItem | ||
action={item} | ||
active={active} | ||
currentRootActiveId={rootActionId} | ||
/> | ||
) | ||
} | ||
/> | ||
|
@@ -182,18 +188,32 @@ const ResultItem = React.forwardRef( | |
{ | ||
action, | ||
active, | ||
currentRootActiveId, | ||
}: { | ||
action: Action; | ||
action: ActionImpl; | ||
active: boolean; | ||
currentRootActiveId: ActionId; | ||
}, | ||
ref: React.Ref<HTMLDivElement> | ||
) => { | ||
const ancestors = React.useMemo(() => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can but we will get this behavior, notice the slight bit of ancestor flash when we hit backspace and go to the parent action: Kapture.2021-11-03.at.13.54.08.mp4Since we throttle the matching, the actions displayed and the
I may be missing something totally here bc I really don't like returning that |
||
return (function collect(action: ActionImpl, ancestors = []) { | ||
if (action.parent && action.parent.id !== currentRootActiveId) { | ||
ancestors.push(action.parent); | ||
if (action.parent.parent) { | ||
collect(action.parent.parent, ancestors); | ||
} | ||
} | ||
return ancestors; | ||
})(action); | ||
}, [action, currentRootActiveId]); | ||
|
||
return ( | ||
<div | ||
ref={ref} | ||
style={{ | ||
padding: "12px 16px", | ||
background: active ? "var(--a1)" : "var(--background)", | ||
background: active ? "var(--a1)" : "transparent", | ||
borderLeft: `2px solid ${ | ||
active ? "var(--foreground)" : "transparent" | ||
}`, | ||
|
@@ -203,10 +223,39 @@ const ResultItem = React.forwardRef( | |
cursor: "pointer", | ||
}} | ||
> | ||
<div style={{ display: "flex", gap: "8px", alignItems: "center" }}> | ||
<div | ||
style={{ | ||
display: "flex", | ||
gap: "8px", | ||
alignItems: "center", | ||
fontSize: 14, | ||
}} | ||
> | ||
{action.icon && action.icon} | ||
<div style={{ display: "flex", flexDirection: "column" }}> | ||
<span>{action.name}</span> | ||
<div> | ||
{ancestors.length > 0 && | ||
ancestors.map((ancestor) => ( | ||
<React.Fragment key={ancestor.id}> | ||
<span | ||
style={{ | ||
opacity: 0.5, | ||
marginRight: 8, | ||
}} | ||
> | ||
{ancestor.name} | ||
</span> | ||
<span | ||
style={{ | ||
marginRight: 8, | ||
}} | ||
> | ||
› | ||
</span> | ||
</React.Fragment> | ||
))} | ||
<span>{action.name}</span> | ||
</div> | ||
{action.subtitle && ( | ||
<span style={{ fontSize: 12 }}>{action.subtitle}</span> | ||
)} | ||
|
@@ -221,6 +270,7 @@ const ResultItem = React.forwardRef( | |
padding: "4px 6px", | ||
background: "rgba(0 0 0 / .1)", | ||
borderRadius: "4px", | ||
fontSize: 14, | ||
}} | ||
> | ||
{sc} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Average run times with 100k results:
reduce: .75ms
flatMap: 9ms
for loop: .5ms
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for loops fo life
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Idea is for no one to have 100k actions but who knows, go crazy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still think this flattening should be contained within the lib :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense,
useDeepMatches
can return the flattened results as users have to flatten the results regardless: a42585d