158 lines
3.9 KiB
TypeScript
158 lines
3.9 KiB
TypeScript
import Gtk from 'gi://Gtk?version=3.0';
|
|
const Hyprland = await Service.import('hyprland');
|
|
|
|
const { Box, register } = Widget;
|
|
const { timeout } = Utils;
|
|
|
|
// Types
|
|
import { Window } from 'resource:///com/github/Aylur/ags/widgets/window.js';
|
|
import { Variable as Var } from 'types/variable';
|
|
|
|
import {
|
|
CloseType,
|
|
HyprTransition,
|
|
PopupWindowProps,
|
|
} from 'global-types';
|
|
|
|
|
|
export class PopupWindow<
|
|
Child extends Gtk.Widget,
|
|
Attr,
|
|
> extends Window<Child, Attr> {
|
|
static {
|
|
register(this, {
|
|
properties: {
|
|
content: ['widget', 'rw'],
|
|
},
|
|
});
|
|
}
|
|
|
|
#content: Var<Gtk.Widget>;
|
|
#close_on_unfocus: CloseType;
|
|
#transition: HyprTransition;
|
|
|
|
get content() {
|
|
return this.#content.value;
|
|
}
|
|
|
|
set content(value: Gtk.Widget) {
|
|
this.#content.setValue(value);
|
|
this.child.show_all();
|
|
}
|
|
|
|
get close_on_unfocus() {
|
|
return this.#close_on_unfocus;
|
|
}
|
|
|
|
set close_on_unfocus(value: CloseType) {
|
|
this.#close_on_unfocus = value;
|
|
}
|
|
|
|
get transition() {
|
|
return this.#transition;
|
|
}
|
|
|
|
set transition(t: HyprTransition) {
|
|
this.#transition = t;
|
|
Hyprland.messageAsync(`keyword layerrule animation ${t}, ${this.name}`);
|
|
}
|
|
|
|
constructor({
|
|
transition = 'slide top',
|
|
transition_duration = 800,
|
|
on_open = () => {/**/},
|
|
on_close = () => {/**/},
|
|
|
|
// Window props
|
|
name,
|
|
visible = false,
|
|
anchor = [],
|
|
layer = 'overlay',
|
|
attribute,
|
|
content = Box(),
|
|
blur = false,
|
|
close_on_unfocus = 'released',
|
|
...rest
|
|
}: PopupWindowProps<Child, Attr>) {
|
|
const contentVar = Variable(Box() as Gtk.Widget);
|
|
|
|
if (content) {
|
|
contentVar.setValue(content);
|
|
}
|
|
|
|
super({
|
|
...rest,
|
|
name: `win-${name}`,
|
|
visible,
|
|
anchor,
|
|
layer,
|
|
attribute,
|
|
setup: () => {
|
|
const id = App.connect('config-parsed', () => {
|
|
// Add way to make window open on startup
|
|
if (visible) {
|
|
App.openWindow(`win-${name}`);
|
|
}
|
|
|
|
// This connection should always run only once
|
|
App.disconnect(id);
|
|
});
|
|
|
|
if (blur) {
|
|
Hyprland.messageAsync('[[BATCH]] ' +
|
|
`keyword layerrule ignorealpha 0.97, win-${name}; ` +
|
|
`keyword layerrule blur, win-${name}`);
|
|
}
|
|
|
|
Hyprland.messageAsync(
|
|
`keyword layerrule animation ${transition}, win-${name}`,
|
|
);
|
|
},
|
|
child: contentVar.bind(),
|
|
});
|
|
|
|
this.hook(App, (_, currentName, isOpen) => {
|
|
if (currentName === `win-${name}`) {
|
|
if (isOpen) {
|
|
on_open(this);
|
|
}
|
|
else {
|
|
timeout(Number(transition_duration), () => {
|
|
on_close(this);
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
this.#content = contentVar;
|
|
this.#close_on_unfocus = close_on_unfocus;
|
|
this.#transition = transition;
|
|
}
|
|
|
|
set_x_pos(
|
|
alloc: Gtk.Allocation,
|
|
side = 'right' as 'left' | 'right',
|
|
) {
|
|
const width = this.get_display()
|
|
.get_monitor_at_point(alloc.x, alloc.y)
|
|
.get_geometry().width;
|
|
|
|
this.margins = [
|
|
this.margins[0],
|
|
|
|
side === 'right' ?
|
|
(width - alloc.x - alloc.width) :
|
|
this.margins[1],
|
|
|
|
this.margins[2],
|
|
|
|
side === 'right' ?
|
|
this.margins[3] :
|
|
(alloc.x - alloc.width),
|
|
];
|
|
}
|
|
}
|
|
|
|
export default <Child extends Gtk.Widget, Attr>(
|
|
props: PopupWindowProps<Child, Attr>,
|
|
) => new PopupWindow(props);
|