-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOutlineViewSnapshotMember.swift
168 lines (143 loc) · 5.46 KB
/
OutlineViewSnapshotMember.swift
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
//
// SnapshotMember.swift
// OutlineViewDiffableDataSource
//
// Created by Steve Sparks on 2/8/20.
// Copyright © 2020 Big Nerd Ranch. All rights reserved.
//
import Foundation
/* This represents a node in the outline data source.
* It has answers to the three basic questions about the node.
*/
internal struct OutlineViewSnapshotMember<T: Hashable> {
var item: T?
var children: [OutlineViewSnapshotMember] = []
var isExpandable = false
func indexPath(of member: OutlineViewSnapshotMember) -> IndexPath? {
for (idx, child) in children.enumerated() {
if child == member {
return IndexPath(indexes: [idx])
} else if let childIP = child.indexPath(of: member) {
return IndexPath(indexes: [idx]).appending(childIP)
}
}
return nil
}
func parent(of member: OutlineViewSnapshotMember) -> OutlineViewSnapshotMember? {
for child in children {
if child == member { return self }
if let p = child.parent(of: member) { return p }
}
return nil
}
func search(for item: T) -> OutlineViewSnapshotMember? {
if item == self.item { return self }
for child in children {
if let hit = child.search(for: item) {
return hit
}
}
return nil
}
}
extension OutlineViewSnapshotMember: CustomStringConvertible {
var description: String {
let thing: Any = item ?? "-nil-"
return "<OutlineMember: \(String(describing: thing))>"
}
}
extension OutlineViewSnapshotMember: Equatable, Hashable {
static func ==(lhs: OutlineViewSnapshotMember, rhs: OutlineViewSnapshotMember) -> Bool {
return lhs.item == rhs.item
}
func hash(into hasher: inout Hasher) {
item.hash(into: &hasher)
}
}
public enum OutlineChangeInstruction: CustomStringConvertible {
case remove(AnyHashable, IndexPath)
case insert(AnyHashable, IndexPath)
case move(IndexPath, IndexPath)
public var description: String {
switch self {
case .remove(let idx): return "Removing @ \(idx)"
case .insert(let item, let idx): return "Inserting @ \(idx): \(item)"
case .move(let from, let to): return "Move from \(from) to \(to)"
}
}
}
public typealias OutlineViewSnapshotDiff = [OutlineChangeInstruction]
// Here is where the old snapshot and new snapshot are rectified
extension OutlineViewSnapshotMember {
// baseIndexPath is the index path of this item.
// Its child indices get appended to it to make their own
// index path.
func instructions(forMorphingInto other: OutlineViewSnapshotMember, from baseIndexPath: IndexPath) -> OutlineViewSnapshotDiff {
let src = children
let dst = other.children
var result = OutlineViewSnapshotDiff()
func log(_ str: String) {
// Uncomment for logging info
// print(str)
}
var work = src
if src != dst {
log("\(baseIndexPath) BEGIN")
log("\(src) -> \(dst)")
log(" -> \(work)")
func appendResult(_ inst: OutlineChangeInstruction) {
result.append(inst)
log("APPEND: \(inst)\n -> \(work)")
}
log("\(baseIndexPath) DELETE PHASE")
// 1. Find things that don't belong and remove them.
var deletables = [OutlineViewSnapshotMember]()
for item in work {
if !dst.contains(item) {
deletables.append(item)
}
}
for deletable in deletables {
if let delIdx = work.firstIndex(of: deletable) {
work.remove(at: delIdx)
appendResult(.remove(deletable, baseIndexPath.appending(delIdx)))
}
}
log("\(baseIndexPath) INSERT PHASE")
// 2. Insert missing items.
for (dstIdx, item) in dst.enumerated() {
if work.firstIndex(of: item) == nil {
// insert
work.insert(item, at: dstIdx)
appendResult(.insert(item, baseIndexPath.appending(dstIdx)))
}
}
// 3. Moves
// At this point src and dst have the same contents
// possibly in different order
log("\(baseIndexPath) MOVE PHASE")
for (dstIdx, item) in dst.enumerated() {
if let workIdx = work.firstIndex(of: item) {
if workIdx != dstIdx {
let dest = dstIdx > work.count ? work.count : dstIdx
work.remove(at: workIdx)
work.insert(item, at: dest)
appendResult(.move(baseIndexPath.appending(workIdx), baseIndexPath.appending(dest)))
}
}
}
}
log("\(baseIndexPath) RECURSION PHASE")
// 4. Recurse
// The hash value is based on the actual item, and not its children.
// Ergo each item must generate its own instruction set.
for (index, item) in dst.enumerated() {
let indexPath = baseIndexPath.appending(index)
if let workIdx = work.firstIndex(of: item) {
let workItem = work[workIdx]
result.append(contentsOf: workItem.instructions(forMorphingInto: item, from: indexPath))
}
}
return result
}
}