aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJoris2023-09-16 18:28:16 +0200
committerJoris2023-09-16 18:31:24 +0200
commit06f045e90bb57c36738e58ee6830e2a2391bc6a3 (patch)
treea5b65b048c103b4ea0e5d3c0fa5e115cbaf3cf5f /bin
parent230f2e0623d22af6e68466884bd5dea5dcb846dc (diff)
Migrate CLI to python
Diffstat (limited to 'bin')
-rwxr-xr-xbin/dev-server11
-rwxr-xr-xbin/get-books24
-rwxr-xr-xbin/view16
3 files changed, 6 insertions, 45 deletions
diff --git a/bin/dev-server b/bin/dev-server
index 2d1bf99..c98fdc5 100755
--- a/bin/dev-server
+++ b/bin/dev-server
@@ -3,7 +3,7 @@ set -euo pipefail
cd $(dirname "$0")/..
if [ "$#" == 1 ]; then
- BOOK_DIR="$1"
+ BOOK_LIBRARY="$1"
else
echo "usage: $0 path-to-book-directory"
exit 1
@@ -11,17 +11,18 @@ fi
# Watch books
-BUILD_BOOKS_CMD="./bin/get-books $BOOK_DIR > public/books.js && echo public/books.js updated."
+BUILD_BOOKS_CMD="echo \"const bookLibrary=\" > src/view/public/books.js && python src/main.py library >> src/view/public/books.js && echo src/view/public/books.js updated."
watchexec \
- --watch "$BOOK_DIR" \
+ --watch "$BOOK_LIBRARY" \
-- "$BUILD_BOOKS_CMD" &
# Watch TypeScript
+cd src/view
CHECK="echo -e 'Checking TypeScript…\n' && tsc --checkJs"
-BUILD="esbuild --bundle src/main.ts --target=es2017 --outdir=public"
+BUILD="esbuild --bundle main.ts --target=es2017 --outdir=public"
SHOW="echo -e '\nOpen $PWD/public/index.html'"
watchexec \
--clear \
- --watch src \
+ --watch client \
-- "$CHECK && $BUILD && $SHOW"
diff --git a/bin/get-books b/bin/get-books
deleted file mode 100755
index 1c9bf67..0000000
--- a/bin/get-books
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env bash
-set -euo pipefail
-cd $(dirname "$0")/..
-
-if [ "$#" == 1 ]; then
- BOOK_DIR="$1"
-else
- echo "usage: $0 path-to-book-directory"
- exit 1
-fi
-
-echo "const bookLibrary = ["
-
-for METADATA in $(find "$BOOK_DIR" -name 'metadata.toml'); do
- DIR=$(dirname "$METADATA")
- COVER=$(ls $DIR/cover.*)
-
- TOML=$(cat "$METADATA")
- WITH_COVER=$(echo -e "$TOML\ncover = \"$COVER\"")
- echo "$WITH_COVER" | toml2json
- echo ","
-done
-
-echo "]"
diff --git a/bin/view b/bin/view
deleted file mode 100755
index 4fd4efc..0000000
--- a/bin/view
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-set -euo pipefail
-cd $(dirname "$0")/..
-
-if [ "$#" == 2 ]; then
- BROWSER="$1"
- BOOK_DIR="$2"
-else
- echo "usage: $0 browser-cmd path-to-book-directory"
- exit 1
-fi
-
-TMP_DIR=$(mktemp --directory)
-cp public/* "$TMP_DIR"
-bin/get-books "$BOOK_DIR" > "$TMP_DIR/books.js"
-eval "$BROWSER $TMP_DIR/index.html"