zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
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
var waitSeconds = 100;
 
  var head = document.getElementsByTagName('head')[0];
 
  var isWebkit = !!window.navigator.userAgent.match(/AppleWebKit\/([^ ;]*)/);
  var webkitLoadCheck = function(link, callback) {
    setTimeout(function() {
      for (var i = 0; i < document.styleSheets.length; i++) {
        var sheet = document.styleSheets[i];
        if (sheet.href == link.href)
          return callback();
      }
      webkitLoadCheck(link, callback);
    }, 10);
  };
 
  var cssIsReloadable = function cssIsReloadable(links) {
    // Css loaded on the page initially should be skipped by the first
    // systemjs load, and marked for reload
    var reloadable = true;
    forEach(links, function(link) {
      if(!link.hasAttribute('data-systemjs-css')) {
        reloadable = false;
        link.setAttribute('data-systemjs-css', '');
      }
    });
    return reloadable;
  }
 
  var findExistingCSS = function findExistingCSS(url){
    // Search for existing link to reload
    var links = head.getElementsByTagName('link')
    return filter(links, function(link){ return link.href === url; });
  }
 
  var noop = function() {};
 
  var loadCSS = function(url, existingLinks) {
    return new Promise(function(resolve, reject) {
      var timeout = setTimeout(function() {
        reject('Unable to load CSS');
      }, waitSeconds * 1000);
      var _callback = function(error) {
        clearTimeout(timeout);
        link.onload = link.onerror = noop;
        setTimeout(function() {
          if (error)
            reject(error);
          else
            resolve('');
        }, 7);
      };
      var link = document.createElement('link');
      link.type = 'text/css';
      link.rel = 'stylesheet';
      link.href = url;
      link.setAttribute('data-systemjs-css', '');
      if (!isWebkit) {
        link.onload = function() {
          _callback();
        }
      } else {
        webkitLoadCheck(link, _callback);
      }
      link.onerror = function(event) {
        _callback(event.error || new Error('Error loading CSS file.'));
      };
      if (existingLinks.length)
        head.insertBefore(link, existingLinks[0]);
      else
        head.appendChild(link);
    })
    // Remove the old link regardless of loading outcome
    .then(function(result){ 
      forEach(existingLinks, function(link){link.parentElement.removeChild(link);})
      return result;
    }, function(err){
      forEach(existingLinks, function(link){link.parentElement.removeChild(link);})
      throw err;
    })
  };
 
  exports.fetch = function(load) {
    // dont reload styles loaded in the head
    var links = findExistingCSS(load.address);
    if(!cssIsReloadable(links))
        return '';
    return loadCSS(load.address, links);
  };