forked from faceyspacey/babel-plugin-universal-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportCss.js
107 lines (91 loc) · 2.98 KB
/
importCss.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
106
107
/* eslint-disable */
var ADDED = {}
module.exports = function(chunkName, options) {
var opts = options || {}
var href = getHref(chunkName)
if (!href) {
if (process.env.NODE_ENV === 'development' && !opts.disableWarnings) {
if (typeof window === 'undefined' || !window.__CSS_CHUNKS__) {
console.warn(
'[UNIVERSAL-IMPORT] no css chunks hash found at "window.__CSS_CHUNKS__". Make sure you are using: https://www.npmjs.com/package/extract-css-chunks-webpack-plugin . If you are not serving CSS, disregard this message.'
)
return
}
console.warn(
'[UNIVERSAL-IMPORT] no chunk, ',
chunkName,
', found in "window.__CSS_CHUNKS__". If you are not serving CSS for this chunk, disregard this message.'
)
}
return
}
if (ADDED[href]) {
return ADDED[href]
}
var head = document.getElementsByTagName('head')[0]
var link = document.createElement('link')
link.charset = 'utf-8'
link.type = 'text/css'
link.rel = 'stylesheet'
link.timeout = 30000
var promise = new Promise(function(resolve, reject) {
var timeout, img
var onload = function() {
// Check if we created the img tag.
// If we did then the chunk was loaded via img.src
// and we need to set the link.href which will then
// load the resource from cache
if (img) {
link.href = href
img.onerror = null // avoid mem leaks in IE.
}
link.onerror = null // avoid mem leaks in IE.
clearTimeout(timeout)
resolve()
}
link.onerror = function() {
link.onerror = link.onload = null // avoid mem leaks in IE.
clearTimeout(timeout)
reject(new Error('could not load css chunk: ' + chunkName))
}
if (isOnloadSupported() && 'onload' in link) {
link.onload = onload
link.href = href
} else {
// Use img.src as a fallback to loading the css chunk in browsers
// which don’t support link.onload
// We use the img.onerror handler because an error will always fire
// when parsing the response
// Then we know the resource has been loaded
img = document.createElement('img')
img.onerror = onload
img.src = href
}
timeout = setTimeout(link.onerror, link.timeout)
head.appendChild(link)
})
ADDED[href] = promise
return promise
}
function getHref(chunkName) {
if (typeof window === 'undefined' || !window.__CSS_CHUNKS__) return null
return window.__CSS_CHUNKS__[chunkName]
}
// Checks whether the browser supports link.onload
// Reference: https://pie.gd/test/script-link-events/
function isOnloadSupported() {
var userAgent = navigator.userAgent
var supportedMajor = 535
var supportedMinor = 24
var match = userAgent.match(/\ AppleWebKit\/(\d+)\.(\d+)/)
if (match) {
var major = +match[1]
var minor = +match[2]
return (
(major === supportedMajor && minor >= supportedMinor) ||
major > supportedMajor
)
}
// All other browsers support it
return true
}