2012-09-11 02:12:23 +08:00
|
|
|
/*
|
|
|
|
* grunt-contrib-jst
|
|
|
|
* http://gruntjs.com/
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tim Branyen, contributors
|
|
|
|
* Licensed under the MIT license.
|
|
|
|
*/
|
|
|
|
|
2012-10-19 07:02:45 +08:00
|
|
|
'use strict';
|
|
|
|
|
2012-09-11 02:12:23 +08:00
|
|
|
module.exports = function(grunt) {
|
|
|
|
|
2013-01-01 04:06:55 +08:00
|
|
|
var _ = require('lodash');
|
2012-09-12 23:34:53 +08:00
|
|
|
|
2012-09-12 23:52:39 +08:00
|
|
|
// filename conversion for templates
|
|
|
|
var defaultProcessName = function(name) { return name; };
|
2012-09-11 02:12:23 +08:00
|
|
|
|
2012-10-19 07:02:45 +08:00
|
|
|
grunt.registerMultiTask('jst', 'Compile underscore templates to JST file', function() {
|
2013-01-11 05:08:29 +08:00
|
|
|
var lf = grunt.util.linefeed;
|
2012-10-19 07:02:45 +08:00
|
|
|
var helpers = require('grunt-lib-contrib').init(grunt);
|
|
|
|
var options = this.options({
|
|
|
|
namespace: 'JST',
|
2012-12-29 21:18:21 +08:00
|
|
|
templateSettings: {},
|
2013-01-11 05:08:29 +08:00
|
|
|
processContent: function (src) { return src; },
|
|
|
|
separator: lf + lf
|
2012-10-19 07:02:45 +08:00
|
|
|
});
|
2012-09-11 02:12:23 +08:00
|
|
|
|
2012-09-12 23:52:39 +08:00
|
|
|
// assign filename transformation functions
|
|
|
|
var processName = options.processName || defaultProcessName;
|
|
|
|
|
2012-10-19 07:02:45 +08:00
|
|
|
grunt.verbose.writeflags(options, 'Options');
|
2012-09-11 02:12:23 +08:00
|
|
|
|
2013-03-06 19:44:15 +08:00
|
|
|
var nsInfo;
|
|
|
|
if (options.namespace !== false) {
|
|
|
|
nsInfo = helpers.getNamespaceDeclaration(options.namespace);
|
|
|
|
}
|
2012-09-11 02:12:23 +08:00
|
|
|
|
2013-01-10 06:48:55 +08:00
|
|
|
this.files.forEach(function(f) {
|
2013-01-11 05:08:29 +08:00
|
|
|
var output = f.src.filter(function(filepath) {
|
|
|
|
// Warn on and remove invalid source files (if nonull was set).
|
|
|
|
if (!grunt.file.exists(filepath)) {
|
|
|
|
grunt.log.warn('Source file "' + filepath + '" not found.');
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(function(filepath) {
|
|
|
|
var src = options.processContent(grunt.file.read(filepath));
|
|
|
|
var compiled, filename;
|
2012-11-14 06:12:23 +08:00
|
|
|
|
2013-01-10 06:48:55 +08:00
|
|
|
try {
|
|
|
|
compiled = _.template(src, false, options.templateSettings).source;
|
|
|
|
} catch (e) {
|
|
|
|
grunt.log.error(e);
|
|
|
|
grunt.fail.warn('JST failed to compile.');
|
|
|
|
}
|
2012-11-14 06:12:23 +08:00
|
|
|
|
2013-01-10 06:48:55 +08:00
|
|
|
if (options.prettify) {
|
2013-01-30 04:27:25 +08:00
|
|
|
compiled = compiled.replace(new RegExp('\n', 'g'), '');
|
2013-01-10 06:48:55 +08:00
|
|
|
}
|
2013-01-11 05:08:29 +08:00
|
|
|
filename = processName(filepath);
|
2012-11-14 06:12:23 +08:00
|
|
|
|
2013-03-07 01:09:18 +08:00
|
|
|
if (options.amd && options.namespace === false) {
|
2013-03-06 19:44:15 +08:00
|
|
|
return 'return ' + compiled;
|
|
|
|
}
|
2013-01-10 06:48:55 +08:00
|
|
|
return nsInfo.namespace+'['+JSON.stringify(filename)+'] = '+compiled+';';
|
|
|
|
});
|
2012-09-12 23:52:39 +08:00
|
|
|
|
2013-01-11 05:08:29 +08:00
|
|
|
if (output.length < 1) {
|
|
|
|
grunt.log.warn('Destination not written because compiled files were empty.');
|
|
|
|
} else {
|
2013-03-06 19:44:15 +08:00
|
|
|
if (options.namespace !== false) {
|
|
|
|
output.unshift(nsInfo.declaration);
|
|
|
|
}
|
2013-03-07 01:09:18 +08:00
|
|
|
if (options.amd) {
|
2013-01-10 06:48:55 +08:00
|
|
|
if (options.prettify) {
|
|
|
|
output.forEach(function(line, index) {
|
|
|
|
output[index] = " " + line;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
output.unshift("define(function(){");
|
2013-03-06 19:44:15 +08:00
|
|
|
if (options.namespace !== false) {
|
|
|
|
// Namespace has not been explicitly set to false; the AMD
|
|
|
|
// wrapper will return the object containing the template.
|
2013-03-06 21:56:40 +08:00
|
|
|
output.push(" return " + nsInfo.namespace + ";");
|
2013-03-06 19:44:15 +08:00
|
|
|
}
|
|
|
|
output.push("});");
|
2012-11-27 02:02:20 +08:00
|
|
|
}
|
2013-01-11 05:08:29 +08:00
|
|
|
grunt.file.write(f.dest, output.join(grunt.util.normalizelf(options.separator)));
|
2013-01-10 06:48:55 +08:00
|
|
|
grunt.log.writeln('File "' + f.dest + '" created.');
|
2012-11-27 02:02:20 +08:00
|
|
|
}
|
2013-01-10 06:48:55 +08:00
|
|
|
});
|
2012-11-14 06:12:23 +08:00
|
|
|
|
2012-09-11 02:12:23 +08:00
|
|
|
});
|
|
|
|
};
|