-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathutils
More file actions
executable file
·367 lines (303 loc) · 7.4 KB
/
utils
File metadata and controls
executable file
·367 lines (303 loc) · 7.4 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
#!/bin/bash
# Catppuccin Mocha theme colors (only define if not already set)
if [[ -z "${PURPLE:-}" ]]; then
readonly PURPLE="#cba6f7" # mauve
readonly GREEN="#a6e3a1"
readonly RED="#f38ba8"
readonly YELLOW="#f9e2af"
readonly CYAN="#89dceb" # sky
readonly ORANGE="#fab387" # peach
readonly PINK="#f5c2e7"
fi
# Gum wrapper functions for common UI patterns
# Execute command with gum spinner
gum_execute() {
local -r CMDS="$1"
local -r MSG="${2:-$1}"
local -r SPINNER="${3:-dot}"
if cmd_exists "gum"; then
gum spin --spinner="$SPINNER" --title="$MSG" -- bash -c "$CMDS"
else
echo "⚙️ $MSG"
eval "$CMDS"
fi
}
# Convenient aliases for different spinner types
gum_execute_pulse() {
gum_execute "$1" "$2" "pulse"
}
gum_execute_points() {
gum_execute "$1" "$2" "points"
}
gum_execute_moon() {
gum_execute "$1" "$2" "moon"
}
show_header() {
local title="$1"
local description="$2"
if cmd_exists "gum"; then
if [ -n "$description" ]; then
gum style \
--foreground="$PURPLE" \
--border="rounded" \
--padding="1 2" \
--margin="1 0" \
"$title" \
"" \
"$description"
else
gum style \
--foreground="$PURPLE" \
--border="rounded" \
--padding="1 2" \
--margin="1 0" \
"$title"
fi
else
echo "$title"
[ -n "$description" ] && echo "$description"
fi
}
show_section() {
local title="$1"
local color="${2:-$YELLOW}"
echo ""
if cmd_exists "gum"; then
gum style \
--foreground="$color" \
--bold \
--border="rounded" \
--padding="0 1" \
"$title"
else
echo "$title"
fi
}
show_completion() {
local title="$1"
local message="$2"
local additional="${3:-}"
echo ""
if cmd_exists "gum"; then
if [ -n "$additional" ]; then
gum style \
--foreground="$GREEN" \
--border="double" \
--padding="1 2" \
--margin="1 0" \
"$title" \
"" \
"$message" \
"$additional"
else
gum style \
--foreground="$GREEN" \
--border="double" \
--padding="1 2" \
--margin="1 0" \
"$title" \
"" \
"$message"
fi
else
echo "$title"
echo "$message"
[ -n "$additional" ] && echo "$additional"
fi
}
show_message() {
local message="$1"
local color="${2:-$CYAN}"
if cmd_exists "gum"; then
gum style --foreground="$color" "$message"
else
echo "$message"
fi
}
show_bold_message() {
local message="$1"
local color="${2:-$GREEN}"
if cmd_exists "gum"; then
gum style --foreground="$color" --bold "$message"
else
echo "$message"
fi
}
answer_is_yes() {
[[ $REPLY =~ ^[Yy]$ ]] &&
return 0 ||
return 1
}
ask() {
if cmd_exists "gum"; then
REPLY=$(gum input --placeholder "$1")
else
print_question "$1"
read -r
fi
}
ask_for_confirmation() {
if cmd_exists "gum"; then
gum confirm "$1" && REPLY="y" || REPLY="n"
else
print_question "$1 (y/n) "
read -r -n 1
printf "\n"
fi
}
ask_for_sudo() {
# Ask for the administrator password upfront.
sudo -v &>/dev/null
# Update existing `sudo` time stamp
# until this script has finished.
#
# https://gist.github.com/cowboy/3118588
while true; do
sudo -n true
sleep 60
kill -0 "$$" || exit
done &>/dev/null &
}
cmd_exists() {
command -v "$1" &>/dev/null
}
kill_all_subprocesses() {
local i=""
for i in $(jobs -p); do
kill "$i"
wait "$i" &>/dev/null
done
}
execute() {
local -r CMDS="$1"
local -r MSG="${2:-$1}"
local -r TMP_FILE="$(mktemp /tmp/XXXXX)"
local exitCode=0
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# If the current process is ended,
# also end all its subprocesses.
set_trap "EXIT" "kill_all_subprocesses"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if cmd_exists "gum"; then
# Use gum's built-in spinner with error capture
gum spin \
--spinner="dot" \
--title="$MSG" \
-- bash -c "$CMDS >/dev/null 2>'$TMP_FILE'"
exitCode=$?
else
# Fallback to original implementation
eval "$CMDS" \
>/dev/null \
2>"$TMP_FILE" &
local cmdsPID=$!
show_spinner "$cmdsPID" "$CMDS" "$MSG"
wait "$cmdsPID" &>/dev/null
exitCode=$?
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Print output based on what happened.
print_result $exitCode "$MSG"
if [ $exitCode -ne 0 ]; then
print_error_stream <"$TMP_FILE"
fi
rm -f "$TMP_FILE"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
return $exitCode
}
print_error() {
if cmd_exists "gum"; then
gum style --foreground="$RED" --bold "❌ $1 $2"
else
print_in_red " [✖] $1 $2\n"
fi
}
print_error_stream() {
while read -r line; do
print_error "↳ ERROR: $line"
done
}
print_in_color() {
printf "%b" \
"$(tput setaf "$2" 2>/dev/null)" \
"$1" \
"$(tput sgr0 2>/dev/null)"
}
print_info() {
if cmd_exists "gum"; then
gum style --foreground="$CYAN" "ℹ️ $1"
else
print_in_color "$1" 6
fi
}
print_in_green() {
print_in_color "$1" 2
}
print_in_purple() {
if cmd_exists "gum"; then
gum style --foreground="$PURPLE" --bold "$1"
else
print_in_color "$1" 5
fi
}
print_in_red() {
print_in_color "$1" 1
}
print_in_yellow() {
print_in_color "$1" 3
}
print_question() {
if cmd_exists "gum"; then
gum style --foreground="$YELLOW" "❓ $1"
else
print_in_yellow " [?] $1"
fi
}
print_result() {
if [ "$1" -eq 0 ]; then
print_success "$2"
else
print_error "$2"
fi
return "$1"
}
print_success() {
if cmd_exists "gum"; then
gum style --foreground="$GREEN" --bold "✅ $1"
else
print_in_green " [✔] $1\n"
fi
}
print_warning() {
if cmd_exists "gum"; then
gum style --foreground="$ORANGE" "⚠️ $1"
else
print_in_yellow " [!] $1\n"
fi
}
set_trap() {
trap -p "$1" | grep "$2" &>/dev/null ||
trap '$2' "$1"
}
show_spinner() {
local -r CMDS="$2"
local -r MSG="$3"
local -r PID="$1"
if cmd_exists "gum"; then
# Wait for the background process to complete while showing nothing
# (gum spin will be used in execute function instead)
wait "$PID" &>/dev/null
else
# Fallback to original spinner
local -r FRAMES='/-\|'
local -r NUMBER_OR_FRAMES=${#FRAMES}
local i=0
local frameText=""
while kill -0 "$PID" &>/dev/null; do
frameText=" [${FRAMES:i++%NUMBER_OR_FRAMES:1}] $MSG"
printf "%s" "$frameText"
sleep 0.2
printf "\r"
done
fi
}