执行过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
121
122
123
"use strict";
const { domSymbolTree } = require("../helpers/internal-constants");
const { filter, FILTER_ACCEPT } = require("./helpers");
 
exports.implementation = class NodeIteratorImpl {
  constructor(constructorArgs, privateData) {
    this._active = false;
    this.root = privateData.root;
    this.whatToShow = privateData.whatToShow;
    this.filter = privateData.filter;
 
    this._referenceNode = this.root;
    this._pointerBeforeReferenceNode = true;
 
    // This is used to deactive the NodeIterator if there are too many working in a Document at the same time.
    // Without weak references, a JS implementation of NodeIterator will leak, since we can't know when to clean it up.
    // This ensures we force a clean up of those beyond some maximum (specified by the Document).
    this._working = true;
    this._workingNodeIteratorsMax = privateData.workingNodeIteratorsMax;
  }
 
  get referenceNode() {
    this._throwIfNotWorking();
    return this._referenceNode;
  }
 
  get pointerBeforeReferenceNode() {
    this._throwIfNotWorking();
    return this._pointerBeforeReferenceNode;
  }
 
  nextNode() {
    this._throwIfNotWorking();
    return this._traverse("next");
  }
 
  previousNode() {
    this._throwIfNotWorking();
    return this._traverse("previous");
  }
 
  detach() {
    // Intentionally do nothing, per spec.
  }
 
  // Called by Documents.
  _preRemovingSteps(toBeRemovedNode) {
    // Second clause is https://github.com/whatwg/dom/issues/496
    if (!toBeRemovedNode.contains(this._referenceNode) || toBeRemovedNode === this.root) {
      return;
    }
 
    if (this._pointerBeforeReferenceNode) {
      let next = null;
      let candidateForNext = domSymbolTree.following(toBeRemovedNode, { skipChildren: true });
      while (candidateForNext !== null) {
        if (this.root.contains(candidateForNext)) {
          next = candidateForNext;
          break;
        }
        candidateForNext = domSymbolTree.following(candidateForNext, { skipChildren: true });
      }
 
      if (next !== null) {
        this._referenceNode = next;
        return;
      }
 
      this._pointerBeforeReferenceNode = false;
    }
 
    const { previousSibling } = toBeRemovedNode;
    this._referenceNode = previousSibling === null ?
                          toBeRemovedNode.parentNode :
                          domSymbolTree.lastInclusiveDescendant(toBeRemovedNode.previousSibling);
  }
 
  // Only called by getters and methods that are affected by the pre-removing steps
  _throwIfNotWorking() {
    if (!this._working) {
      throw Error(`This NodeIterator is no longer working. More than ${this._workingNodeIteratorsMax} iterators are ` +
        `being used concurrently. You can increase the 'concurrentNodeIterators' option to make this error go away.`);
    }
  }
 
  _traverse(direction) {
    let node = this._referenceNode;
    let beforeNode = this._pointerBeforeReferenceNode;
 
    while (true) {
      if (direction === "next") {
        if (!beforeNode) {
          node = domSymbolTree.following(node, { root: this.root });
 
          if (!node) {
            return null;
          }
        }
 
        beforeNode = false;
      } else if (direction === "previous") {
        if (beforeNode) {
          node = domSymbolTree.preceding(node, { root: this.root });
 
          if (!node) {
            return null;
          }
        }
 
        beforeNode = true;
      }
 
      const result = filter(this, node);
      if (result === FILTER_ACCEPT) {
        break;
      }
    }
 
    this._referenceNode = node;
    this._pointerBeforeReferenceNode = beforeNode;
    return node;
  }
};