-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
179 lines (165 loc) · 4.88 KB
/
main.js
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import * as _ from "../justjs/globalConstants.js";
import arg from "../qjs-ext-lib/src/arg.js";
import launcher from "./launcher.js";
import run from "./run.js";
import getUserMenu from "./userMenu.js";
import { ansi } from "../justjs/ansiStyle.js";
import basicCalculator from "./basicCalculator.js";
import jiffyMenu from "./jiffyMenu.js";
import emojis from "./emojis.js";
import { createShortcutNames } from "./utils.js";
import keymaps from "./keymaps.js";
// Application modes
export const modes = [];
await main();
async function main() {
try {
OS.ttySetRaw();
globalThis.USER_ARGUMENTS = await parseUserArguments();
await app();
} catch (error) {
if (error instanceof SystemError) error.log(true);
else {STD.err.puts(
`State:\n${
JSON.stringify(USER_ARGUMENTS, null, 2)
}\n${error.constructor.name}: ${error.message}\n${error.stack}`,
);}
STD.exit(1);
} finally {
print(ansi.style.reset);
STD.exit(0);
}
}
async function parseUserArguments() {
// Define the argument names and their corresponding flags
const args = {
mode: "--mode", // Defines the mode of operation
iconSize: "--icon-size", // Defines the icon size
preset: "--preset", // Defines the UI preset number
clipboard: "--clipboard",
printCategory: "--print-category",
fzfArgs: "--fzf-args", // Defines custom arguments for the fuzzy finder (fzf)
refresh: "--refresh", // Flag to enable caching of the application list
terminal: "--terminal",
modKey: "--mod-key",
inject: "--inject", // Allows injecting custom JS code at startup
};
const userMenu = await getUserMenu();
const predefinedMenuItem = [
"Apps",
"Basic calculator",
"Emojis",
"Jiffy menu",
"Key maps",
];
predefinedMenuItem.push(...Object.keys(userMenu));
modes.push(...createShortcutNames(
predefinedMenuItem,
));
// Parse the user input arguments using `arg.parser`
const userArguments = arg.parser({
[args.mode]: arg.str(modes[3][0]).enum(
modes.flat(),
)
.desc(
"Set the mode of commands from modes predefined in the config file.",
),
[args.iconSize]: arg.num(5).min(0).desc("App's icon cell size."),
[args.preset]: arg.str("1").enum(["1", "2", "3"]).desc(
"Start with UI preset.",
),
[args.clipboard]: arg.str("wl-copy").env("COPY_TO_CLIPBOARD").desc(
"Clipboard used for pasting the selected emoji.",
),
[args.printCategory]: arg.flag(true).desc("Print app's category."),
[args.fzfArgs]: [
arg.str().desc(
"Custom arguments for fzf.",
),
],
[args.refresh]: arg.flag().desc("Cache the application list."),
[args.terminal]: arg.str("kitty -1 --hold").env("TERMINAL").desc(
"Default terminal to launch terminal apps.",
),
[args.modKey]: arg.str("ctrl").enum([
"ctrl",
"alt",
])
.desc(
"Mod key for shortcut key-binds.",
),
[args.inject]: arg.str().val("JS").cust(STD.evalScript).desc(
"Inject JS code to run at startup.",
),
"-m": args.mode, // Short form for --mode
"-s": args.iconSize, // Short form for --icon-size
"-p": args.preset, // Short form for --preset
"-x": args.clipboard, // Short form for --clipboard
"-c": args.printCategory, // Short form for --print-category
"-r": args.refresh, // short form for --cache
"-t": args.terminal,
"-k": args.modKey,
"-i": args.inject, // Short form for --inject
})
.ex([
[
`--fzf-args='--prompt=" "' -c`,
"Hide prompt and app's category.",
],
[
'--fzf-args="--preview-window=0" --no-cache',
"Hide app description and refresh app's list.",
],
[
`-p 2 -i 'OS.exec(["kitty", "@", "set-spacing", "margin=0"])'`,
"Change UI preset and inject JS to remove window margin.",
],
].map(
([command, description]) =>
command.concat(
"\n",
ansi.style.grey,
ansi.style.italic,
`- ${description}`,
ansi.style.reset,
),
))
.ver("1.4.2")
.parse();
// Convert the parsed arguments into an object and return it
return Object.fromEntries(
Object.entries(args).map(([key, value]) => [key, userArguments[value]]),
);
}
export async function app() {
switch (USER_ARGUMENTS.mode) {
/* Launcher */
case modes[0][0]:
case modes[0][1]:
await launcher();
break;
/* Basic Calculator */
case modes[1][0]:
case modes[1][1]:
await basicCalculator();
break;
/* Emojies picker */
case modes[2][0]:
case modes[2][1]:
await emojis();
break;
/* Jiffy Menu */
case modes[3][0]:
case modes[3][1]:
await jiffyMenu();
break;
/* Key maps */
case modes[4][0]:
case modes[4][1]:
await keymaps();
break;
/* User defined menu */
default:
await run();
}
}