• 创建 dom 树
  • 树的diff,同层对比,输出patchs(listDiff/diffChildren/diffProps)
    • 没有新的节点,返回
    • 新的节点tagName与key不变, 对比props,继续递归遍历子树

*对比属性(对比新旧属性列表):

  • 旧属性是否存在与新属性列表中

  • 都存在的是否有变化

  • 是否出现旧列表中没有的新属性

  • tagName和key值变化了,则直接替换成新节点

  • 渲染差异

    • 遍历patchs, 把需要更改的节点取出来
    • 局部更新dom
  // diff算法的实现
function diff(oldTree, newTree) {
  // 差异收集
  let pathchs = {}
  dfs(oldTree, newTree, 0, pathchs)
  return pathchs
}

function dfs(oldNode, newNode, index, pathchs) {
  let curPathchs = []
  if (newNode) {
    // 当新旧节点的 tagName 和 key 值完全一致时
    if (oldNode.tagName === newNode.tagName && oldNode.key === newNode.key) {
      // 继续比对属性差异
      let props = diffProps(oldNode.props, newNode.props)
      curPathchs.push({ type: 'changeProps', props })
      // 递归进入下一层级的比较
      diffChildrens(oldNode.children, newNode.children, index, pathchs)
    } else {
      // 当 tagName 或者 key 修改了后,表示已经是全新节点,无需再比
      curPathchs.push({ type: 'replaceNode', node: newNode })
    }
  }

  // 构建出整颗差异树
  if (curPathchs.length) {
    if(pathchs[index]){
      pathchs[index] = pathchs[index].concat(curPathchs)
    } else {
      pathchs[index] = curPathchs
    }
  }
}

// 属性对比实现
function diffProps(oldProps, newProps) {
  let propsPathchs = []
  // 遍历新旧属性列表
  // 查找删除项
  // 查找修改项
  // 查找新增项
  forin(olaProps, (k, v) => {
    if (!newProps.hasOwnProperty(k)) {
      propsPathchs.push({ type: 'remove', prop: k })
    } else {
      if (v !== newProps[k]) {
        propsPathchs.push({ type: 'change', prop: k , value: newProps[k] })
      }
    }
  })
  forin(newProps, (k, v) => {
    if (!oldProps.hasOwnProperty(k)) {
      propsPathchs.push({ type: 'add', prop: k, value: v })
    }
  })
  return propsPathchs
}

// 对比子级差异
function diffChildrens(oldChild, newChild, index, pathchs) {
  // 标记子级的删除/新增/移动
  let { change, list } = diffList(oldChild, newChild, index, pathchs)
  if (change.length) {
    if (pathchs[index]) {
      pathchs[index] = pathchs[index].concat(change)
    } else {
      pathchs[index] = change
    }
  }

  // 根据 key 获取原本匹配的节点,进一步递归从头开始对比
  oldChild.map((item, i) => {
    let keyIndex = list.indexOf(item.key)
    if (keyIndex) {
      let node = newChild[keyIndex]
      // 进一步递归对比
      dfs(item, node, index, pathchs)
    }
  })
}

// 列表对比,主要也是根据 key 值查找匹配项
// 对比出新旧列表的新增/删除/移动
function diffList(oldList, newList, index, pathchs) {
  let change = []
  let list = []
  const newKeys = getKey(newList)
  oldList.map(v => {
    if (newKeys.indexOf(v.key) > -1) {
      list.push(v.key)
    } else {
      list.push(null)
    }
  })

  // 标记删除
  for (let i = list.length - 1; i>= 0; i--) {
    if (!list[i]) {
      list.splice(i, 1)
      change.push({ type: 'remove', index: i })
    }
  }

  // 标记新增和移动
  newList.map((item, i) => {
    const key = item.key
    const index = list.indexOf(key)
    if (index === -1 || key == null) {
      // 新增
      change.push({ type: 'add', node: item, index: i })
      list.splice(i, 0, key)
    } else {
      // 移动
      if (index !== i) {
        change.push({
          type: 'move',
          form: index,
          to: i,
        })
        move(list, index, i)
      }
    }
  })
  return { change, list }
}
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
124
125