PeerTube/scripts/build/client.sh

163 lines
5.1 KiB
Bash
Raw Normal View History

2018-06-28 14:56:46 +02:00
#!/bin/bash
2018-03-27 10:35:12 +02:00
set -eu
2020-02-07 15:51:19 +01:00
declare -A languages
2018-07-25 09:57:52 +02:00
pre_build_hook () {
2019-11-07 15:33:23 +01:00
mkdir "./src/pending_locale" > /dev/null || true
mv ./src/locale/angular.*.xlf "./src/pending_locale"
2018-07-25 09:57:52 +02:00
if [ ! -z ${1+x} ]; then
2019-11-07 15:33:23 +01:00
mv "./src/pending_locale/angular.$1.xlf" "./src/locale"
2018-07-25 09:57:52 +02:00
fi
}
post_build_hook () {
2019-11-07 15:33:23 +01:00
mv ./src/pending_locale/* "./src/locale"
rmdir "./src/pending_locale/"
2018-07-25 09:57:52 +02:00
}
# Previous build failed
2019-11-07 15:33:23 +01:00
if [ ! -f "client/src/locale/angular.fr-FR.xlf" ]; then
git checkout -- client/src/locale/
rm -r client/src/pending_locale
fi
2018-03-27 10:35:12 +02:00
cd client
2017-12-13 17:51:32 +01:00
rm -rf ./dist ./compiled
2017-04-26 21:46:56 +02:00
2018-07-25 09:57:52 +02:00
pre_build_hook
2020-08-05 16:44:48 +02:00
additionalParams=""
if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then
additionalParams="--namedChunks=true --outputHashing=none"
fi
2019-11-07 15:33:23 +01:00
defaultLanguage="en-US"
2020-08-05 16:44:48 +02:00
npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json $additionalParams
2018-05-31 18:12:15 +02:00
mv "./dist/$defaultLanguage/assets" "./dist"
2018-09-28 13:55:51 +02:00
mv "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest"
2018-05-31 18:12:15 +02:00
2018-07-25 09:57:52 +02:00
post_build_hook
# Don't build other languages if --light arg is provided
2020-08-05 16:44:48 +02:00
if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then
2020-02-13 13:59:20 +01:00
if [ ! -z ${1+x} ] && [ "$1" == "--light-hu" ]; then
languages=(["hu"]="hu-HU")
2020-06-04 10:35:08 +02:00
elif [ ! -z ${1+x} ] && [ "$1" == "--light-ar" ]; then
2020-07-02 14:08:02 +02:00
languages=(["ar"]="ar")
2020-06-04 11:01:54 +02:00
elif [ ! -z ${1+x} ] && [ "$1" == "--light-vi" ]; then
languages=(["vi"]="vi-VN")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-kab" ]; then
languages=(["kab"]="kab")
2020-02-13 13:59:20 +01:00
elif [ ! -z ${1+x} ] && [ "$1" == "--light-th" ]; then
languages=(["th"]="th-TH")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-fi" ]; then
languages=(["fi"]="fi-FI")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-nl" ]; then
languages=(["nl"]="nl-NL")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-gd" ]; then
languages=(["gd"]="gd")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-el" ]; then
languages=(["el"]="el-GR")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-es" ]; then
languages=(["es"]="es-ES")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-oc" ]; then
languages=(["oc"]="oc")
2020-02-13 13:59:20 +01:00
elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt" ]; then
languages=(["pt"]="pt-BR")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt-PT" ]; then
languages=(["pt-PT"]="pt-PT")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-sv" ]; then
languages=(["sv"]="sv-SE")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-pl" ]; then
languages=(["pl"]="pl-PL")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-ru" ]; then
languages=(["ru"]="ru-RU")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hans" ]; then
languages=(["zh-Hans"]="zh-Hans-CN")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hant" ]; then
languages=(["zh-Hant"]="zh-Hant-TW")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then
2020-02-07 15:51:19 +01:00
languages=(["fr"]="fr-FR")
2020-02-13 13:59:20 +01:00
elif [ ! -z ${1+x} ] && [ "$1" == "--light-ja" ]; then
languages=(["ja"]="ja-JP")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-eu" ]; then
languages=(["eu"]="eu-ES")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-ca" ]; then
languages=(["ca"]="ca-ES")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-cs" ]; then
languages=(["cs"]="cs-CZ")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-eo" ]; then
languages=(["eo"]="eo")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-de" ]; then
languages=(["de"]="de-DE")
elif [ ! -z ${1+x} ] && [ "$1" == "--light-it" ]; then
languages=(["it"]="it-IT")
2018-08-16 10:48:35 +02:00
else
# Supported languages
2019-08-22 14:45:16 +02:00
languages=(
2020-07-02 14:08:02 +02:00
["ar"]="ar"
2020-06-04 11:01:54 +02:00
["vi"]="vi-VN"
2020-02-07 15:51:19 +01:00
["hu"]="hu-HU"
["th"]="th-TH"
["fi"]="fi-FI"
["nl"]="nl-NL"
["gd"]="gd"
["el"]="el-GR"
["es"]="es-ES"
["oc"]="oc"
2020-02-07 15:51:19 +01:00
["pt"]="pt-BR"
["pt-PT"]="pt-PT"
["sv"]="sv-SE"
["pl"]="pl-PL"
["ru"]="ru-RU"
["zh-Hans"]="zh-Hans-CN"
["zh-Hant"]="zh-Hant-TW"
["fr"]="fr-FR"
["ja"]="ja-JP"
["eu"]="eu-ES"
["ca"]="ca-ES"
["cs"]="cs-CZ"
["eo"]="eo"
["de"]="de-DE"
["it"]="it-IT"
2020-06-04 11:01:54 +02:00
["kab"]="kab"
2019-08-22 14:45:16 +02:00
)
2018-08-16 10:48:35 +02:00
fi
2020-02-07 15:51:19 +01:00
for key in "${!languages[@]}"; do
lang=${languages[$key]}
2018-07-25 09:57:52 +02:00
# TODO: remove when the project will use runtime translations
pre_build_hook "$lang"
2020-02-12 14:09:24 +01:00
npm run ng build -- --prod --configuration="$lang" --output-path "dist/build"
2020-02-07 15:51:19 +01:00
2020-02-12 14:09:24 +01:00
# If --localize is not used
mv "dist/build/$key" "dist/$lang"
rmdir "dist/build"
# If --localize is used
# if [ ! "$lang" = "$key" ]; then
# mv "dist/$key" "dist/$lang"
# fi
2019-05-14 08:39:42 +02:00
# Do not duplicate assets
rm -r "./dist/$lang/assets"
2018-07-25 09:57:52 +02:00
# TODO: remove when the project will use runtime translations
post_build_hook
done
fi
2018-05-31 18:12:15 +02:00
2020-08-06 09:57:07 +02:00
if [ ! -z ${1+x} ] || [ "$1" == "--analyze-bundle" ]; then
2020-08-06 09:47:35 +02:00
cd ../ && npm run build:embed && cd client/
fi
2018-05-31 18:12:15 +02:00
2018-06-06 18:17:24 +02:00
# Copy runtime locales
2019-11-07 15:33:23 +01:00
cp -r "./src/locale" "./dist/locale"