1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import gi from "node-gtk"
import { RequestHandler, Config, runJS } from "../src/application.js"
const Astal = gi.require("Astal", "0.1")
class AstalJS extends Astal.Application {
static GTypeName = "AstalJS"
static { gi.registerClass(this) }
eval = runJS
requestHandler?: RequestHandler
vfunc_response(msg: string, conn: any): void {
if (typeof this.requestHandler === "function") {
this.requestHandler(msg, response => {
Astal.writeSock(conn, response, (_, res) =>
Astal.writeSockFinish(res),
)
})
} else {
// @ts-expect-error missing type
super.vfunc_response(msg, conn)
}
}
start(
{ requestHandler, css, ...cfg }: Omit<Config, "hold"> = {},
callback?: (args: string[]) => any,
) {
Object.assign(this, cfg)
this.requestHandler = requestHandler
this.on("activate", () => {
callback?.(process.argv)
})
if (!this.acquireSocket()) {
console.error(`Astal instance "${this.instanceName}" already running`)
process.exit()
}
if (css)
this.applyCss(css, false)
// FIXME: promises never resolve
// https://github.com/romgrk/node-gtk/issues/121
// https://gitlab.gnome.org/GNOME/gjs/-/issues/468
App.run([])
}
}
export const App = new AstalJS
|