-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbox.mjs
79 lines (65 loc) · 1.32 KB
/
box.mjs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { ConsoleManager,ConfirmPopup, Box, InPageWidgetBuilder } from "../dist/esm/ConsoleGui.mjs"
const opt = {
title: "Box Test",
layoutOptions: {
type: "single"
},
logLocation: "popup",
enableMouse: true
}
const GUI = new ConsoleManager(opt)
GUI.on("exit", () => {
closeApp()
})
GUI.on("keypressed", (key) => {
switch (key.name) {
case "q":
new ConfirmPopup({
id: "popupQuit", title: "Are you sure you want to quit?"
}).show().on("confirm", () => closeApp())
break
default:
break
}
})
const closeApp = () => {
console.clear()
process.exit()
}
GUI.refresh()
const b = new Box({
id: "box",
x: 2,
y: 3,
width: 17,
height: 4,
style: {
boxed: true,
}
})
const content = new InPageWidgetBuilder()
content.addRow({
text: "Hello World!",
color: "rgb(255,0,0)",
bg: "rgb(0,0,255)",
})
content.addRow({
text: "Testing Box!",
color: "blue",
})
content.addRow({
text: "Third Row",
color: "cyan",
})
b.setContent(content)
new Box({
id: "box1",
x: 22,
y: 3,
width: 28,
height: 3,
draggable: true,
style: {
boxed: true,
}
}).setContent(new InPageWidgetBuilder().addRow({ text: "This is a draggable Box!", color: "rgb(255,0,0)", bg: "rgb(0,0,255)"}))