forked from webpack-contrib/style-loader
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfixUrls.js
62 lines (52 loc) · 1.98 KB
/
fixUrls.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
/**
* When source maps are enabled, `style-loader` uses a link element with a data-uri to
* embed the css on the page. This breaks all relative urls because now they are relative to a
* bundle instead of the current page.
*
* One solution is to only use full urls, but that may be impossible.
*
* Instead, this function "fixes" the relative urls to be absolute according to the current page location.
*
* A rudimentary test suite is located at `test/fixUrls.js` and can be run via the `npm test` command.
*
*/
module.exports = function (css, currentUrl) {
// get current url
currentUrl = currentUrl || (typeof window !== "undefined" && window.location && window.location.href) || null;
if (typeof currentUrl != "string") {
throw new Error("fixUrls requires a current url");
}
//blank or null?
if (!css || typeof css !== "string")
return css;
//base url
var baseUrl = currentUrl.match(/^([a-z]+:)?(\/\/)?[^\/]+/)[0];
var protocol = baseUrl.split(":")[0];
var currentUrlPath = baseUrl + (currentUrl.replace(baseUrl, "")).replace(/\/[^\/]+$/, "") + "/";
//convert each url(...)
var fixedCss = css.replace(/url *\( *(.+?) *\)/g, function(fullMatch, origUrl){
//strip quotes (if they exist)
var unquotedOrigUrl = origUrl
.replace(/^"(.*)"$/, function(o,$1){ return $1; })
.replace(/^'(.*)'$/, function(o,$1){ return $1; });
//already a full url? no change
if (/^(data:|http:\/\/|https:\/\/|file:\/\/\/)/i.test(unquotedOrigUrl))
return fullMatch;
//convert the url to a full url
var newUrl = unquotedOrigUrl;
if (newUrl.indexOf("//") === 0) {
//add protocol
newUrl = protocol + ":" +newUrl;
}else if (newUrl.indexOf("/") === 0){
//path should be relative to the base url
newUrl = baseUrl + newUrl;
}else{
//path should be relative to the current directory
newUrl = currentUrlPath + newUrl.replace(/^\.\//, "");
}
//send back the fixed url(...)
return "url("+JSON.stringify(newUrl)+")";
});
//send back the fixed css
return fixedCss;
};