Add filter typing to theme switcher

This commit is contained in:
Ryan Hughes
2026-05-11 17:10:45 -04:00
parent 903f27fdd1
commit f24dd82181
3 changed files with 138 additions and 19 deletions
+8 -3
View File
@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# omarchy:summary=Open a generic image selector menu # omarchy:summary=Open a generic image selector menu
# omarchy:args=[--selected <image>] [--colors-file <path>] [--print-name] [--show-labels] [--cache-only] <image-dir>... # omarchy:args=[--selected <image>] [--colors-file <path>] [--print-name] [--show-labels] [--filterable] [--cache-only] <image-dir>...
OMARCHY_PATH=${OMARCHY_PATH:-$HOME/.local/share/omarchy} OMARCHY_PATH=${OMARCHY_PATH:-$HOME/.local/share/omarchy}
@@ -9,11 +9,12 @@ selected_image=""
colors_file="" colors_file=""
print_name=false print_name=false
show_labels=false show_labels=false
filterable=false
cache_only=false cache_only=false
image_dirs=() image_dirs=()
usage() { usage() {
echo "Usage: omarchy-menu-images [--selected <image>] [--colors-file <path>] [--print-name] [--show-labels] [--cache-only] <image-dir>..." echo "Usage: omarchy-menu-images [--selected <image>] [--colors-file <path>] [--print-name] [--show-labels] [--filterable] [--cache-only] <image-dir>..."
} }
while [[ $# -gt 0 ]]; do while [[ $# -gt 0 ]]; do
@@ -44,6 +45,10 @@ while [[ $# -gt 0 ]]; do
show_labels=true show_labels=true
shift shift
;; ;;
--filterable)
filterable=true
shift
;;
--cache-only) --cache-only)
cache_only=true cache_only=true
shift shift
@@ -195,7 +200,7 @@ ensure_selector() {
} }
send_request() { send_request() {
printf '%s\t%s\t%s\t%s\t%s\t%s\n' "$rows_payload" "$selected_list_image" "$selection_file" "$done_file" "$colors_payload" "$show_labels" | printf '%s\t%s\t%s\t%s\t%s\t%s\t%s\n' "$rows_payload" "$selected_list_image" "$selection_file" "$done_file" "$colors_payload" "$show_labels" "$filterable" |
socat -u - "UNIX-CONNECT:$socket_path" socat -u - "UNIX-CONNECT:$socket_path"
} }
+1
View File
@@ -92,5 +92,6 @@ done
exec omarchy-menu-images \ exec omarchy-menu-images \
--print-name \ --print-name \
--show-labels \ --show-labels \
--filterable \
--selected "$selected_preview" \ --selected "$selected_preview" \
"$preview_dir" "$preview_dir"
+129 -16
View File
@@ -17,10 +17,12 @@ ShellRoot {
property bool imagesLoaded: false property bool imagesLoaded: false
property bool opened: false property bool opened: false
property bool showLabels: false property bool showLabels: false
property bool filterable: false
property bool requestActive: false property bool requestActive: false
property int requestSerial: 0 property int requestSerial: 0
property int applySerial: 0 property int applySerial: 0
property string doneFile: "" property string doneFile: ""
property string filterText: ""
property var doneFilesToRelease: [] property var doneFilesToRelease: []
property string socketPath: (Quickshell.env("XDG_RUNTIME_DIR") || ("/run/user/" + Quickshell.env("UID"))) + "/omarchy-image-selector.sock" property string socketPath: (Quickshell.env("XDG_RUNTIME_DIR") || ("/run/user/" + Quickshell.env("UID"))) + "/omarchy-image-selector.sock"
property color accent: "#798186" property color accent: "#798186"
@@ -31,6 +33,7 @@ ShellRoot {
property int sliceHeight: 432 property int sliceHeight: 432
property int sliceSpacing: -30 property int sliceSpacing: -30
property int skewOffset: 28 property int skewOffset: 28
property int bottomChromeHeight: showLabels ? (filterable ? 104 : 74) : 30
function fileUrl(path) { function fileUrl(path) {
return "file://" + path.split("/").map(encodeURIComponent).join("/") return "file://" + path.split("/").map(encodeURIComponent).join("/")
@@ -45,27 +48,106 @@ ShellRoot {
} }
function currentPath() { function currentPath() {
if (imageModel.count === 0) return "" if (imageModel.count === 0 || !itemMatches(selectedIndex)) return ""
return imageModel.get(selectedIndex).filePath return imageModel.get(selectedIndex).filePath
} }
function nameForPath(path) {
return path.split("/").pop().replace(/\.[^/.]+$/, "")
}
function labelForPath(path) {
return nameForPath(path).replace(/[-_]+/g, " ").replace(/\b\w/g, function(match) { return match.toUpperCase() })
}
function currentLabel() { function currentLabel() {
var path = currentPath() var path = currentPath()
if (!path) return "" if (!path) return filterText ? "No matches" : ""
var name = path.split("/").pop().replace(/\.[^/.]+$/, "") return labelForPath(path)
return name.replace(/[-_]+/g, " ").replace(/\b\w/g, function(match) { return match.toUpperCase() }) }
function itemMatches(index) {
if (index < 0 || index >= imageModel.count) return false
if (!filterText) return true
var path = imageModel.get(index).filePath
var needle = filterText.toLowerCase()
return nameForPath(path).toLowerCase().indexOf(needle) !== -1 || labelForPath(path).toLowerCase().indexOf(needle) !== -1
}
function matchingCount() {
if (!filterText) return imageModel.count
var count = 0
for (var i = 0; i < imageModel.count; i++) {
if (itemMatches(i)) count++
}
return count
}
function firstMatchingIndex() {
for (var i = 0; i < imageModel.count; i++) {
if (itemMatches(i)) return i
}
return -1
}
function filteredPosition(index) {
if (!filterText) return index
var position = 0
for (var i = 0; i < index; i++) {
if (itemMatches(i)) position++
}
return position
}
function selectedFilteredPosition() {
if (!filterText) return selectedIndex
return itemMatches(selectedIndex) ? filteredPosition(selectedIndex) : 0
} }
function select(index, immediate) { function select(index, immediate) {
if (imageModel.count === 0) return if (imageModel.count === 0) return
if (index < 0) index = 0 if (index < 0) index = 0
else if (index >= imageModel.count) index = imageModel.count - 1 else if (index >= imageModel.count) index = imageModel.count - 1
if (!itemMatches(index)) return
if (index === selectedIndex && immediate !== true) return if (index === selectedIndex && immediate !== true) return
selectedIndex = index selectedIndex = index
} }
function selectAdjacent(direction) {
if (!filterText) {
select(selectedIndex + direction)
return
}
var index = selectedIndex + direction
while (index >= 0 && index < imageModel.count) {
if (itemMatches(index)) {
select(index)
return
}
index += direction
}
}
function updateFilter(nextFilterText) {
filterText = nextFilterText
if (!itemMatches(selectedIndex)) {
var first = firstMatchingIndex()
if (first >= 0) selectedIndex = first
}
}
function releaseNextDoneFile() { function releaseNextDoneFile() {
if (releaseProc.running || doneFilesToRelease.length === 0) return if (releaseProc.running || doneFilesToRelease.length === 0) return
@@ -124,7 +206,7 @@ ShellRoot {
carousel.forceActiveFocus() carousel.forceActiveFocus()
} }
function openSelector(nextImageDirs, nextImageRows, nextSelectedImage, nextSelectionFile, nextDoneFile, nextColorsFile, nextColorsRaw, nextShowLabels) { function openSelector(nextImageDirs, nextImageRows, nextSelectedImage, nextSelectionFile, nextDoneFile, nextColorsFile, nextColorsRaw, nextShowLabels, nextFilterable) {
if (requestActive && doneFile && doneFile !== nextDoneFile) if (requestActive && doneFile && doneFile !== nextDoneFile)
finishDoneFile(doneFile) finishDoneFile(doneFile)
@@ -137,6 +219,8 @@ ShellRoot {
doneFile = nextDoneFile doneFile = nextDoneFile
requestActive = !!doneFile requestActive = !!doneFile
showLabels = nextShowLabels === true || nextShowLabels === "true" showLabels = nextShowLabels === true || nextShowLabels === "true"
filterable = nextFilterable === true || nextFilterable === "true"
filterText = ""
colorsFile = nextColorsFile || (Quickshell.env("HOME") + "/.config/omarchy/current/theme/background-switcher-colors.json") colorsFile = nextColorsFile || (Quickshell.env("HOME") + "/.config/omarchy/current/theme/background-switcher-colors.json")
if (nextColorsRaw) if (nextColorsRaw)
loadColors(nextColorsRaw) loadColors(nextColorsRaw)
@@ -191,14 +275,14 @@ ShellRoot {
Component.onCompleted: { Component.onCompleted: {
if (selectionFile) if (selectionFile)
openSelector(imageDirs, "", selectedImage, selectionFile, Quickshell.env("OMARCHY_IMAGE_SELECTOR_DONE_FILE"), colorsFile, "", false) openSelector(imageDirs, "", selectedImage, selectionFile, Quickshell.env("OMARCHY_IMAGE_SELECTOR_DONE_FILE"), colorsFile, "", false, false)
} }
IpcHandler { IpcHandler {
target: "image-selector" target: "image-selector"
function open(imageDirs: string, imageRows: string, selectedImage: string, selectionFile: string, doneFile: string, colorsFile: string): void { function open(imageDirs: string, imageRows: string, selectedImage: string, selectionFile: string, doneFile: string, colorsFile: string): void {
root.openSelector(imageDirs, imageRows, selectedImage, selectionFile, doneFile, colorsFile, "", false) root.openSelector(imageDirs, imageRows, selectedImage, selectionFile, doneFile, colorsFile, "", false, false)
} }
} }
@@ -211,7 +295,7 @@ ShellRoot {
parser: SplitParser { parser: SplitParser {
onRead: function(message) { onRead: function(message) {
var fields = message.split("\t") var fields = message.split("\t")
root.openSelector("", root.decodeField(fields[0]), fields[1] || "", fields[2] || "", fields[3] || "", "", root.decodeField(fields[4]), fields[5] || "false") root.openSelector("", root.decodeField(fields[0]), fields[1] || "", fields[2] || "", fields[3] || "", "", root.decodeField(fields[4]), fields[5] || "false", fields[6] || "false")
clientSocket.connected = false clientSocket.connected = false
} }
} }
@@ -270,7 +354,7 @@ ShellRoot {
Item { Item {
id: card id: card
width: Math.min(parent.width - 80, root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing) + 40) width: Math.min(parent.width - 80, root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing) + 40)
height: root.sliceHeight + (root.showLabels ? 104 : 60) height: root.sliceHeight + 30 + root.bottomChromeHeight
anchors.centerIn: parent anchors.centerIn: parent
MouseArea { anchors.fill: parent; onClicked: {} } MouseArea { anchors.fill: parent; onClicked: {} }
@@ -280,7 +364,7 @@ ShellRoot {
anchors.top: parent.top anchors.top: parent.top
anchors.topMargin: 30 anchors.topMargin: 30
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
anchors.bottomMargin: root.showLabels ? 74 : 30 anchors.bottomMargin: root.bottomChromeHeight
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
width: root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing) width: root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing)
clip: false clip: false
@@ -292,16 +376,27 @@ ShellRoot {
Keys.priority: Keys.BeforeItem Keys.priority: Keys.BeforeItem
Keys.onPressed: function(event) { Keys.onPressed: function(event) {
if (event.key === Qt.Key_Escape) { if (event.key === Qt.Key_Escape) {
root.cancel() if (root.filterText) {
root.updateFilter("")
} else {
root.cancel()
}
event.accepted = true event.accepted = true
} else if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) { } else if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
root.applySelected() root.applySelected()
event.accepted = true event.accepted = true
} else if (event.key === Qt.Key_Backspace && root.filterable) {
if (root.filterText.length > 0)
root.updateFilter(root.filterText.slice(0, -1))
event.accepted = true
} else if (event.key === Qt.Key_Left) { } else if (event.key === Qt.Key_Left) {
root.select(root.selectedIndex - 1) root.selectAdjacent(-1)
event.accepted = true event.accepted = true
} else if (event.key === Qt.Key_Right) { } else if (event.key === Qt.Key_Right) {
root.select(root.selectedIndex + 1) root.selectAdjacent(1)
event.accepted = true
} else if (root.filterable && event.text && event.text.length === 1 && event.text.charCodeAt(0) >= 32 && event.text.charCodeAt(0) !== 127 && (event.modifiers === Qt.NoModifier || event.modifiers === Qt.ShiftModifier)) {
root.updateFilter(root.filterText + event.text)
event.accepted = true event.accepted = true
} }
} }
@@ -318,9 +413,10 @@ ShellRoot {
required property string fileName required property string fileName
required property string thumbnailPath required property string thumbnailPath
readonly property int relativeIndex: index - root.selectedIndex readonly property bool matched: root.itemMatches(index)
readonly property bool selected: relativeIndex === 0 readonly property int relativeIndex: root.filteredPosition(index) - root.selectedFilteredPosition()
readonly property bool nearby: Math.abs(relativeIndex) <= 16 readonly property bool selected: matched && index === root.selectedIndex
readonly property bool nearby: matched && Math.abs(relativeIndex) <= 16
visible: nearby visible: nearby
x: selected ? carousel.previewX : (relativeIndex < 0 ? carousel.previewX + relativeIndex * carousel.itemStep : carousel.previewX + root.expandedWidth + root.sliceSpacing + (relativeIndex - 1) * carousel.itemStep) x: selected ? carousel.previewX : (relativeIndex < 0 ? carousel.previewX + relativeIndex * carousel.itemStep : carousel.previewX + root.expandedWidth + root.sliceSpacing + (relativeIndex - 1) * carousel.itemStep)
@@ -429,6 +525,7 @@ ShellRoot {
} }
Text { Text {
id: selectedLabel
visible: root.showLabels visible: root.showLabels
anchors.top: carousel.bottom anchors.top: carousel.bottom
anchors.topMargin: 16 anchors.topMargin: 16
@@ -443,6 +540,22 @@ ShellRoot {
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
elide: Text.ElideRight elide: Text.ElideRight
} }
Text {
visible: root.filterable
anchors.top: selectedLabel.bottom
anchors.topMargin: 8
anchors.horizontalCenter: carousel.horizontalCenter
width: root.expandedWidth
text: root.filterText ? ("Filter: " + root.filterText + " (" + root.matchingCount() + ")") : "Type to filter"
color: "#ffffff"
opacity: root.filterText ? 0.85 : 0.55
style: Text.Outline
styleColor: Qt.rgba(0, 0, 0, 0.7)
font.pixelSize: 14
horizontalAlignment: Text.AlignHCenter
elide: Text.ElideRight
}
} }
} }
} }