chore: migrate runner and plugins to ags v3 and gtk4

This commit is contained in:
retrozinndev
2025-07-06 19:54:58 -03:00
parent 2df219ec80
commit 3b03c434b5
7 changed files with 168 additions and 217 deletions
+79 -105
View File
@@ -1,10 +1,14 @@
import { AstalIO, GObject, timeout } from "astal"; import { Astal, Gdk, Gtk } from "ags/gtk4";
import { Astal, Gdk, Gtk, Widget } from "astal/gtk3"; import { timeout } from "ags/time";
import { PopupWindow, PopupWindowProps } from "../widget/PopupWindow"; import { PopupWindow } from "../widget/PopupWindow";
import { updateApps } from "../scripts/apps"; import { updateApps } from "../scripts/apps";
import { ResultWidget, ResultWidgetProps } from "../widget/runner/ResultWidget"; import { ResultWidget, ResultWidgetProps } from "../widget/runner/ResultWidget";
import { Windows } from "../windows"; import { Windows } from "../windows";
import GObject from "ags/gobject";
import AstalHyprland from "gi://AstalHyprland"; import AstalHyprland from "gi://AstalHyprland";
import AstalIO from "gi://AstalIO";
export namespace Runner { export namespace Runner {
export type RunnerProps = { export type RunnerProps = {
@@ -33,8 +37,8 @@ export interface Plugin {
prioritize?: boolean; prioritize?: boolean;
} }
export let instance: (Widget.Window|null) = null; export let instance: (Astal.Window|null) = null;
let gtkEntry: (Widget.Entry|null) = null; let gtkEntry: (Gtk.SearchEntry|null) = null;
const plugins = new Set<Runner.Plugin>(); const plugins = new Set<Runner.Plugin>();
export function close() { instance?.close(); } export function close() { instance?.close(); }
@@ -74,9 +78,9 @@ export function removePlugin(plugin: Plugin): boolean {
export function setEntryText(text: string): void { export function setEntryText(text: string): void {
gtkEntry?.set_text(text); gtkEntry?.set_text(text);
gtkEntry?.set_position(gtkEntry.textLength); gtkEntry?.set_position(gtkEntry.text.length);
gtkEntry?.grab_focus_without_selecting(); gtkEntry?.grab_focus();
} }
export function openDefault(initialText?: string) { export function openDefault(initialText?: string) {
@@ -131,78 +135,57 @@ export function openDefault(initialText?: string) {
]); ]);
} }
export function openRunner(props: RunnerProps, placeholder?: () => Array<ResultWidget>): Widget.Window { export function openRunner(props: RunnerProps, placeholder?: () => Array<ResultWidget>): Astal.Window {
let onClickTimeout: (AstalIO.Time|undefined); let onClickTimeout: (AstalIO.Time|undefined);
const connections: Map<GObject.Object, number> = new Map(); const connections: Map<GObject.Object, number> = new Map();
props.width ??= 780; props.width ??= 780;
props.height ??= 420; props.height ??= 420;
gtkEntry = new Widget.Entry({ gtkEntry = <Gtk.SearchEntry class={"search"} placeholderText={props.entryPlaceHolder ?? ""}
className: "search", onSearchChanged={async (self) => {
placeholderText: props?.entryPlaceHolder || "", updateResultsList(self.text);
onChanged: async (self) => { resultsList.get_row_at_index(0) &&
updateResultsList(self.text); resultsList.select_row(resultsList.get_row_at_index(0));
resultsList.get_row_at_index(0) &&
resultsList.select_row(resultsList.get_row_at_index(0));
if(self.text.trim().length < 1 && !mainBox.get_style_context().has_class("empty-input")) { if(self.text.trim().length < 1 && !mainBox.get_style_context().has_class("empty-input")) {
mainBox.get_style_context().add_class("empty-input"); mainBox.get_style_context().add_class("empty-input");
return; return;
} }
mainBox.get_style_context().has_class("empty-input") && mainBox.get_style_context().has_class("empty-input") &&
mainBox.get_style_context().remove_class("empty-input"); mainBox.get_style_context().remove_class("empty-input");
}, }} onActivate={() => {
onActivate: (entry) => { const resultWidget = resultsList.get_selected_row()?.get_child();
const resultWidget = resultsList.get_selected_row()?.get_child(); if(resultWidget instanceof ResultWidget) {
if(resultWidget instanceof ResultWidget) { resultWidget.onClick();
entry.isFocus = false; resultWidget.closeOnClick && Runner.close();
resultWidget.onClick(); }
resultWidget.closeOnClick && Runner.close(); }}
} /> as Gtk.SearchEntry;
},
primary_icon_name: "system-search"
} as Widget.EntryProps);
const mainBox = new Widget.Box({ const mainBox = <Gtk.Box class={`runner main ${props.showResultsPlaceHolderOnStartup ?
className: `runner main ${props.showResultsPlaceHolderOnStartup ? "empty" : ""}`, "empty" : ""}`} orientation={Gtk.Orientation.VERTICAL} hexpand={true}
orientation: Gtk.Orientation.VERTICAL, valign={Gtk.Align.START}>
hexpand: true, {gtkEntry}
valign: Gtk.Align.START, <Gtk.ScrolledWindow class={"results-scrollable"} vscrollbarPolicy={Gtk.PolicyType.AUTOMATIC}
children: [ hscrollbarPolicy={Gtk.PolicyType.NEVER} hexpand={true} vexpand={true}
gtkEntry, visible={props.showResultsPlaceHolderOnStartup ?? false}
new Widget.Scrollable({ propagateNaturalHeight={true} maxContentHeight={props.height}>
className: "results-scrollable",
vscroll: Gtk.PolicyType.AUTOMATIC,
hscroll: Gtk.PolicyType.NEVER,
expand: true,
visible: props.showResultsPlaceHolderOnStartup ?? false,
propagateNaturalHeight: true,
maxContentHeight: props.height,
child: new Gtk.ListBox({
visible: true,
expand: true,
} as Gtk.ListBox.ConstructorProps)
})
]
} as Widget.BoxProps);
const scrollable = mainBox.get_children()[1] as Widget.Scrollable; <Gtk.ListBox hexpand={true} vexpand={true} />
const resultsList = scrollable.get_child() as Gtk.ListBox; </Gtk.ScrolledWindow>
</Gtk.Box> as Gtk.Box;
const scrollable = mainBox.get_last_child() as Gtk.ScrolledWindow;
const resultsList = scrollable.get_first_child() as Gtk.ListBox;
if(props?.showResultsPlaceHolderOnStartup && placeholder) { if(props?.showResultsPlaceHolderOnStartup && placeholder) {
const placeholderWidgets = placeholder(); const placeholderGtks = placeholder();
placeholderWidgets.map(widget => placeholderGtks.map(widget =>
resultsList.insert(widget, -1)); resultsList.insert(widget, -1));
} }
function cleanResults() {
resultsList.get_children().map((listItem) => {
resultsList.remove(listItem);
});
}
function getPluginResults(input: string): Array<ResultWidget> { function getPluginResults(input: string): Array<ResultWidget> {
let calledPlugins: Array<Plugin> = getPlugins().filter((plugin) => let calledPlugins: Array<Plugin> = getPlugins().filter((plugin) =>
plugin.prefix ? (input.startsWith(plugin.prefix) ? true : false) : true plugin.prefix ? (input.startsWith(plugin.prefix) ? true : false) : true
@@ -229,7 +212,7 @@ export function openRunner(props: RunnerProps, placeholder?: () => Array<ResultW
const widgets: Array<ResultWidget> = []; const widgets: Array<ResultWidget> = [];
// Remove all previous results // Remove all previous results
cleanResults(); resultsList.remove_all();
widgets.push(...getPluginResults(entryText)) widgets.push(...getPluginResults(entryText))
@@ -238,21 +221,21 @@ export function openRunner(props: RunnerProps, placeholder?: () => Array<ResultW
widgets.push(...placeholder()); widgets.push(...placeholder());
// Insert results inside GtkListBox // Insert results inside GtkListBox
widgets.map((resultWidget: ResultWidget) => { widgets.map((resultGtk: ResultWidget) => {
resultsList.insert(resultWidget, -1); resultsList.insert(resultGtk, -1);
const conns: Array<number> = []; const conns: Array<number> = [];
conns.push( conns.push(
resultsList.connect("row-activated", (_, row: Gtk.ListBoxRow) => { resultsList.connect("row-activated", (_, row: Gtk.ListBoxRow) => {
const rWidget = row.get_child(); const rGtk = row.get_child();
if(rWidget instanceof ResultWidget) { if(rGtk instanceof ResultWidget) {
if(onClickTimeout) return; if(onClickTimeout) return;
// Timeout, so it doesn't fire the event a hundred times :skull: // Timeout, so it doesn't fire the event a hundred times :skull:
onClickTimeout = timeout(500, () => onClickTimeout = undefined); onClickTimeout = timeout(500, () => onClickTimeout = undefined);
rWidget.onClick(); rGtk.onClick();
rWidget.closeOnClick && Runner.close(); rGtk.closeOnClick && Runner.close();
} }
}), }),
resultsList.connect("destroy", () => resultsList.connect("destroy", () =>
@@ -267,48 +250,39 @@ export function openRunner(props: RunnerProps, placeholder?: () => Array<ResultW
} }
if(!instance) if(!instance)
instance = Windows.createWindowForFocusedMonitor((mon: number): (Widget.Window) => PopupWindow({ instance = Windows.getDefault().createWindowForFocusedMonitor((mon: number) => <PopupWindow
namespace: "runner", namespace={"runner"} monitor={mon} widthRequest={props.width} heightRequest={props.height}
monitor: mon, marginTop={(AstalHyprland.get_default().get_monitor(mon)?.height / 2) - (props.height! / 2)}
widthRequest: props.width, exclusivity={Astal.Exclusivity.IGNORE} halign={Gtk.Align.CENTER} valign={Gtk.Align.START}
heightRequest: props.height, $={() => {
marginTop: (AstalHyprland.get_default().get_monitor(mon)?.height / 2) - (props.height! / 2), plugins.forEach(plugin =>
exclusivity: Astal.Exclusivity.IGNORE, plugin.init?.());
halign: Gtk.Align.CENTER,
valign: Gtk.Align.START,
setup: () => {
// Init plugins
plugins.forEach(plugin => plugin.init && plugin.init());
if(props?.initialText) props.initialText &&
Runner.setEntryText(props.initialText); Runner.setEntryText(props.initialText);
}, }} actionKeyPressed={(_, keyval) => {
onKeyPressEvent: (_, event: Gdk.Event) => { if(!gtkEntry!.has_focus && keyval !== Gdk.KEY_F5
const keyVal = event.get_keyval()[1]; && keyval !== Gdk.KEY_Down && keyval !== Gdk.KEY_Up
&& keyval !== Gdk.KEY_Return) {
if(!gtkEntry!.has_focus && keyVal !== Gdk.KEY_F5 gtkEntry!.grab_focus();
&& keyVal !== Gdk.KEY_Down && keyVal !== Gdk.KEY_Up
&& keyVal !== Gdk.KEY_Return) {
gtkEntry!.grab_focus_without_selecting();
return; return;
} }
event.get_keyval()[1] === Gdk.KEY_F5 && keyval === Gdk.KEY_F5 &&
updateApps(); updateApps();
}, }} onDestroy={() => {
onDestroy: () => { connections.forEach((id, obj) => GObject.signal_handler_is_connected(obj, id) &&
connections.forEach((id, obj) => GObject.signal_handler_is_connected(obj, id) && obj.disconnect(id));
obj.disconnect(id));
gtkEntry = null; gtkEntry = null;
[...plugins.values()].forEach(plugin => [...plugins.values()].forEach(plugin =>
plugin && plugin.onClose && plugin.onClose()); plugin && plugin.onClose && plugin.onClose());
instance = null; instance = null;
}, }}>
child: mainBox {mainBox}
} as PopupWindowProps))(); </PopupWindow> as Astal.Window)();
return instance!; return instance!;
} }
+2 -3
View File
@@ -1,8 +1,7 @@
import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget"; import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget";
import AstalApps from "gi://AstalApps"; import AstalApps from "gi://AstalApps";
import { execApp, getAstalApps, updateApps } from "../../scripts/apps"; import { execApp, getAstalApps, lookupIcon, updateApps } from "../../scripts/apps";
import { Runner } from "../Runner"; import { Runner } from "../Runner";
import { Astal } from "astal/gtk3";
export const PluginApps = { export const PluginApps = {
// Do not provide prefix, so it always runs. // Do not provide prefix, so it always runs.
@@ -14,7 +13,7 @@ export const PluginApps = {
new ResultWidget({ new ResultWidget({
title: app.get_name(), title: app.get_name(),
description: app.get_description(), description: app.get_description(),
icon: Astal.Icon.lookup_icon(app.iconName) ? app.iconName : "application-x-executable-symbolic", icon: lookupIcon(app.iconName) ? app.iconName : "application-x-executable-symbolic",
onClick: () => execApp(app) onClick: () => execApp(app)
} as ResultWidgetProps) } as ResultWidgetProps)
); );
-33
View File
@@ -1,33 +0,0 @@
import { Widget } from "astal/gtk3";
import { Clipboard } from "../../scripts/clipboard";
import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget";
import { Runner } from "../Runner";
import { Gio } from "astal";
export const PluginClipboard = {
prefix: '>',
prioritize: true,
handle: (search) => {
if(Clipboard.getDefault().history.length < 1)
return new ResultWidget({
icon: "edit-paste-symbolic",
title: "Clipboard is empty",
description: "Copy something and it will be shown right here!"
} as ResultWidgetProps);
return Clipboard.getDefault().history.filter(item => // not the best way to search, but it works
Runner.regExMatch(search, item.id) || Runner.regExMatch(search, item.preview)).map((item) =>
new ResultWidget({
icon: new Widget.Label({
label: item.id.toString(),
css: "font-size: 16px; margin-right: 8px; font-weight: 600;"
} as Widget.LabelProps),
title: item.preview,
onClick: () => Clipboard.getDefault().selectItem(item).catch((err: Gio.IOErrorEnum) => {
console.error(`Runner(Plugin/Clipboard): An error occurred while selecting clipboard item. Stderr:\n${
err.message ? `${err.message}\n` : ""}Stack: ${err.stack}`);
})
} as ResultWidgetProps));
}
} as Runner.Plugin;
+28
View File
@@ -0,0 +1,28 @@
import { Gtk } from "ags/gtk4";
import { Clipboard } from "../../scripts/clipboard";
import { ResultWidget } from "../../widget/runner/ResultWidget";
import { Runner } from "../Runner";
export const PluginClipboard = {
prefix: '>',
prioritize: true,
handle: (search) => {
if(Clipboard.getDefault().history.length < 1)
return <ResultWidget icon={"edit-paste-symbolic"} title={"Clipboard is empty"}
description={"Copy something and it will be shown right here!"}
/>;
return Clipboard.getDefault().history.filter(item => // not the best way to search, but it works
Runner.regExMatch(search, item.id) || Runner.regExMatch(search, item.preview)).map((item) =>
<ResultWidget icon={<Gtk.Label label={`${item.id}`}
css={"font-size: 16px; margin-right: 8px; font-weight: 600;"} />}
title={item.preview} onClick={() => Clipboard.getDefault().selectItem(item).catch((err: Error) => {
console.error(`Runner(Plugin/Clipboard): An error occurred while selecting clipboard item. Stderr:\n${
err.message ? `${err.message}\n` : ""}Stack: ${err.stack}`
);
})
}
/>);
}
} as Runner.Plugin;
+50 -73
View File
@@ -1,79 +1,56 @@
import { bind, Variable } from "astal"; import { createBinding, createComputed } from "ags";
import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget"; import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget";
import { Runner } from "../Runner"; import { Runner } from "../Runner";
import AstalMpris from "gi://AstalMpris"; import AstalMpris from "gi://AstalMpris";
import { player } from "../../widget/bar/Media";
export const PluginMedia = (() => { export const PluginMedia = {
let playTitle: Variable<string>|null; prefix: ":",
let previousTitle: Variable<string>|null; handle() {
let nextTitle: Variable<string>|null; if(!player.get().available) return new ResultWidget({
icon: "folder-music-symbolic",
title: "Couldn't find any players",
closeOnClick: false,
description: "No media / player found with mpris"
} as ResultWidgetProps);
return { return [
prefix: ":", new ResultWidget({
icon: createBinding(player.get(), "playbackStatus").as((status) => status === AstalMpris.PlaybackStatus.PLAYING ?
onClose: () => { "media-playback-pause-symbolic"
playTitle?.drop(); : "media-playback-start-symbolic"),
previousTitle?.drop();
nextTitle?.drop();
previousTitle = null;
playTitle = null;
nextTitle = null;
},
handle() {
const player = AstalMpris.get_default().players[0];
playTitle = Variable.derive([
bind(player, "title"),
bind(player, "artist"),
bind(player, "playbackStatus")
], (title, artist, status) => `${ status === AstalMpris.PlaybackStatus.PLAYING ?
"Pause" : "Play"
} ${title} | ${artist}`);
previousTitle = Variable.derive([
bind(player, "title"),
bind(player, "artist")
], (title, artist) =>
`Go Previous ${ title ? title : player.busName }${ artist ? ` | ${artist}` : "" }`
);
nextTitle = Variable.derive([
bind(player, "title"),
bind(player, "artist")
], (title, artist) =>
`Go Next ${ title ? title : player.busName }${ artist ? ` | ${artist}` : "" }`
);
if(!player) return new ResultWidget({
icon: "folder-music-symbolic",
title: "Couldn't find any players",
closeOnClick: false, closeOnClick: false,
description: "No media / player found with mpris" title: createComputed([
} as ResultWidgetProps); createBinding(player.get(), "title"),
return [ createBinding(player.get(), "artist"),
new ResultWidget({ createBinding(player.get(), "playbackStatus")
icon: bind(player, "playbackStatus").as((status) => status === AstalMpris.PlaybackStatus.PLAYING ? ], (title, artist, status) => `${ status === AstalMpris.PlaybackStatus.PLAYING ?
"media-playback-pause-symbolic" "Pause" : "Play"
: "media-playback-start-symbolic"), } ${title} | ${artist}`),
closeOnClick: false, onClick: () => player.get().play_pause()
title: playTitle(), } as ResultWidgetProps),
onClick: () => player && player.play_pause() new ResultWidget({
} as ResultWidgetProps), icon: "media-skip-backward-symbolic",
new ResultWidget({ closeOnClick: false,
icon: "media-skip-backward-symbolic", title: createComputed([
closeOnClick: false, createBinding(player.get(), "title"),
title: previousTitle(), createBinding(player.get(), "artist")
onClick: () => player && player.canGoPrevious && player.previous() ], (title, artist) =>
} as ResultWidgetProps), `Go Previous ${ title ? title : player.get().busName }${ artist ? ` | ${artist}` : "" }`
new ResultWidget({ ),
icon: "media-skip-forward-symbolic", onClick: () => player.get().canGoPrevious && player.get().previous()
closeOnClick: false, } as ResultWidgetProps),
title: nextTitle(), new ResultWidget({
onClick: () => player && player.canGoNext && player.next() icon: "media-skip-forward-symbolic",
} as ResultWidgetProps) closeOnClick: false,
] title: createComputed([
}, createBinding(player.get(), "title"),
} as Runner.Plugin createBinding(player.get(), "artist")
})(); ], (title, artist) =>
`Go Next ${ title ? title : player.get().busName }${ artist ? ` | ${artist}` : "" }`
),
onClick: () => player.get().canGoNext && player.get().next()
} as ResultWidgetProps)
]
},
} as Runner.Plugin;
+4 -1
View File
@@ -1,8 +1,11 @@
import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget"; import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget";
import { Gio, GLib } from "astal";
import { Runner } from "../Runner"; import { Runner } from "../Runner";
import { Notifications } from "../../scripts/notifications"; import { Notifications } from "../../scripts/notifications";
import GLib from "gi://GLib?version=2.0";
import Gio from "gi://Gio?version=2.0";
export const PluginShell = (() => { export const PluginShell = (() => {
const shell = GLib.getenv("SHELL") ?? "/bin/sh"; const shell = GLib.getenv("SHELL") ?? "/bin/sh";
+5 -2
View File
@@ -1,10 +1,11 @@
import { Gio } from "astal";
import { Wallpaper } from "../../scripts/wallpaper"; import { Wallpaper } from "../../scripts/wallpaper";
import { Runner } from "../Runner"; import { Runner } from "../Runner";
import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget"; import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget";
import Gio from "gi://Gio?version=2.0";
export class PluginWallpapers implements Runner.Plugin {
class _PluginWallpapers implements Runner.Plugin {
prefix = "#"; prefix = "#";
prioritize = true; prioritize = true;
#files: (Array<string>|undefined); #files: (Array<string>|undefined);
@@ -39,3 +40,5 @@ export class PluginWallpapers implements Runner.Plugin {
} as ResultWidgetProps); } as ResultWidgetProps);
} }
} }
export const PluginWallpapers = new _PluginWallpapers();