summaryrefslogtreecommitdiff
path: root/contrib/gen-ts.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gen-ts.sh')
-rwxr-xr-xcontrib/gen-ts.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/gen-ts.sh b/contrib/gen-ts.sh
new file mode 100755
index 0000000..bc204d1
--- /dev/null
+++ b/contrib/gen-ts.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+# Generate a single TS file from the JSON data files in contrib/.
+# Requires prettier to be installed.
+
+gen_ts() {
+ echo "// This file is auto-generated, do not modify."
+ echo "// Generated from $(git describe --tags) on $(date -R)"
+ echo "// To re-generate, run contrib/gen-ts.sh from the main anastasis code base."
+ echo
+ echo "export const anastasisData = {"
+ echo "providersList: $(cat provider-list.json),"
+ echo "countriesList: $(cat redux.countries.json),"
+ echo "countryDetails: {"
+ for f in redux.??.json; do
+ cc=$(echo $f | awk -F "." '{ print $2 }')
+ echo "$cc: $(cat $f),"
+ done
+ echo "}," # country details
+ echo "}" # anastasis data
+
+}
+
+gen_ts > anastasis-data.ts
+# Auto-format
+prettier -w anastasis-data.ts