forked from mendix/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmappings_assets.js
58 lines (50 loc) · 1.92 KB
/
mappings_assets.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
const _ = require('lodash');
const path = require('path');
const fs = require('fs');
const { touch, isFile } = require('./helpers');
const commandLineHelpers = require('./helpers/command_line');
const writeAssetMappings = (currentFolder) => new Promise((resolve, reject) => {
const assetMappingLog = commandLineHelpers.log('asset mapping');
const indexMappingHeader = [
'############################################################################################',
`# Mendix assets redirect mapping`,
'############################################################################################',
''
];
const indexDest = path.join(currentFolder, './_site/mappings/assets.map');
const assetsJS = path.join(currentFolder, './data/assetsjs.json');
const assetsCSS = path.join(currentFolder, './data/assetscss.json');
touch(indexDest);
let index = [];
if (isFile(assetsJS)) {
_.mapKeys(require(assetsJS), (v, k) => {
index.push({
from: `~*\\/public\\/js\\/${k.replace('.', '\\\.')}`,
to: `/public/js/${v}`
});
});
}
if (isFile(assetsCSS)) {
_.mapKeys(require(assetsCSS), (v, k) => {
index.push({
from: `~*\\/public\\/styles\\/${k.replace('.', '\\\.')}`,
to: `/public/styles/${v}`
});
});
}
const indexMapping = _.chain(index)
.sortBy(file => file.from.length)
.map(file => `${file.from} ${file.to};`)
.value();
let indexes = indexMappingHeader.concat(indexMapping).join('\n');
fs.writeFile(indexDest, indexes, err => {
if (err) {
assetMappingLog(`Error writing asset mappings: ${err}`)
reject();
} else {
assetMappingLog(`Asset mappings written to ${indexDest}`);
resolve();
}
});
});
module.exports = writeAssetMappings;