332 lines
12 KiB
TypeScript
332 lines
12 KiB
TypeScript
import { Astal, Gdk, Gtk } from "ags/gtk4";
|
|
import { getPopupWindowContainer, PopupWindow } from "../widget/PopupWindow";
|
|
import { updateApps } from "../scripts/apps";
|
|
import { ResultWidget, ResultWidgetProps } from "./widgets/ResultWidget";
|
|
import { Windows } from "../windows";
|
|
import { timeout } from "ags/time";
|
|
|
|
import AstalHyprland from "gi://AstalHyprland";
|
|
import AstalIO from "gi://AstalIO";
|
|
|
|
|
|
export namespace Runner {
|
|
export type RunnerProps = {
|
|
halign?: Gtk.Align;
|
|
valign?: Gtk.Align;
|
|
width?: number;
|
|
height?: number;
|
|
entryPlaceHolder?: string;
|
|
initialText?: string;
|
|
resultsLimit?: number;
|
|
showResultsPlaceHolderOnStartup?: boolean;
|
|
};
|
|
|
|
type Result = ResultWidgetProps;
|
|
|
|
export interface Plugin {
|
|
/** prefix to call the plugin. if undefined, will be triggered like applications plugin */
|
|
readonly prefix?: string;
|
|
/** name of the plugin. e.g.: websearch, shell */
|
|
readonly name?: string;
|
|
/** runs when runner opens */
|
|
readonly init?: () => void;
|
|
/** handle the user input to return results (does not include plugin's prefix) */
|
|
readonly handle: (inputText: string) => (Result|Array<Result>|null|undefined);
|
|
/** runs when runner closes */
|
|
readonly onClose?: () => void;
|
|
/** prioritize this plugin's results over other results.
|
|
* (hides other results that aren't from this plugin on list) */
|
|
prioritize?: boolean;
|
|
}
|
|
|
|
export let instance: (Astal.Window|null) = null;
|
|
|
|
let gtkEntry: (Gtk.SearchEntry|null) = null;
|
|
const plugins = new Set<Runner.Plugin>();
|
|
const ignoredKeys = [
|
|
Gdk.KEY_space,
|
|
Gdk.KEY_Shift_L,
|
|
Gdk.KEY_Shift_R,
|
|
Gdk.KEY_Shift_Lock,
|
|
Gdk.KEY_Return,
|
|
Gdk.KEY_Tab,
|
|
Gdk.KEY_Control_L,
|
|
Gdk.KEY_Control_R,
|
|
Gdk.KEY_Alt_L,
|
|
Gdk.KEY_Alt_R,
|
|
Gdk.KEY_Option,
|
|
Gdk.KEY_Super_L,
|
|
Gdk.KEY_Super_R,,
|
|
Gdk.KEY_F5,
|
|
Gdk.KEY_Up,
|
|
Gdk.KEY_Down,
|
|
Gdk.KEY_Left,
|
|
Gdk.KEY_Right
|
|
];
|
|
|
|
|
|
export function close() { instance?.close(); }
|
|
export function regExMatch(search: string, item: (string|number)): boolean {
|
|
search = search.replace(/[\\^$.*?()[\]{}|]/g, "\\$&");
|
|
|
|
if(typeof item === "number")
|
|
return new RegExp(`${search.split('').map(c =>
|
|
`[${c}]`).join('')}`,
|
|
"g").test(item.toString());
|
|
|
|
return new RegExp(`${search.split('').map(c =>
|
|
`${c}`).join('')}`,
|
|
"gi").test(item);
|
|
}
|
|
|
|
|
|
export function addPlugin(plugin: Runner.Plugin, force?: boolean) {
|
|
if(!force && plugin.prefix && plugins.has(plugin))
|
|
throw new Error(`Runner plugin with prefix ${plugin.prefix} already exists`);
|
|
|
|
plugins.delete(plugin);
|
|
plugins.add(plugin);
|
|
}
|
|
|
|
export function getPlugins(): Array<Runner.Plugin> {
|
|
return [...plugins.values()];
|
|
}
|
|
|
|
/** Removes a plugin from the runner plugins list
|
|
* @returns true if plugin was removed or false if plugin wasn't found
|
|
*/
|
|
export function removePlugin(plugin: Plugin): boolean {
|
|
return plugins.delete(plugin);
|
|
}
|
|
|
|
export function setEntryText(text: string): void {
|
|
gtkEntry?.set_text(text);
|
|
gtkEntry?.set_position(gtkEntry.text.length);
|
|
|
|
gtkEntry?.grab_focus();
|
|
}
|
|
|
|
export function openDefault(initialText?: string) {
|
|
return Runner.openRunner({
|
|
entryPlaceHolder: "Start typing...",
|
|
initialText,
|
|
showResultsPlaceHolderOnStartup: false,
|
|
resultsLimit: 24
|
|
} as Runner.RunnerProps, [
|
|
{
|
|
icon: "application-x-executable-symbolic",
|
|
title: "Use your applications",
|
|
description: "Search for any app installed in your computer",
|
|
closeOnClick: false,
|
|
actionClick: () => gtkEntry?.grab_focus()
|
|
},
|
|
{
|
|
icon: "edit-paste-symbolic",
|
|
title: "See your clipboard history",
|
|
description: "Start your search with '>' to go through your clipboard history",
|
|
closeOnClick: false,
|
|
actionClick: () => setEntryText('>')
|
|
},
|
|
{
|
|
icon: "image-x-generic-symbolic",
|
|
title: "Change your wallpaper",
|
|
description: "Add '#' at the start to search through the wallpapers folder!",
|
|
closeOnClick: false,
|
|
actionClick: () => setEntryText('#'),
|
|
},
|
|
{
|
|
icon: "utilities-terminal-symbolic",
|
|
title: "Run shell commands",
|
|
description: "Add '!' before your command to run it (pro tip: add a second '!' to show command output)",
|
|
closeOnClick: false,
|
|
actionClick: () => setEntryText('!!')
|
|
},
|
|
{
|
|
icon: "media-playback-start-symbolic",
|
|
title: "Control media",
|
|
description: "Type ':' to control playing media",
|
|
closeOnClick: false,
|
|
actionClick: () => setEntryText(':')
|
|
},
|
|
{
|
|
icon: "applications-internet-symbolic",
|
|
title: "Search the Web",
|
|
description: "Start typing with '?' prefix to search the web",
|
|
closeOnClick: false,
|
|
actionClick: () => setEntryText('?')
|
|
}
|
|
]);
|
|
}
|
|
|
|
function getPluginResults(input: string, limit?: number): Array<Result> {
|
|
let calledPlugins: Array<Plugin> = getPlugins().filter((plugin) =>
|
|
plugin.prefix ? (input.startsWith(plugin.prefix) ? true : false) : true
|
|
).sort((plugin) => plugin.prefix != null ? 0 : 1);
|
|
|
|
for(const plugin of calledPlugins) {
|
|
if(plugin.prioritize) {
|
|
calledPlugins = [ plugin ];
|
|
break;
|
|
}
|
|
}
|
|
|
|
const results = calledPlugins.map(plugin => plugin.handle(
|
|
plugin.prefix ? input.replace(plugin.prefix, "") : input)
|
|
).filter(value => value !== undefined && value !== null).flat(1);
|
|
|
|
return limit != null && limit > 0 ?
|
|
results.splice(0, limit)
|
|
: results;
|
|
}
|
|
|
|
function updateResultsList(listbox: Gtk.ListBox, input: string, placeholders?: Array<Result>) {
|
|
const newResults: Array<Result> = [],
|
|
scrolledWindow = listbox.parent.parent as Gtk.ScrolledWindow;
|
|
|
|
listbox.remove_all();
|
|
getPluginResults(input).forEach((result) => {
|
|
listbox.insert(<ResultWidget {...result} /> as ResultWidget, -1);
|
|
newResults.push(result);
|
|
});
|
|
|
|
// Insert placeholder if there are no results
|
|
if(placeholders && newResults.length < 1)
|
|
placeholders.forEach(phdlr => listbox.insert(
|
|
<ResultWidget {...phdlr} /> as ResultWidget, -1
|
|
));
|
|
|
|
newResults.length > 0 ?
|
|
(!scrolledWindow.visible && scrolledWindow.show())
|
|
: scrolledWindow.hide();
|
|
}
|
|
|
|
function selectPreviousItem(listbox: Gtk.ListBox) {
|
|
const selectedRow = listbox.get_selected_row();
|
|
const prevRow = selectedRow?.get_prev_sibling();
|
|
|
|
if(!prevRow || selectedRow === listbox.get_row_at_index(0))
|
|
return;
|
|
|
|
const viewport = listbox.parent as Gtk.Viewport;
|
|
const vadjustment = (viewport.parent as Gtk.ScrolledWindow).get_vadjustment();
|
|
const [, , prevRowY] = prevRow.translate_coordinates(viewport,
|
|
prevRow.get_allocation().x, prevRow.get_allocation().y);
|
|
|
|
listbox.select_row(prevRow as Gtk.ListBoxRow);
|
|
if(prevRowY < vadjustment.get_value())
|
|
vadjustment.set_value(prevRowY);
|
|
}
|
|
|
|
function selectNextItem(listbox: Gtk.ListBox) {
|
|
const selectedRow = listbox.get_selected_row();
|
|
const nextRow = selectedRow?.get_next_sibling();
|
|
|
|
if(!nextRow || selectedRow === listbox.get_last_child())
|
|
return;
|
|
|
|
const viewport = listbox.parent as Gtk.Viewport;
|
|
const vadjustment = (viewport.parent as Gtk.ScrolledWindow).get_vadjustment();
|
|
const nextRowVAllocation = (nextRow.get_allocation().y + nextRow.get_allocation().height);
|
|
|
|
listbox.select_row(nextRow as Gtk.ListBoxRow);
|
|
if(nextRowVAllocation > viewport.get_allocation().height)
|
|
vadjustment.set_value(nextRow.get_allocation().y - viewport.get_allocation().height + nextRow.get_allocation().height);
|
|
}
|
|
|
|
export function openRunner(props: RunnerProps, placeholders?: Array<Result>): Astal.Window {
|
|
props.width ??= 780;
|
|
props.height ??= 420;
|
|
|
|
let clickTimeout: AstalIO.Time|undefined;
|
|
|
|
if(!instance)
|
|
instance = Windows.getDefault().createWindowForFocusedMonitor((mon, root) =>
|
|
<PopupWindow namespace={"runner"} monitor={mon} widthRequest={props.width}
|
|
heightRequest={props.height} exclusivity={Astal.Exclusivity.IGNORE} halign={Gtk.Align.CENTER}
|
|
marginTop={(AstalHyprland.get_default().get_monitor(mon)?.height / 2) - (props.height! / 2)}
|
|
valign={Gtk.Align.START} $={() => {
|
|
plugins.forEach(plugin =>
|
|
plugin.init?.());
|
|
|
|
props.initialText &&
|
|
Runner.setEntryText(props.initialText);
|
|
}} actionKeyPressed={(self, keyval) => {
|
|
const listbox = ((getPopupWindowContainer(self).get_first_child()!
|
|
.get_last_child()! as Gtk.ScrolledWindow).get_child()! as Gtk.Viewport)
|
|
.get_child()! as Gtk.ListBox;
|
|
|
|
switch(keyval) {
|
|
case Gdk.KEY_F5:
|
|
updateApps();
|
|
return;
|
|
|
|
case Gdk.KEY_Left:
|
|
case Gdk.KEY_Up:
|
|
selectPreviousItem(listbox);
|
|
return;
|
|
|
|
case Gdk.KEY_Right:
|
|
case Gdk.KEY_Down:
|
|
selectNextItem(listbox);
|
|
return;
|
|
}
|
|
|
|
for(const key of ignoredKeys) {
|
|
if(keyval === key)
|
|
return;
|
|
}
|
|
|
|
!gtkEntry?.hasFocus &&
|
|
gtkEntry?.grab_focus();
|
|
}} actionClosed={() => {
|
|
[...plugins.values()].forEach(plugin => plugin?.onClose?.());
|
|
root.dispose();
|
|
|
|
instance = null;
|
|
gtkEntry = null;
|
|
}}>
|
|
<Gtk.Box class={`runner main`} orientation={Gtk.Orientation.VERTICAL} hexpand
|
|
valign={Gtk.Align.START}>
|
|
|
|
<Gtk.SearchEntry class={"search"} placeholderText={props.entryPlaceHolder ?? ""}
|
|
$={(self) => gtkEntry = self} searchDelay={0} onSearchChanged={(self) => {
|
|
const listbox = self.get_next_sibling()?.get_first_child()?.get_first_child() as Gtk.ListBox;
|
|
updateResultsList(listbox, self.text, placeholders);
|
|
|
|
listbox.get_row_at_index(0) &&
|
|
listbox.select_row(listbox.get_row_at_index(0));
|
|
}} onActivate={(self) => {
|
|
const listbox = self.parent.get_last_child()?.get_first_child()?.get_first_child() as Gtk.ListBox;
|
|
const resultWidget = listbox.get_selected_row()?.get_child();
|
|
|
|
if(resultWidget instanceof ResultWidget) {
|
|
resultWidget.actionClick();
|
|
resultWidget.closeOnClick &&
|
|
Runner.close();
|
|
}
|
|
}} onStopSearch={() => Runner.close()} // close Runner on Escape
|
|
/>
|
|
<Gtk.ScrolledWindow class={"results-scrollable"} vscrollbarPolicy={Gtk.PolicyType.AUTOMATIC}
|
|
hscrollbarPolicy={Gtk.PolicyType.NEVER} hexpand vexpand propagateNaturalHeight visible={false}
|
|
maxContentHeight={props.height}>
|
|
|
|
<Gtk.ListBox hexpand vexpand activateOnSingleClick selectionMode={Gtk.SelectionMode.SINGLE}
|
|
sensitive canFocus focusable onRowActivated={(_, row) => {
|
|
const child = row.get_child()!;
|
|
|
|
if(child instanceof ResultWidget && !clickTimeout) {
|
|
clickTimeout = timeout(250, () => clickTimeout = undefined);
|
|
child.actionClick?.();
|
|
child.closeOnClick &&
|
|
Runner.close();
|
|
}
|
|
}} />
|
|
</Gtk.ScrolledWindow>
|
|
</Gtk.Box>
|
|
</PopupWindow> as Astal.Window
|
|
)();
|
|
|
|
return instance!;
|
|
}
|
|
}
|