forked from js-kyle/connect-assets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
105 lines (84 loc) · 3.58 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
var url = require("url");
var fs = require("fs");
var Mincer = require("mincer");
var Assets = require("./lib/assets");
var connectAssets = module.exports = function (options, configureCallback) {
options = parseOptions(options || {});
var assets = new Assets(Mincer, options);
var compilationComplete = false;
var compilationError;
var waiting = [];
options.helperContext.css = assets.helper(tagWriters.css, "css");
options.helperContext.js = assets.helper(tagWriters.js, "js");
options.helperContext.assetPath = assets.helper(tagWriters.noop);
if (configureCallback) {
configureCallback(assets);
}
assets.compile(function (err) {
if (err) { compilationError = err; }
compilationComplete = true;
for (var i = 0; i < waiting.length; i++) {
waiting[i]();
};
});
var middleware = function (req, res, next) {
var path = url.parse(req.url).pathname.replace(/^\//, "");
if (path.toLowerCase().indexOf(options.localServePath.toLowerCase()) === 0) {
var serve = function (req, res, next) {
if (compilationError) { next(compilationError); }
else { assets.serveAsset(req, res, next); }
};
if (compilationComplete) { serve(req, res, next); }
else { waiting.push(serve.bind(this, req, res, next)); }
}
else {
next();
}
};
Object.keys(assets).forEach(function (method) {
middleware[method] = assets[method];
});
Object.keys(assets.__proto__).forEach(function (method) {
middleware.__proto__[method] = assets.__proto__[method];
});
return middleware;
};
module.exports.Mincer = Mincer
var parseOptions = module.exports._parseOptions = function (options) {
var isProduction = process.env.NODE_ENV === "production";
var isDevelopment = !isProduction;
var servePath = (options.servePath || "assets");
var servePathPathname = parseUrl(servePath).pathname || "/";
options.paths = arrayify(options.paths || options.src || [ "assets/js", "assets/css" ]);
options.helperContext = options.helperContext || global;
options.servePath = servePath.replace(/^\//, "").replace(/\/$/, "");
options.localServePath = options.localServePath || servePathPathname.replace(/^\//, "");
options.precompile = arrayify(options.precompile || ["*.*"]);
options.build = options.build != null ? options.build : isProduction;
options.buildDir = options.buildDir != null ? options.buildDir : isDevelopment ? false : "builtAssets";
options.compile = options.compile != null ? options.compile : true;
options.compress = options.compress != null ? options.compress : isProduction;
options.sourceMaps = options.sourceMaps != null ? options.sourceMaps : isDevelopment;
options.gzip = options.gzip != null ? options.gzip : false;
options.fingerprinting = options.fingerprinting != null ? options.fingerprinting : isProduction;
if (options.buildDir.replace) {
options.buildDir = options.buildDir.replace(/^\//, "").replace(/\/$/, "");
}
return options;
};
var arrayify = module.exports._arrayify = function (target) {
return (target instanceof Array) ? target : [ target ];
};
var pasteAttr = function (attributes) {
return !!attributes ? ' ' + attributes : '';
};
var parseUrl = function (string) {
var parseQueryString = false;
var allowUrlWithoutProtocol = true;
return url.parse(string, parseQueryString, allowUrlWithoutProtocol);
};
var tagWriters = {
css: function (url, attr) { return '<link rel="stylesheet" href="' + url + '"' + pasteAttr(attr) + ' />'; },
js: function (url, attr) { return '<script src="' + url + '"' + pasteAttr(attr) + '></script>'; },
noop: function (url) { return url; }
};