pragma Singleton pragma ComponentBehavior: Bound import "root:/modules/common/functions/fuzzysort.js" as Fuzzy import "root:/modules/common/functions/levendist.js" as Levendist import "root:/modules/common" import "root:/" import QtQuick import Quickshell import Quickshell.Io Singleton { id: root property bool sloppySearch: Config.options?.search.sloppy ?? false property real scoreThreshold: 0.2 property list entries: [] readonly property var preparedEntries: entries.map(a => ({ name: Fuzzy.prepare(`${a.replace(/^\s*\S+\s+/, "")}`), entry: a })) function fuzzyQuery(search: string): var { if (root.sloppySearch) { const results = entries.slice(0, 100).map(str => ({ entry: str, score: Levendist.computeTextMatchScore(str.toLowerCase(), search.toLowerCase()) })).filter(item => item.score > root.scoreThreshold) .sort((a, b) => b.score - a.score) return results .map(item => item.entry) } return Fuzzy.go(search, preparedEntries, { all: true, key: "name" }).map(r => { return r.obj.entry }); } function refresh() { readProc.buffer = [] readProc.running = true } Connections { target: Quickshell function onClipboardTextChanged() { delayedUpdateTimer.restart() } } Timer { id: delayedUpdateTimer interval: Config.options.hacks.arbitraryRaceConditionDelay repeat: false onTriggered: { root.refresh() } } Process { id: readProc property list buffer: [] command: ["cliphist", "list"] stdout: SplitParser { onRead: (line) => { readProc.buffer.push(line) } } onExited: (exitCode, exitStatus) => { if (exitCode === 0) { root.entries = readProc.buffer } else { console.error("[Cliphist] Failed to refresh with code", exitCode, "and status", exitStatus) } } } }