]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/build/client.sh
Merge branch 'master' into develop
[github/Chocobozzz/PeerTube.git] / scripts / build / client.sh
CommitLineData
10e63b68 1#!/bin/bash
b20b5fed 2
0e4ffb4b
LA
3set -eu
4
361dcebc
C
5declare -A languages
6
d73c9888 7pre_build_hook () {
350131cb
C
8 mkdir "./src/pending_locale" > /dev/null || true
9 mv ./src/locale/angular.*.xlf "./src/pending_locale"
d73c9888
C
10
11 if [ ! -z ${1+x} ]; then
350131cb 12 mv "./src/pending_locale/angular.$1.xlf" "./src/locale"
d73c9888
C
13 fi
14}
15
16post_build_hook () {
350131cb
C
17 mv ./src/pending_locale/* "./src/locale"
18 rmdir "./src/pending_locale/"
d73c9888
C
19}
20
95d51135 21# Previous build failed
350131cb
C
22if [ ! -f "client/src/locale/angular.fr-FR.xlf" ]; then
23 git checkout -- client/src/locale/
24 rm -r client/src/pending_locale
95d51135
C
25fi
26
0e4ffb4b 27cd client
b20b5fed 28
94edfc3b 29rm -rf ./dist ./compiled
d61e8153 30
d73c9888
C
31pre_build_hook
32
350131cb 33defaultLanguage="en-US"
989e526a
C
34npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json
35mv "./dist/$defaultLanguage/assets" "./dist"
65be133b 36mv "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest"
989e526a 37
d73c9888
C
38post_build_hook
39
e032aec9
C
40# Don't build other languages if --light arg is provided
41if [ -z ${1+x} ] || [ "$1" != "--light" ]; then
5a208b00
I
42 if [ ! -z ${1+x} ] && [ "$1" == "--light-hu" ]; then
43 languages=(["hu"]="hu-HU")
44 elif [ ! -z ${1+x} ] && [ "$1" == "--light-th" ]; then
45 languages=(["th"]="th-TH")
46 elif [ ! -z ${1+x} ] && [ "$1" == "--light-fi" ]; then
47 languages=(["fi"]="fi-FI")
48 elif [ ! -z ${1+x} ] && [ "$1" == "--light-nl" ]; then
49 languages=(["nl"]="nl-NL")
50 elif [ ! -z ${1+x} ] && [ "$1" == "--light-gd" ]; then
51 languages=(["gd"]="gd")
52 elif [ ! -z ${1+x} ] && [ "$1" == "--light-el" ]; then
53 languages=(["el"]="el-GR")
54 elif [ ! -z ${1+x} ] && [ "$1" == "--light-es" ]; then
55 languages=(["es"]="es-ES")
5a208b00
I
56 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt" ]; then
57 languages=(["pt"]="pt-BR")
58 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt-PT" ]; then
59 languages=(["pt-PT"]="pt-PT")
60 elif [ ! -z ${1+x} ] && [ "$1" == "--light-sv" ]; then
61 languages=(["sv"]="sv-SE")
62 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pl" ]; then
63 languages=(["pl"]="pl-PL")
64 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ru" ]; then
65 languages=(["ru"]="ru-RU")
66 elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hans" ]; then
67 languages=(["zh-Hans"]="zh-Hans-CN")
68 elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hant" ]; then
69 languages=(["zh-Hant"]="zh-Hant-TW")
70 elif [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then
361dcebc 71 languages=(["fr"]="fr-FR")
5a208b00
I
72 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ja" ]; then
73 languages=(["ja"]="ja-JP")
74 elif [ ! -z ${1+x} ] && [ "$1" == "--light-eu" ]; then
75 languages=(["eu"]="eu-ES")
76 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ca" ]; then
77 languages=(["ca"]="ca-ES")
78 elif [ ! -z ${1+x} ] && [ "$1" == "--light-cs" ]; then
79 languages=(["cs"]="cs-CZ")
80 elif [ ! -z ${1+x} ] && [ "$1" == "--light-eo" ]; then
81 languages=(["eo"]="eo")
82 elif [ ! -z ${1+x} ] && [ "$1" == "--light-de" ]; then
83 languages=(["de"]="de-DE")
84 elif [ ! -z ${1+x} ] && [ "$1" == "--light-it" ]; then
85 languages=(["it"]="it-IT")
3dfa8494
C
86 else
87 # Supported languages
82054691 88 languages=(
361dcebc
C
89 ["hu"]="hu-HU"
90 ["th"]="th-TH"
91 ["fi"]="fi-FI"
92 ["nl"]="nl-NL"
93 ["gd"]="gd"
94 ["el"]="el-GR"
95 ["es"]="es-ES"
361dcebc
C
96 ["pt"]="pt-BR"
97 ["pt-PT"]="pt-PT"
98 ["sv"]="sv-SE"
99 ["pl"]="pl-PL"
100 ["ru"]="ru-RU"
101 ["zh-Hans"]="zh-Hans-CN"
102 ["zh-Hant"]="zh-Hant-TW"
103 ["fr"]="fr-FR"
104 ["ja"]="ja-JP"
105 ["eu"]="eu-ES"
106 ["ca"]="ca-ES"
107 ["cs"]="cs-CZ"
108 ["eo"]="eo"
109 ["de"]="de-DE"
110 ["it"]="it-IT"
82054691 111 )
3dfa8494 112 fi
e032aec9 113
361dcebc
C
114 for key in "${!languages[@]}"; do
115 lang=${languages[$key]}
116
d73c9888
C
117 # TODO: remove when the project will use runtime translations
118 pre_build_hook "$lang"
119
2779f29a 120 npm run ng build -- --prod --configuration="$lang" --output-path "dist/build"
361dcebc 121
2779f29a
C
122 # If --localize is not used
123 mv "dist/build/$key" "dist/$lang"
124 rmdir "dist/build"
125
126 # If --localize is used
127 # if [ ! "$lang" = "$key" ]; then
128 # mv "dist/$key" "dist/$lang"
129 # fi
e032aec9 130
02ba6130 131 # Do not duplicate assets
e032aec9 132 rm -r "./dist/$lang/assets"
d73c9888
C
133
134 # TODO: remove when the project will use runtime translations
135 post_build_hook
e032aec9
C
136 done
137fi
989e526a 138
03d641a0 139cd ../ && npm run build:embed && cd client/
989e526a 140
96bb360d 141# Copy runtime locales
350131cb 142cp -r "./src/locale" "./dist/locale"