Skip to content

Commit 8d052be

Browse files
authoredMay 28, 2024··
fix: sort items in fuse (#670)
1 parent 3edae3f commit 8d052be

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed
 

‎packages/devtools/client/components/ModuleInstallList.vue

+11-4
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,25 @@ const sortingFactors: Record<typeof sortingOptions[number], SortingFunction<Modu
2121
updated: (a, b) => a.stats.publishedAt - b.stats.publishedAt,
2222
}
2323
24-
const sortedItems = computed(() => collection.value?.slice()
25-
.sort((a, b) => sortingFactors[selectedSortingOption.value](a, b) * (ascendingOrder.value ? 1 : -1)))
24+
const sortedItems = computed(() => collection.value
25+
?.toSorted((a, b) => sortingFactors[selectedSortingOption.value](a, b) * (ascendingOrder.value ? 1 : -1)))
2626
2727
const search = ref('')
28-
const fuse = computed(() => new Fuse(sortedItems.value || [], {
28+
const fuse = computed(() => new Fuse(collection.value || [], {
2929
keys: [
3030
'name',
3131
'description',
3232
'npm',
3333
'category',
3434
],
35+
sortFn: (a, b) => {
36+
const itemA = collection.value?.[a.idx]
37+
const itemB = collection.value?.[b.idx]
38+
if (itemA && itemB)
39+
return sortingFactors[selectedSortingOption.value](itemA, itemB) * (ascendingOrder.value ? 1 : -1)
40+
return (a.score - b.score)
41+
},
42+
threshold: 0.2,
3543
}))
3644
3745
const items = computed(() => {
@@ -49,7 +57,6 @@ const items = computed(() => {
4957
icon="i-carbon-intent-request-create"
5058
text="Install Module"
5159
/>
52-
5360
<NNavbar v-model:search="search" no-padding px-6 pb-5 pt-2>
5461
<template #actions>
5562
<NDropdown direction="end" n="sm primary">

0 commit comments

Comments
 (0)
Please sign in to comment.