diff --git a/sitegin/jobs.js b/sitegin/jobs.js index 89e1217f389f87ea55b115b5c4766b224d9bd33c..128290e7269562a7833f52f5f38f3913e0e88350 100644 --- a/sitegin/jobs.js +++ b/sitegin/jobs.js @@ -158,3 +158,4 @@ var jobs = { } module.exports = jobs; +module.exports.jobList = jobList; diff --git a/sitegin/nunjucks.js b/sitegin/nunjucks.js index 328d4adced27e145b305069d37caed425bfeef67..7ad4405c1384bd1924e0fe931213d52498279438 100644 --- a/sitegin/nunjucks.js +++ b/sitegin/nunjucks.js @@ -50,20 +50,65 @@ env.addFilter('relURL', function(filename, dir){ return dir+'/'+filename; }) +var formats = {}; + module.exports = function(data, type) { return new Promise(function(resolve, reject) { - env.getTemplate(type+'.html.nunj', true, function(err, tmpl) { - if(err) reject(new Error('Failed to load template '+type+'.html.nunj')); - resolve(tmpl); - }); - }).then(function(tmpl) { - return new Promise(function(resolve, reject){ - tmpl.render(data, function(err, val) { - if(err) { - reject(err); - } - resolve(val); + if(formats[type]) resolve(formats[type]); + else { + fs.readdir('theme/templates',function(err, files) { + if(err) return reject(new Error('Error listing files in theme/templates')); + + files = files.filter(function(file) { + return file.match(type+'\..*\.nunj'); + }); + + var filteredFiles = []; + var todo = 0; + files.forEach(function(file) { + fs.stat('theme/templates/'+file,function(err, stat) { + if(err) reject(new Error('Error stating theme/templates/'+file)); + if(stat.isFile()) + filteredFiles.push(file); + todo--; + if(todo <= 0) { + formats[type] = filteredFiles; + resolve(filteredFiles); + } + }); + todo++; + }); }); - }) + } + }).then(function(filelist) { + var promises = []; + filelist.forEach(function(file){ + var type = file.replace(/^.*\.([a-z]+)\.nunj/,'$1'); + promises.push(new Promise(function(resolve, reject) { + env.getTemplate(file, function(err, tmpl) { + if(err) reject(new Error('Failed to load template '+type+'.html.nunj')); + resolve({tmpl: tmpl, type: type, file: file}); + }); + })); + }); + return Promise.all(promises); + }).then(function(tmpls) { + var promises = []; + tmpls.forEach(function(o) { + promises.push(new Promise(function(resolve, reject){ + o.tmpl.render(data, function(err, val) { + if(err) { + //reject(new Error('Error rendering template '+o.file)); + reject(err); + } + resolve({val: val, type: o.type}); + }); + })); + }); + return Promise.all(promises); }); } + +module.exports.reset = function() { + formats = {}; +} diff --git a/sitegin/pipeline.js b/sitegin/pipeline.js index 7bc89858899261bf76f44fb94436aea9f0e0499c..5c5780d5ceaf0d53bc97325e1a59a107d55e8f75 100644 --- a/sitegin/pipeline.js +++ b/sitegin/pipeline.js @@ -4,6 +4,7 @@ module.exports = function(jobs) { return jobs.runSequence( + 'resetJobs', 'config', 'readFiles', 'parseHugo', diff --git a/sitegin/resetJobs.js b/sitegin/resetJobs.js new file mode 100644 index 0000000000000000000000000000000000000000..e5030f437b410d5609c244bac5318a4b752b980b --- /dev/null +++ b/sitegin/resetJobs.js @@ -0,0 +1,12 @@ +var jobs = require('./jobs'); +module.exports = function() { + for(var jobname in jobs.jobList) { + if(! jobs.jobList.hasOwnProperty(jobname)) continue; + + var job = jobs.jobList[jobname]; + if(job.f.reset) { + job.f.reset(); + } + } + return Promise.resolve(); +} diff --git a/sitegin/sitegin.js b/sitegin/sitegin.js index 97bb02aa380c97ecc973a71ad7f8e89fdb9c4cad..8b7de6a1cbea959a62a5e2712943d1fb48d2b53c 100644 --- a/sitegin/sitegin.js +++ b/sitegin/sitegin.js @@ -15,6 +15,7 @@ module.exports = function(config) { ['theme', './theme'], ['urls', './urls'], ['writeFiles', './writeFiles'], + ['resetJobs', './resetJobs'], ['pipeline','./pipeline'] ) diff --git a/sitegin/theme.js b/sitegin/theme.js index aab5d9db9f7a23aa0e548f8ba8fc9941a5e14c9e..441c0e19e89ab6040faa2ac1b19e200e126e48f1 100644 --- a/sitegin/theme.js +++ b/sitegin/theme.js @@ -11,7 +11,14 @@ module.exports = function(obj) { todo++; jobs.run('nunjucks', obj, type) .then(function(data) { - obj.content = data; + data.forEach(function(o){ + if(o.type == 'html') obj.content = o.val; + else { + if(!obj.otherContent) obj.otherContent = []; + obj.otherContent.push(o); + } + }); + done(); }) .catch(function(e) {reject(e)})