forked from KyberNetwork/KyberSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-wrapper-dashboard.js
243 lines (221 loc) · 7.07 KB
/
webpack-wrapper-dashboard.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
const path = require('path');
const CleanPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const WebpackShellPlugin = require('./webpack-shell-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const TerserPlugin = require('terser-webpack-plugin')
var BLOCKCHAIN_INFO = require("./env")
const fetch = require("node-fetch");
var fs = require('fs');
var sass = require('node-sass');
var getConfig = env => {
var buildFolder = env
var chain
switch(env){
case "staging_limit_order":
chain = "production"
break
case "production":
chain = "production"
break
case "staging":
chain = "staging"
break
case "ropsten":
chain = "ropsten"
break
default:
chain = "ropsten"
break
}
const outputPath = `../public/swap/${buildFolder}`
const timestamp = Date.now();
let entry = {
app: ['babel-polyfill', path.resolve(__dirname, 'src/js/client.js'), path.resolve(__dirname, 'src/assets/css/app.scss')]
};
let plugins = [
new webpack.ProgressPlugin(),
new HtmlWebpackPlugin({
title: 'Wallet - kyber.network',
filename: 'index.html',
template: './app.html',
favicon: './assets/img/favicon.png',
inject: 'body'
}),
new MiniCssExtractPlugin({
filename: "[name].css",
}),
new CleanPlugin([outputPath + '/app*', outputPath + '/libary*']),
new webpack.DefinePlugin({
'env': JSON.stringify(env),
'process.env': {
'logger': chain === 'production'?'false': 'true',
'env': JSON.stringify(env),
'integrate': true
}
}),
new WebpackShellPlugin(
{
// hash: hash,
// onBuildStart:['node webpack.beforebuild.js'],
onBuildEnd:[`BUNDLE_NAME=[hash] chain=${chain} folder=${buildFolder} node webpack.afterbuild.js`]
}
),
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/
})
];
return {
context: path.join(__dirname, 'src'),
devtool: false,
mode: 'production',
entry: entry,
optimization: {
// splitChunks: {
// chunks: 'all'
// },
minimizer: [
new TerserPlugin({
parallel: true,
terserOptions: {
ecma: 6,
compress: {
drop_console: true,
warnings: false
}
}
}),
new OptimizeCSSAssetsPlugin({})
]
},
output: {
path: path.join(__dirname, outputPath),
filename: `[name].min.js?v=${timestamp}`,
publicPath: ''
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015', 'stage-0'],
plugins: ['react-html-attrs', 'transform-decorators-legacy', 'transform-class-properties'],
}
},
{
test: /\.(css|sass|scss)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 2,
sourceMap: false
}
},
{
loader: 'sass-loader',
options: {
sourceMap: false
}
}
]
},
{
test: /\.(jpe?g|png|gif|svg|ttf)$/i,
use: [
{
loader: 'url-loader',
options: {
limit: 10000
}
}
]
}
]
},
plugins: plugins
}
};
async function getTokenApi(network) {
var BLOCKCHAIN_INFO = require('./env/config-env/' + (network) + ".json");
return new Promise((resolve, result) => {
fetch(BLOCKCHAIN_INFO.api_tokens, {
method: 'GET',
headers: {
'Accept': 'application/json, text/plain, */*',
'Content-Type': 'application/json'
},
}).then((response) => {
return response.json()
})
.then((result) => {
if (result.success) {
var tokens = {}
result.data.map(val => {
tokens[val.symbol] = val
})
resolve(tokens)
}
}).catch((err) => {
console.log(err)
var tokens = BLOCKCHAIN_INFO.tokens
resolve(tokens)
})
})
}
var webpack = require('webpack');
async function saveBackupTokens(chain) {
var file = "./env/config-env/" + chain + ".json"
var obj = JSON.parse(fs.readFileSync(file, 'utf8'));
var tokens = await getTokenApi(chain)
obj.tokens = tokens
fs.writeFileSync(file, JSON.stringify(obj, null, 4));
}
async function renderLanguage(){
var yaml = require('yamljs');
const railsPath = '../config/locales/views/'
const langPath = './lang/'
var processFile = function(fileName, callback){
try {
var json = yaml.parse(
fs.readFileSync(
railsPath + fileName
, 'utf8'));
var rawName = fileName.split('.')[0]
fs.writeFile(langPath + rawName + '.json', JSON.stringify(json[rawName].kyber_swap, null, 2), 'utf8', callback);
} catch (e) {
console.log(e);
}
}
try {
var list = fs.readdirSync(railsPath)
list.forEach(file => {
processFile(file, (err) => {
if(!err) console.log(`process file ${file} without error`)
})
})
} catch (error) {
}
}
async function main() {
//render language
//await renderLanguage()
var enviroment = process.env.NODE_ENV
await saveBackupTokens(enviroment)
var webpackConfig = await getConfig(enviroment)
var compiler = await webpack(webpackConfig)
compiler.run(function (err, stats) {
if (!err) {
console.log("success")
} else {
console.log("fail")
console.log(err)
}
})
}
main()