mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 18:03:00 +01:00
0a264a7078
Dropdown network selector is hidden by default, and enabled using config. fixes #79
36 lines
847 B
JavaScript
36 lines
847 B
JavaScript
var fs = require('fs');
|
|
|
|
const CONFIG_FILE_NAME = 'mempool-frontend-config.json';
|
|
const GENERATED_CONFIG_FILE_NAME = 'generated-config.js';
|
|
|
|
let settings = [];
|
|
let configContent = {};
|
|
|
|
try {
|
|
const rawConfig = fs.readFileSync(CONFIG_FILE_NAME);
|
|
configContent = JSON.parse(rawConfig);
|
|
} catch (e) {
|
|
if (e.code !== 'ENOENT') {
|
|
throw new Error(e);
|
|
}
|
|
}
|
|
|
|
for (setting in configContent) {
|
|
settings.push({
|
|
key: setting,
|
|
value: configContent[setting]
|
|
});
|
|
}
|
|
|
|
const code = `(function (window) {
|
|
window.__env = window.__env || {};${settings.reduce((str, obj) => `${str}
|
|
window.__env.${obj.key} = ${ typeof obj.value === 'string' ? `'${obj.value}'` : obj.value };`, '')}
|
|
}(this));`;
|
|
|
|
try {
|
|
fs.writeFileSync(GENERATED_CONFIG_FILE_NAME, code, 'utf8');
|
|
} catch (e) {
|
|
throw new Error(e);
|
|
}
|
|
|
|
console.log('Config file generated'); |