ember-cli-inline-content
Version:
An ember-cli add-on to render inline scripts, styles, or any content directly into your index.html file
77 lines (62 loc) • 2.17 kB
JavaScript
var fs = require('fs');
var path = require('path');
function renderContentWithTag(content, tag, options) {
var attrs = options && options.attrs;
var openTag = '<' + tag;
var closeTag = '</' + tag + '>';
for (var attr in attrs) {
if (attrs.hasOwnProperty(attr)) {
openTag += ' ' + attr + '="' + attrs[attr] + '"';
}
}
openTag += '>';
return [openTag, content, closeTag].join('\n');
}
function InlineContentRenderer(project) {
this.name = 'ember-cli-inline-content';
this.project = project;
}
InlineContentRenderer.prototype.included = function(app) {
this.options = app.options || {};
};
InlineContentRenderer.prototype.contentFor = function(type, config) {
var inlineContent = this.options.inlineContent;
var inlineContentForType = inlineContent && inlineContent[type];
var contentOptions, filePath, content;
if(inlineContentForType) {
contentOptions = ('object' === typeof inlineContentForType) && inlineContentForType;
if (contentOptions && contentOptions.enabled !== undefined && Boolean(contentOptions.enabled) === false) {
return;
}
if (contentOptions && contentOptions.content !== undefined) {
content = contentOptions.content;
} else {
filePath = contentOptions && contentOptions.file || inlineContentForType;
content = this.readFile(filePath);
}
if ('function' === typeof contentOptions.postProcess) {
content = contentOptions.postProcess(content);
}
if (filePath) {
switch (path.extname(filePath)) {
case '.js':
return renderContentWithTag(content, 'script', contentOptions);
case '.css':
return renderContentWithTag(content, 'style', contentOptions);
}
}
return content;
}
};
InlineContentRenderer.prototype.readFile = function(filePath) {
if (!filePath) {
return console.log(this.name + ' error: file path not defined');
}
var fullPath = path.join(this.project.root, filePath);
try {
return fs.readFileSync(fullPath, 'utf8');
} catch(e){
return console.log(this.name + ' error: file not found: ' + fullPath);
}
};
module.exports = InlineContentRenderer;