nixos-configs/nixosModules/ags/v2/widgets/applauncher/main.tsx

54 lines
1.4 KiB
TypeScript
Raw Normal View History

import { App } from 'astal/gtk3';
2024-10-18 00:44:45 -04:00
2024-10-22 13:09:39 -04:00
import AstalApps from 'gi://AstalApps';
2024-10-18 00:44:45 -04:00
import SortedList from '../misc/sorted-list';
2024-10-18 00:44:45 -04:00
import { launchApp } from './launch';
import AppItemWidget, { AppItem } from './app-item';
2024-10-18 00:44:45 -04:00
export default () => SortedList({
name: 'applauncher',
2024-10-18 00:44:45 -04:00
create_list: () => AstalApps.Apps.new().get_list(),
2024-10-18 00:44:45 -04:00
create_row: (app) => AppItemWidget({ app }),
2024-10-18 00:44:45 -04:00
fzf_options: {
selector: (app) => app.name + app.executable,
tiebreakers: [
(a, b) => b.item.frequency - a.item.frequency,
],
},
on_row_activated: (row) => {
2024-10-18 00:44:45 -04:00
const app = (row.get_children()[0] as AppItem).app;
launchApp(app);
App.get_window('win-applauncher')?.set_visible(false);
},
sort_func: (a, b, entry, fzfResults) => {
2024-10-18 00:44:45 -04:00
const row1 = (a.get_children()[0] as AppItem).app;
const row2 = (b.get_children()[0] as AppItem).app;
if (entry.text === '' || entry.text === '-') {
a.set_visible(true);
b.set_visible(true);
return row2.frequency - row1.frequency;
}
else {
const s1 = fzfResults.find((r) => r.item.name === row1.name)?.score ?? 0;
const s2 = fzfResults.find((r) => r.item.name === row2.name)?.score ?? 0;
a.set_visible(s1 !== 0);
b.set_visible(s2 !== 0);
return s2 - s1;
}
},
});