-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
178 lines (141 loc) · 6.15 KB
/
index.ts
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
169
170
171
172
173
174
175
176
177
interface ITreeItem {
id: string | number,
parent: string | number,
type?: string | null,
children?: ITreeItem[]
}
export default class TreeStore {
originalArray: ITreeItem[]
treeItems: ITreeItem[]
constructor(treeItems:ITreeItem[]) {
this.originalArray = treeItems
this.treeItems = this.buildTree(treeItems.slice())
}
private buildTree(array: ITreeItem[]) {
const map = new Map(array.map(item => [item.id, Object.assign({}, item)]));
for (let item of map.values()) {
if (!map.has(item.parent) && item.parent !== 'root') {
continue;
}
const parent = map.get(item.parent);
if (parent) {
parent.children = [...parent.children || [], item];
}
}
return [...map.values()].filter(item => item.parent === 'root');
}
private searchById(array: ITreeItem[], id: number): ITreeItem | null {
let result = null
array.forEach(elem => {
if (+elem.id === id) {
result = elem
return
}
if (!elem?.children || !elem.children.length) {
return
}
result = this.searchById(elem.children, id)
})
return result
}
private static _omit<T>(key: string, obj: T) {
const { [key as keyof typeof obj]: omitted, ...rest } = obj;
return rest;
}
private searchChildren(array: ITreeItem[]): ITreeItem[] | [] {
const result: ITreeItem[] = []
array.forEach(elem => {
result.push(TreeStore._omit<ITreeItem>('children', elem) as ITreeItem) // чтобы убрать в выводе children, т.к. в дереве они есть
if (!elem?.children) {
return
}
result.push(...this.searchChildren(elem.children))
})
return result
}
private searchParent(item: ITreeItem, byArray?:boolean): ITreeItem[] | [] {
const result: ITreeItem[] = []
if (byArray) {
const finded = this.originalArray.find(elem => +elem.id === +item.parent)
if (finded) {
result.push(finded)
result.push(...this.searchParent(finded, byArray))
}
}
if (item.parent) {
result.push(TreeStore._omit<ITreeItem>('children', item) as ITreeItem)
const finded = this.searchById(this.treeItems, +item.parent)
if (finded) {
result.push(...this.searchParent(TreeStore._omit<ITreeItem>('children', finded) as ITreeItem))
}
}
return result
}
getAll(): ITreeItem[] {
return this.originalArray
}
getItem(id: number, byArray?: boolean): ITreeItem | null {
if (byArray) { // Поиск через массив
const result = this.originalArray.find(elem => +elem.id === id)
return result ? result : null
}
const result = this.searchById(this.treeItems, id) // поиск по дереву с рекурсией
return result ? result : null
}
getChildren(id: number, byArray?: boolean): ITreeItem[] | [] {
if (byArray) { // Поиск через массив
return this.originalArray.filter(elem => +elem.parent === id)
}
const result = this.searchById(this.treeItems, id) // поиск по дереву с рекурсией
if (result && result?.children) {
return result.children.map(({children, ...keepAttrs}) => keepAttrs)
}
return []
}
getAllChildren(id: number, byArray?: boolean): ITreeItem[] | [] {
if (byArray) { // Поиск через массив
const result = this.originalArray.filter(elem => +elem.parent === id)
result.forEach(parent => {
result.push(...this.originalArray.filter(elem => +elem.parent === +parent.id))
})
return result
}
const result = this.searchById(this.treeItems, id) // поиск по дереву с рекурсией
if (result && result?.children) {
return this.searchChildren(result.children).sort((a, b) => {
if (+a.id > +b.id) {
return 1
} else {
return -1
}
})
}
return []
}
getAllParents(id: number, byArray?: boolean): ITreeItem[] | [] {
if (byArray) {
const startItem = this.originalArray.find(elem => +elem.id === id)
return startItem ? this.searchParent(startItem, byArray) : []
}
const result = this.searchById(this.treeItems, id) // поиск по дереву с рекурсией
return result ? this.searchParent(result).filter(elem => +elem.id !== id) : []
}
}
const items = [
{ id: 1, parent: 'root' },
{ id: 2, parent: 1, type: 'test' },
{ id: 3, parent: 1, type: 'test' },
{ id: 4, parent: 2, type: 'test' },
{ id: 5, parent: 2, type: 'test' },
{ id: 6, parent: 2, type: 'test' },
{ id: 7, parent: 4, type: null },
{ id: 8, parent: 4, type: null },
];
const ts = new TreeStore(items);
console.log(ts.getAll()) // [{"id":1,"parent":"root"},{"id":2,"parent":1,"type":"test"},{"id":3,"parent":1,"type":"test"},{"id":4,"parent":2,"type":"test"},{"id":5,"parent":2,"type":"test"},{"id":6,"parent":2,"type":"test"},{"id":7,"parent":4,"type":null},{"id":8,"parent":4,"type":null}]
console.log(ts.getItem(7)) // {"id":7,"parent":4,"type":null}
console.log(ts.getChildren(4)) // [{"id":7,"parent":4,"type":null},{"id":8,"parent":4,"type":null}]
console.log(ts.getChildren(5)) // []
console.log(ts.getChildren(2)) // [{"id":4,"parent":2,"type":"test"},{"id":5,"parent":2,"type":"test"},{"id":6,"parent":2,"type":"test"}]
console.log(ts.getAllChildren(2)) // [{"id":4,"parent":2,"type":"test"},{"id":5,"parent":2,"type":"test"},{"id":6,"parent":2,"type":"test"},{"id":7,"parent":4,"type":null},{"id":8,"parent":4,"type":null}]
console.log(ts.getAllParents(7)) // [{"id":4,"parent":2,"type":"test"},{"id":2,"parent":1,"type":"test"},{"id":1,"parent":"root"}]