fix(sidebar): sort search results by match score

Exact and prefix matches now rank above substring and fuzzy matches
so searching for e.g. "core_flow" puts the exact table at the top
instead of burying it behind partial hits.
This commit is contained in:
t8y2 2026-05-12 18:02:47 +08:00
parent 908f2cfaa5
commit ee0b2312da
1 changed files with 16 additions and 10 deletions

View File

@ -100,34 +100,40 @@ function normalizedLabel(node: TreeNode): string {
}
function filterTree(nodes: TreeNode[], q: string): TreeNode[] {
const filteredNodes: TreeNode[] = [];
const filteredNodes: { node: TreeNode; score: number }[] = [];
for (const node of nodes) {
if (node.type === "object-browser" && node.hiddenChildren) {
const matches = node.hiddenChildren.filter((child) => matchSidebarLabel(normalizedLabel(child), q));
if (matches.length > 0) filteredNodes.push(...matches);
const matches = node.hiddenChildren
.map((child) => ({ node: child, score: matchSidebarLabel(normalizedLabel(child), q)?.score ?? 0 }))
.filter((m) => m.score > 0);
filteredNodes.push(...matches);
continue;
}
const label = normalizedLabel(node);
const selfMatches = !!matchSidebarLabel(label, q);
const selfMatch = matchSidebarLabel(label, q);
const filteredChildren = node.children ? filterTree(node.children, q) : undefined;
if (selfMatches || (filteredChildren && filteredChildren.length > 0)) {
if (selfMatch || (filteredChildren && filteredChildren.length > 0)) {
if (!node.children) {
filteredNodes.push(node);
filteredNodes.push({ node, score: selfMatch?.score ?? 0 });
} else {
const children = filteredChildren ?? [];
filteredNodes.push({
...node,
children,
isExpanded: children.length > 0 && !searchCollapsedIds.value.has(node.id),
node: {
...node,
children,
isExpanded: children.length > 0 && !searchCollapsedIds.value.has(node.id),
},
score: selfMatch?.score ?? 0,
});
}
}
}
return filteredNodes;
filteredNodes.sort((a, b) => b.score - a.score);
return filteredNodes.map((m) => m.node);
}
function matchesType(node: TreeNode): boolean {