forked from pinchtab/pinchtab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev
More file actions
executable file
·311 lines (290 loc) · 9.03 KB
/
dev
File metadata and controls
executable file
·311 lines (290 loc) · 9.03 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
#!/usr/bin/env bash
set -euo pipefail
# dev — Pinchtab developer toolkit
# Usage: dev [command] [sub] Run a command directly
# dev Interactive picker
cd "$(dirname "$0")"
BOLD=$'\033[1m'
ACCENT=$'\033[38;2;251;191;36m'
MUTED=$'\033[38;2;90;100;128m'
SUCCESS=$'\033[38;2;0;229;204m'
ERROR=$'\033[38;2;230;57;70m'
NC=$'\033[0m'
# ── Commands ─────────────────────────────────────────────────────────
# name:emoji:description
COMMANDS=(
"build:🔨:Build the application"
"dev:🚀:Build & run"
"dashboard:🔥:Hot-reload dashboard development"
"run:🏃:Run the application"
"check:🧪:All checks"
"test unit:🔬:Go unit tests"
"test dashboard:🔬:Dashboard unit tests"
"e2e:🐳:E2E suites"
" pr:🐳:PR suite (api-fast + cli-fast)"
" release:🐳:Release suite (api-full + cli-full)"
" docker:🐳:Build local image and run Docker smoke test"
" api-fast:🐳:API fast (single-instance)"
" cli-fast:🐳:CLI fast (single-instance)"
" api-full:🐳:API full (multi-instance)"
" cli-full:🐳:CLI full (single-instance)"
"doctor:🩺:Setup dev environment"
"check go:🧪:Go only"
"check dashboard:🧪:Dashboard only"
"check security:🧪:Gosec security scan"
"check docs:🧪:Validate docs JSON"
"binary:📦:Build release-style binary into dist/"
" all:📦:Build the full release binary matrix into dist/"
"format dashboard:🎨:Run Prettier on dashboard sources"
)
# ── Helpers ──────────────────────────────────────────────────────────
show_help() {
echo ""
echo " ${ACCENT}${BOLD}🦀 Pinchtab Dev${NC}"
echo ""
for cmd in "${COMMANDS[@]}"; do
IFS=':' read -r name emoji desc <<< "$cmd"
if [[ "$name" == " "* ]]; then
local trimmed="${name#"${name%%[![:space:]]*}"}"
printf " ${BOLD}%-18s${NC} ${MUTED}%s${NC}\n" "$trimmed" "$desc"
else
printf " ${SUCCESS}%s${NC} ${BOLD}%-18s${NC} ${MUTED}%s${NC}\n" "$emoji" "$name" "$desc"
fi
done
echo ""
echo " ${MUTED}Usage: dev [command] [sub]${NC}"
echo ""
}
run_command() {
local target="$1"
echo ""
case "$target" in
"check")
echo " ${ACCENT}${BOLD}🧪 Running all checks (Go + Dashboard)${NC}"
echo ""
bash scripts/check.sh
local go_exit=$?
echo ""
echo " ${ACCENT}${BOLD}🧪 Dashboard checks${NC}"
echo ""
bash scripts/check-dashboard.sh
local dash_exit=$?
if [ $go_exit -ne 0 ] || [ $dash_exit -ne 0 ]; then exit 1; fi
exit 0
;;
"check go")
echo " ${ACCENT}${BOLD}🧪 Go checks${NC}"
echo ""
exec bash scripts/check.sh
;;
"check dashboard")
echo " ${ACCENT}${BOLD}🧪 Dashboard checks${NC}"
echo ""
exec bash scripts/check-dashboard.sh
;;
"check security")
echo " ${ACCENT}${BOLD}🔒 Security scan${NC}"
echo ""
exec bash scripts/check-gosec.sh
;;
"check docs")
echo " ${ACCENT}${BOLD}📖 Docs validation${NC}"
echo ""
exec bash scripts/check-docs-json.sh
;;
"format dashboard")
echo " ${ACCENT}${BOLD}🎨 Dashboard formatting${NC}"
echo ""
exec bash -lc 'cd dashboard && if command -v bun >/dev/null 2>&1; then bun run format; else npx prettier --write '"'"'src/**/*.{ts,tsx,css}'"'"'; fi'
;;
"test")
echo " ${ACCENT}${BOLD}🔬 All tests${NC}"
echo ""
exec bash scripts/test.sh all
;;
"test unit")
echo " ${ACCENT}${BOLD}🔬 Go unit tests${NC}"
echo ""
exec bash scripts/test.sh unit
;;
"test dashboard")
echo " ${ACCENT}${BOLD}🔬 Dashboard tests${NC}"
echo ""
exec bash scripts/test.sh dashboard
;;
"unit")
echo " ${ACCENT}${BOLD}🔬 Unit tests${NC}"
echo ""
exec bash scripts/test.sh unit
;;
"system")
echo " ${ACCENT}${BOLD}🔬 System tests${NC}"
echo ""
exec bash scripts/test.sh system
;;
"e2e docker")
local platform="${DOCKER_DEFAULT_PLATFORM:-}"
if [ -z "$platform" ]; then
platform="$(docker version --format '{{.Server.Os}}/{{.Server.Arch}}')"
fi
echo " ${ACCENT}${BOLD}🏗️ Build local Docker image${NC}"
echo ""
echo " ${MUTED}platform: ${platform}${NC}"
docker buildx build --load --platform "$platform" -t pinchtab-local:test .
echo ""
echo " ${ACCENT}${BOLD}💨 Docker smoke test${NC}"
echo ""
exec bash scripts/docker-smoke.sh pinchtab-local:test
;;
"e2e docker "*)
local image="${target#e2e docker }"
echo " ${ACCENT}${BOLD}💨 Docker smoke test${NC}"
echo ""
exec bash scripts/docker-smoke.sh "$image"
;;
"e2e"*)
local suite="release"
local filter=""
if [ "$target" != "e2e" ]; then
local e2e_args="${target#e2e }"
suite="${e2e_args%% *}"
if [ "$suite" != "$e2e_args" ]; then
filter="${e2e_args#"$suite "}"
fi
fi
if [ -n "$filter" ]; then
exec bash scripts/e2e.sh "$suite" "$filter"
fi
exec bash scripts/e2e.sh "$suite"
;;
"dev") exec bash scripts/dev.sh ;;
"dashboard") exec bash scripts/dev-dashboard.sh ;;
"build") exec bash scripts/build.sh ;;
"binary") exec bash scripts/binary.sh ;;
"binary all"|"all") exec bash scripts/binary.sh all ;;
"run") exec bash scripts/run.sh ;;
"doctor") exec bash scripts/doctor.sh ;;
"hooks") exec bash scripts/install-hooks.sh ;;
*)
echo " ${ERROR}Unknown command: $target${NC}"
show_help
exit 1
;;
esac
}
pick_with_gum() {
local options=()
local commands_map=() # parallel array: full command string for each option
local parent=""
for cmd in "${COMMANDS[@]}"; do
IFS=':' read -r name emoji desc <<< "$cmd"
local trimmed="${name#"${name%%[![:space:]]*}"}"
if [[ "$name" == " "* ]]; then
# Subcommand: indent, no emoji — prefix with parent
options+=("$(printf ' %-18s %s' "$trimmed" "$desc")")
commands_map+=("$parent $trimmed")
else
parent="$trimmed"
options+=("$(printf '%s %-18s %s' "$emoji" "$trimmed" "$desc")")
commands_map+=("$trimmed")
fi
done
local choice
choice=$(printf '%s\n' "${options[@]}" | gum choose \
--header "🦀 Pinchtab Dev" \
--header.foreground "#fbbf24" \
--cursor.foreground "#00e5cc" \
--selected.foreground "#00e5cc" \
--item.foreground "#8892b0")
# Find the index of the chosen option and look up the full command
local picked=""
for i in "${!options[@]}"; do
if [[ "${options[$i]}" == "$choice" ]]; then
picked="${commands_map[$i]}"
break
fi
done
# Clear the picker before streaming command output.
printf '\033[2J\033[H'
run_command "$picked"
}
pick_with_select() {
echo ""
echo " ${ACCENT}${BOLD}🦀 Pinchtab Dev${NC}"
echo ""
local names=()
local i=1
for cmd in "${COMMANDS[@]}"; do
IFS=':' read -r name emoji desc <<< "$cmd"
local trimmed="${name#"${name%%[![:space:]]*}"}"
if [[ "$name" == " "* ]]; then
printf " ${MUTED}[%3d]${NC} ${BOLD}%-18s${NC} ${MUTED}%s${NC}\n" "$i" "$trimmed" "$desc"
else
printf " ${MUTED}[%3d]${NC} ${SUCCESS}%s${NC} ${BOLD}%-18s${NC} ${MUTED}%s${NC}\n" "$i" "$emoji" "$trimmed" "$desc"
fi
names+=("$trimmed")
i=$((i + 1))
done
echo ""
echo -ne " ${BOLD}Pick [1-${#COMMANDS[@]}]:${NC} "
read -r choice
# Handle numeric or name input
if [[ "$choice" =~ ^[0-9]+$ ]] && [ "$choice" -ge 1 ] && [ "$choice" -le ${#COMMANDS[@]} ]; then
run_command "${names[$((choice - 1))]}"
else
run_command "$choice"
fi
}
# ── Main ─────────────────────────────────────────────────────────────
# Direct command with optional subcommand
if [ $# -gt 0 ]; then
case "$1" in
-h|--help|help) show_help; exit 0 ;;
-i|--interactive)
if command -v gum &>/dev/null; then pick_with_gum; else pick_with_select; fi
exit 0
;;
check)
if [ $# -gt 1 ]; then
run_command "check $2"
else
run_command "check"
fi
;;
test)
if [ $# -gt 1 ]; then
run_command "test $2"
else
run_command "test"
fi
;;
format)
if [ $# -gt 1 ]; then
run_command "format $2"
else
run_command "format"
fi
;;
e2e)
if [ $# -gt 1 ]; then
run_command "e2e ${*:2}"
else
run_command "e2e"
fi
;;
binary)
if [ $# -gt 1 ]; then
run_command "binary $2"
else
run_command "binary"
fi
;;
*) run_command "$1" ;;
esac
fi
# No args → interactive picker
if command -v gum &>/dev/null; then
pick_with_gum
else
pick_with_select
fi