-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathSelectionManager.ts
360 lines (306 loc) · 8.78 KB
/
SelectionManager.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
import {Collection, Node, PressEvent, SelectionMode} from '@react-types/shared';
import {Key} from 'react';
import {MultipleSelectionManager, MultipleSelectionState} from './types';
import {Selection} from './Selection';
interface SelectionManagerOptions {
allowsCellSelection?: boolean
}
/**
* An interface for reading and updating multiple selection state.
*/
export class SelectionManager implements MultipleSelectionManager {
private collection: Collection<Node<unknown>>;
private state: MultipleSelectionState;
private allowsCellSelection: boolean;
private _isSelectAll: boolean;
constructor(collection: Collection<Node<unknown>>, state: MultipleSelectionState, options?: SelectionManagerOptions) {
this.collection = collection;
this.state = state;
this.allowsCellSelection = options?.allowsCellSelection ?? false;
this._isSelectAll = null;
}
/**
* The type of selection that is allowed in the collection.
*/
get selectionMode(): SelectionMode {
return this.state.selectionMode;
}
/**
* Whether the collection allows empty selection.
*/
get disallowEmptySelection(): boolean {
return this.state.disallowEmptySelection;
}
/**
* Whether the collection is currently focused.
*/
get isFocused(): boolean {
return this.state.isFocused;
}
/**
* Sets whether the collection is focused.
*/
setFocused(isFocused: boolean) {
this.state.setFocused(isFocused);
}
/**
* Whether focus is currently within a cell in the collection.
*/
get isFocusWithinItem(): boolean {
return this.state.isFocusWithinItem;
}
/**
* Sets whether focus is currently within a cell in the collection.
*/
setFocusWithinItem(isFocused: boolean) {
this.state.setFocusWithinItem(isFocused);
}
/**
* The current focused key in the collection.
*/
get focusedKey(): Key {
return this.state.focusedKey;
}
/**
* Sets the focused key.
*/
setFocusedKey(key: Key) {
this.state.setFocusedKey(key);
}
/**
* The currently selected keys in the collection.
*/
get selectedKeys(): Set<Key> {
return this.state.selectedKeys === 'all'
? new Set(this.getSelectAllKeys())
: this.state.selectedKeys;
}
/**
* Returns whether a key is selected.
*/
isSelected(key: Key) {
if (this.state.selectionMode === 'none') {
return false;
}
key = this.getKey(key);
return this.state.selectedKeys === 'all' || this.state.selectedKeys.has(key);
}
/**
* Whether the selection is empty.
*/
get isEmpty(): boolean {
return this.state.selectedKeys !== 'all' && this.state.selectedKeys.size === 0;
}
/**
* Whether all items in the collection are selected.
*/
get isSelectAll(): boolean {
if (this.isEmpty) {
return false;
}
if (this.state.selectedKeys === 'all') {
return true;
}
if (this._isSelectAll != null) {
return this._isSelectAll;
}
let allKeys = this.getSelectAllKeys();
let selectedKeys = this.state.selectedKeys;
this._isSelectAll = allKeys.every(k => selectedKeys.has(k));
return this._isSelectAll;
}
get firstSelectedKey(): Key | null {
let first: Node<unknown> | null = null;
for (let key of this.state.selectedKeys) {
let item = this.collection.getItem(key);
if (!first || item?.index < first.index) {
first = item;
}
}
return first?.key;
}
get lastSelectedKey(): Key | null {
let last: Node<unknown> | null = null;
for (let key of this.state.selectedKeys) {
let item = this.collection.getItem(key);
if (!last || item?.index > last.index) {
last = item;
}
}
return last?.key;
}
/**
* Extends the selection to the given key.
*/
extendSelection(toKey: Key) {
toKey = this.getKey(toKey);
this.state.setSelectedKeys(selectedKeys => {
// Only select the one key if coming from a select all.
if (selectedKeys === 'all') {
return new Selection([toKey], toKey, toKey);
}
let selection = selectedKeys as Selection;
let anchorKey = selection.anchorKey || toKey;
let keys = new Selection(selection, anchorKey, toKey);
for (let key of this.getKeyRange(anchorKey, selection.currentKey || toKey)) {
keys.delete(key);
}
for (let key of this.getKeyRange(toKey, anchorKey)) {
if (!this.state.disabledKeys.has(key)) {
keys.add(key);
}
}
return keys;
});
}
private getKeyRange(from: Key, to: Key) {
let fromItem = this.collection.getItem(from);
let toItem = this.collection.getItem(to);
if (fromItem && toItem) {
if (fromItem.index <= toItem.index) {
return this.getKeyRangeInternal(from, to);
}
return this.getKeyRangeInternal(to, from);
}
return [];
}
private getKeyRangeInternal(from: Key, to: Key) {
let keys: Key[] = [];
let key = from;
while (key) {
let item = this.collection.getItem(key);
if (item && item.type === 'item' || (item.type === 'cell' && this.allowsCellSelection)) {
keys.push(key);
}
if (key === to) {
return keys;
}
key = this.collection.getKeyAfter(key);
}
return [];
}
private getKey(key: Key) {
let item = this.collection.getItem(key);
if (!item) {
// ¯\_(ツ)_/¯
return key;
}
// If cell selection is allowed, just return the key.
if (item.type === 'cell' && this.allowsCellSelection) {
return key;
}
// Find a parent item to select
while (item.type !== 'item' && item.parentKey) {
item = this.collection.getItem(item.parentKey);
}
if (!item || item.type !== 'item') {
return null;
}
return item.key;
}
/**
* Toggles whether the given key is selected.
*/
toggleSelection(key: Key) {
key = this.getKey(key);
if (key == null) {
return;
}
this.state.setSelectedKeys(selectedKeys => {
let keys = new Selection(selectedKeys === 'all' ? this.getSelectAllKeys() : selectedKeys);
if (keys.has(key)) {
keys.delete(key);
// TODO: move anchor to last selected key...
// Does `current` need to move here too?
} else {
keys.add(key);
keys.anchorKey = key;
keys.currentKey = key;
}
return keys;
});
}
/**
* Replaces the selection with only the given key.
*/
replaceSelection(key: Key) {
key = this.getKey(key);
if (key == null) {
return;
}
this.state.setSelectedKeys(new Selection([key], key, key));
}
private getSelectAllKeys() {
let keys: Key[] = [];
let addKeys = (key: Key) => {
while (key) {
if (!this.state.disabledKeys.has(key)) {
let item = this.collection.getItem(key);
if (item.type === 'item') {
keys.push(key);
}
// Add child keys. If cell selection is allowed, then include item children too.
if (item.hasChildNodes && (this.allowsCellSelection || item.type !== 'item')) {
addKeys([...item.childNodes][0].key);
}
}
key = this.collection.getKeyAfter(key);
}
};
addKeys(this.collection.getFirstKey());
return keys;
}
/**
* Selects all items in the collection.
*/
selectAll() {
if (this.selectionMode === 'multiple') {
this.state.setSelectedKeys('all');
}
}
/**
* Removes all keys from the selection.
*/
clearSelection() {
if (this.state.selectedKeys === 'all' || this.state.selectedKeys.size > 0) {
this.state.setSelectedKeys(new Selection());
}
}
/**
* Toggles between select all and an empty selection.
*/
toggleSelectAll() {
if (this.isSelectAll) {
this.clearSelection();
} else {
this.selectAll();
}
}
select(key: Key, e?: PressEvent | PointerEvent) {
if (this.selectionMode === 'none') {
return;
}
if (this.selectionMode === 'single') {
if (this.isSelected(key) && !this.disallowEmptySelection) {
this.toggleSelection(key);
} else {
this.replaceSelection(key);
}
} else if (e && e.shiftKey) {
this.extendSelection(key);
} else {
this.toggleSelection(key);
}
}
}