X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fbuild%2Fclient.sh;h=75da6765c4b3ac5e7e6050b1b949a8d287b1c453;hb=d632a147293b36e46549a3ead754ef52d8fea735;hp=be3eef8026fa37b86a4d36c2316fbd89590cd87d;hpb=d7aea77bdb989df7df4a9c492f5e5ab033291e07;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/build/client.sh b/scripts/build/client.sh index be3eef802..75da6765c 100755 --- a/scripts/build/client.sh +++ b/scripts/build/client.sh @@ -2,24 +2,26 @@ set -eu +declare -A languages + pre_build_hook () { - mkdir "./src/locale/pending_target/" > /dev/null || true - mv ./src/locale/target/angular_*.xml "./src/locale/pending_target" + mkdir "./src/pending_locale" > /dev/null || true + mv ./src/locale/angular.*.xlf "./src/pending_locale" if [ ! -z ${1+x} ]; then - mv "./src/locale/pending_target/angular_$1.xml" "./src/locale/target" + mv "./src/pending_locale/angular.$1.xlf" "./src/locale" fi } post_build_hook () { - mv ./src/locale/pending_target/* "./src/locale/target/" - rmdir "./src/locale/pending_target/" + mv ./src/pending_locale/* "./src/locale" + rmdir "./src/pending_locale/" } # Previous build failed -if [ ! -f client/src/locale/target/angular_fr_FR.xml ]; then - git checkout -- client/src/locale/target/ - rm -r client/src/locale/pending_target/ +if [ ! -f "client/src/locale/angular.fr-FR.xlf" ]; then + git checkout -- client/src/locale/ + rm -r client/src/pending_locale fi cd client @@ -28,30 +30,123 @@ rm -rf ./dist ./compiled pre_build_hook -defaultLanguage="en_US" -npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json +additionalParams="" +if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then + additionalParams="--namedChunks=true --outputHashing=none" +fi + + +defaultLanguage="en-US" +npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json $additionalParams mv "./dist/$defaultLanguage/assets" "./dist" mv "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest" post_build_hook # Don't build other languages if --light arg is provided -if [ -z ${1+x} ] || [ "$1" != "--light" ]; then - if [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then - languages=("fr_FR") +if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then + if [ ! -z ${1+x} ] && [ "$1" == "--light-hu" ]; then + languages=(["hu"]="hu-HU") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-ar" ]; then + languages=(["ar"]="ar") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-vi" ]; then + languages=(["vi"]="vi-VN") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-kab" ]; then + languages=(["kab"]="kab") + 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") + 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 + languages=(["fr"]="fr-FR") + 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") else # Supported languages - languages=("pl_PL" "it_IT" "ru_RU" "fr_FR" "pt_BR" "sv_SE" "eu_ES" "ca_ES" "cs_CZ" "eo" "zh_Hant_TW" "de_DE" "es_ES" "oc" "zh_Hans_CN") + languages=( + ["ar"]="ar" + ["vi"]="vi-VN" + ["hu"]="hu-HU" + ["th"]="th-TH" + ["fi"]="fi-FI" + ["nl"]="nl-NL" + ["gd"]="gd" + ["el"]="el-GR" + ["es"]="es-ES" + ["oc"]="oc" + ["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" + ["kab"]="kab" + ) fi - for lang in "${languages[@]}"; do + for key in "${!languages[@]}"; do + lang=${languages[$key]} + # TODO: remove when the project will use runtime translations pre_build_hook "$lang" - npm run ng build -- --prod --i18n-file "./src/locale/target/angular_$lang.xml" --i18n-format xlf --i18n-locale "$lang" \ - --output-path "dist/$lang/" --deploy-url "/client/$lang/" + npm run ng build -- --prod --configuration="$lang" --output-path "dist/build" + + # 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 - # Do no duplicate assets + # Do not duplicate assets rm -r "./dist/$lang/assets" # TODO: remove when the project will use runtime translations @@ -59,7 +154,7 @@ if [ -z ${1+x} ] || [ "$1" != "--light" ]; then done fi -NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production --json > "./dist/embed-stats.json" +cd ../ && npm run build:embed && cd client/ # Copy runtime locales -cp -r "./src/locale/target" "./dist/locale" +cp -r "./src/locale" "./dist/locale"