执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
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
108
109
110
111
112
113
114
115
116
117
118
119
120
"use strict";
const conversions = require("webidl-conversions");
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const resourceLoader = require("../../browser/resource-loader");
const { Canvas, reflectURLAttribute } = require("../../utils");
 
class HTMLImageElementImpl extends HTMLElementImpl {
  _attrModified(name, value, oldVal) {
    if (name === "src" && value !== oldVal) {
      const document = this._ownerDocument;
      if (Canvas && document.implementation._hasFeature("FetchExternalResources", "img")) {
        let error;
        if (!this._image) {
          this._image = new Canvas.Image();
          // Install an error handler that just remembers the error. It is then
          // thrown in the callback of resourceLoader.load() below.
          this._image.onerror = function (err) {
            error = err;
          };
        }
        this._currentSrc = null;
        if (this.hasAttribute("src")) {
          resourceLoader.load(this, this.src, {}, (data, url, response) => {
            if (response && response.statusCode !== undefined && response.statusCode !== 200) {
              throw new Error("Status code: " + response.statusCode);
            }
            error = null;
            this._image.source = data;
            if (error) {
              throw new Error(error);
            }
            this._currentSrc = value;
          });
        } else {
          this._image.source = undefined;
        }
      }
    }
 
    super._attrModified(name, value, oldVal);
  }
 
  get _accept() {
    return "image/png,image/*;q=0.8,*/*;q=0.5";
  }
 
  get src() {
    return reflectURLAttribute(this, "src");
  }
 
  set src(value) {
    this.setAttribute("src", value);
  }
 
  get srcset() {
    return conversions.USVString(this.getAttribute("srcset"));
  }
 
  set srcset(value) {
    this.setAttribute("srcset", value);
  }
 
  get height() {
    // Just like on browsers, if no width / height is defined, we fall back on the
    // dimensions of the internal image data.
    return this.hasAttribute("height") ?
           conversions["unsigned long"](this.getAttribute("height")) :
           this.naturalHeight;
  }
 
  set height(V) {
    this.setAttribute("height", String(V));
  }
 
  get width() {
    return this.hasAttribute("width") ?
           conversions["unsigned long"](this.getAttribute("width")) :
           this.naturalWidth;
  }
 
  set width(V) {
    this.setAttribute("width", String(V));
  }
 
  get naturalHeight() {
    return this._image ? this._image.height : 0;
  }
 
  get naturalWidth() {
    return this._image ? this._image.width : 0;
  }
 
  get complete() {
    return Boolean(this._image && this._image.complete);
  }
 
  get currentSrc() {
    return this._currentSrc || "";
  }
 
  get lowsrc() {
    return reflectURLAttribute(this, "lowsrc");
  }
 
  set lowsrc(value) {
    this.setAttribute("lowsrc", value);
  }
 
  get longDesc() {
    return reflectURLAttribute(this, "longdesc");
  }
 
  set longDesc(value) {
    this.setAttribute("longdesc", value);
  }
}
 
module.exports = {
  implementation: HTMLImageElementImpl
};