-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
65 lines (56 loc) · 2 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
'use strict';
var through = require('through2');
var gutil = require('gulp-util');
var little = require('little-template');
var fs = require('fs');
var path = require('path');
/**
* Render a string of HTML using Little Template
*
* @param {Object|Function} settings Plugin settings, or a function to use
* to render templates. If an object is
* given, the value for 'render' must be
* a function to handle rendering
* templates.
* @api public
*/
module.exports = function (settings) {
settings = (typeof settings == 'function') ? {render: settings} : settings;
settings.ext = typeof settings.ext === 'undefined' ? '.html' : settings.ext;
// Store the contents of each file, so we don't have to read it more than once
var cache = {};
return through.obj(function (file, enc, cb) {
if (file.isNull()) {
this.push(file);
return cb();
}
if (file.isStream()) {
this.emit(
'error',
new gutil.PluginError('gulp-little-template', 'Streaming not supported')
);
}
try {
file.contents = new Buffer(little(file.contents.toString(),
function (templateName, context) {
var filePath = (settings.path) ?
path.join(settings.path, templateName) :
templateName;
var templateFile;
if (cache.hasOwnProperty(filePath)) {
templateFile = cache[filePath];
} else {
templateFile = fs.readFileSync(filePath, 'utf-8');
cache[filePath] = templateFile;
}
return settings.render(templateFile, context, templateName);
}));
file.path = gutil.replaceExtension(file.path, settings.ext);
} catch (err) {
this.emit('error',
new gutil.PluginError('gulp-little-template', err.toString()));
}
this.push(file);
cb();
});
};