forked from ilukanets/gulp-to-jst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
113 lines (92 loc) · 2.43 KB
/
index.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
'use strict';
const pluginName = 'gulp-to-jst';
const Vinyl = require('vinyl');
const PluginError = require('plugin-error');
const through = require('through');
const assign = require('lodash.assign');
const template = require('lodash.template');
function pluginError(message) {
return new PluginError(pluginName, message);
}
function getNamespace(namespace) {
let currentPath = 'this';
if (namespace !== 'this') {
namespace
.split('.')
.forEach(function (part, index) {
if (part !== 'this') {
currentPath += '[' + JSON.stringify(part) + ']';
}
});
}
return currentPath;
}
const defaults = {
amd: false,
prettify: false,
namespace: 'JST',
processName: function (fileName) {
return fileName;
},
processContent: function (source) {
return source;
},
separator: '\n',
templateSettings: {}
};
module.exports = function toJST(fileName, settings) {
if (!fileName) {
pluginError('Missing fileName.');
}
const options = assign({}, defaults, settings || {});
const files = [];
let namespace = '';
function compile(file) {
const name = options.processName(file.path);
let contents = template(file.contents.toString(),
options.templateSettings).source;
if (options.prettify) {
contents = contents.replace(/\n/g, '');
}
if (options.amd && !options.namespace) {
return 'return '.concat(contents);
}
if (options.namespace) {
namespace = getNamespace(options.namespace);
}
return namespace.concat('[', JSON.stringify(name),
'] = ', contents, ';');
}
function write(file) {
if (file.isNull()) {
return;
}
if (file.isStream()) {
return this.emit('error', pluginError('Streaming is not supporting.'));
}
if (file.isBuffer()) {
files.push(file);
}
}
function end() {
const compiled = files.map(compile);
if (options.amd) {
if (options.prettify) {
compiled.forEach(function (line, index) {
compiled[index] = ' '.concat(line);
});
}
compiled.unshift('define(function(){');
if (!options.namespace) {
compiled.push(' return '.concat(getNamespace(options.namespace), ';'));
}
compiled.push('});');
}
this.queue(new Vinyl({
path: fileName,
contents: Buffer.from(compiled.join(options.separator))
}));
this.queue(null);
}
return through(write, end);
}