fix: selector not account for an existing search query

This commit is contained in:
pandadev 2025-03-15 17:47:19 +01:00
parent f435a7b20a
commit 828d710892
No known key found for this signature in database
GPG key ID: C39629DACB8E762F

View file

@ -341,10 +341,7 @@ const processSearchQueue = async () => {
{ id: item.id, timestamp: new Date(item.timestamp) }
)
);
if (groupedHistory.value.length > 0) {
handleSelection(0, 0, false);
}
} catch (error) {
console.error("Search error:", error);
} finally {
@ -357,19 +354,31 @@ const processSearchQueue = async () => {
const searchHistory = async (query: string): Promise<void> => {
searchQuery.value = query;
if (searchController) {
searchController.abort();
}
searchController = new AbortController();
searchQueue.push(query);
if (!isProcessingSearch) {
processSearchQueue();
}
};
watch(
() => groupedHistory.value,
(newGroupedHistory) => {
if (newGroupedHistory.length > 0) {
handleSelection(0, 0, true);
} else {
selectItem(-1, -1);
}
},
{ deep: true }
);
const pasteSelectedItem = async (): Promise<void> => {
if (!selectedItem.value) return;
@ -608,10 +617,6 @@ watch(
{ flush: "post" }
);
watch(searchQuery, () => {
searchHistory(searchQuery.value);
});
onMounted(async () => {
try {
os.value = platform();