155 lines
4.6 KiB
TypeScript
155 lines
4.6 KiB
TypeScript
import Hyprland from 'resource:///com/github/Aylur/ags/service/hyprland.js';
|
|
|
|
import { execAsync, timeout } from 'resource:///com/github/Aylur/ags/utils.js';
|
|
|
|
const { Gtk } = imports.gi;
|
|
|
|
import Tablet from '../../services/tablet.js';
|
|
|
|
const KEY_N = 249;
|
|
const HIDDEN_MARGIN = 340;
|
|
const ANIM_DURATION = 700;
|
|
|
|
// Types
|
|
import AgsWindow from 'types/widgets/window.js';
|
|
import AgsBox from 'types/widgets/box.js';
|
|
|
|
|
|
const releaseAllKeys = () => {
|
|
const keycodes = Array.from(Array(KEY_N).keys());
|
|
|
|
execAsync([
|
|
'ydotool', 'key',
|
|
...keycodes.map((keycode) => `${keycode}:0`),
|
|
]).catch(print);
|
|
};
|
|
|
|
export default (window: AgsWindow) => {
|
|
const gesture = Gtk.GestureDrag.new(window);
|
|
const child = window.child as AgsBox;
|
|
|
|
child.setCss(`margin-bottom: -${HIDDEN_MARGIN}px;`);
|
|
|
|
let signals = [] as Array<number>;
|
|
|
|
window.attribute = {
|
|
setVisible: (state: boolean) => {
|
|
if (state) {
|
|
window.visible = true;
|
|
window.attribute.setSlideDown();
|
|
|
|
child.setCss(`
|
|
transition: margin-bottom 0.7s
|
|
cubic-bezier(0.36, 0, 0.66, -0.56);
|
|
margin-bottom: 0px;
|
|
`);
|
|
}
|
|
else {
|
|
timeout(ANIM_DURATION + 10, () => {
|
|
if (!Tablet.tabletMode) {
|
|
window.visible = false;
|
|
}
|
|
});
|
|
releaseAllKeys();
|
|
window.attribute.setSlideUp();
|
|
|
|
child.setCss(`
|
|
transition: margin-bottom 0.7s
|
|
cubic-bezier(0.36, 0, 0.66, -0.56);
|
|
margin-bottom: -${HIDDEN_MARGIN}px;
|
|
`);
|
|
}
|
|
},
|
|
|
|
killGestureSigs: () => {
|
|
signals.forEach((id) => {
|
|
gesture.disconnect(id);
|
|
});
|
|
signals = [];
|
|
},
|
|
|
|
setSlideUp: () => {
|
|
window.attribute.killGestureSigs();
|
|
|
|
// Begin drag
|
|
signals.push(
|
|
gesture.connect('drag-begin', () => {
|
|
Hyprland.sendMessage('j/cursorpos').then((out) => {
|
|
gesture.startY = JSON.parse(out).y;
|
|
});
|
|
}),
|
|
);
|
|
|
|
// Update drag
|
|
signals.push(
|
|
gesture.connect('drag-update', () => {
|
|
Hyprland.sendMessage('j/cursorpos').then((out) => {
|
|
const currentY = JSON.parse(out).y;
|
|
const offset = gesture.startY - currentY;
|
|
|
|
if (offset < 0) {
|
|
return;
|
|
}
|
|
|
|
(window.child as AgsBox).setCss(`
|
|
margin-bottom: ${offset - HIDDEN_MARGIN}px;
|
|
`);
|
|
});
|
|
}),
|
|
);
|
|
|
|
// End drag
|
|
signals.push(
|
|
gesture.connect('drag-end', () => {
|
|
(window.child as AgsBox).setCss(`
|
|
transition: margin-bottom 0.5s ease-in-out;
|
|
margin-bottom: -${HIDDEN_MARGIN}px;
|
|
`);
|
|
}),
|
|
);
|
|
},
|
|
|
|
setSlideDown: () => {
|
|
window.attribute.killGestureSigs();
|
|
|
|
// Begin drag
|
|
signals.push(
|
|
gesture.connect('drag-begin', () => {
|
|
Hyprland.sendMessage('j/cursorpos').then((out) => {
|
|
gesture.startY = JSON.parse(out).y;
|
|
});
|
|
}),
|
|
);
|
|
|
|
// Update drag
|
|
signals.push(
|
|
gesture.connect('drag-update', () => {
|
|
Hyprland.sendMessage('j/cursorpos').then((out) => {
|
|
const currentY = JSON.parse(out).y;
|
|
const offset = gesture.startY - currentY;
|
|
|
|
if (offset > 0) {
|
|
return;
|
|
}
|
|
|
|
(window.child as AgsBox).setCss(`
|
|
margin-bottom: ${offset}px;
|
|
`);
|
|
});
|
|
}),
|
|
);
|
|
|
|
// End drag
|
|
signals.push(
|
|
gesture.connect('drag-end', () => {
|
|
(window.child as AgsBox).setCss(`
|
|
transition: margin-bottom 0.5s ease-in-out;
|
|
margin-bottom: 0px;
|
|
`);
|
|
}),
|
|
);
|
|
},
|
|
};
|
|
|
|
return window;
|
|
};
|