Model2.html
21.2 KB
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
<style type="text/css">
.highlight { display: block; background-color: #ddd; }
</style>
<script type="text/javascript">
function highlight() {
document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
}
</script>
</head>
<body onload="prettyPrint(); highlight();">
<pre class="prettyprint lang-js"><span id='Ext-selection-Model'>/**
</span> * Tracks what records are currently selected in a databound component.
*
* This is an abstract class and is not meant to be directly used. Databound UI widgets such as
* {@link Ext.grid.Panel Grid} and {@link Ext.tree.Panel Tree} should subclass Ext.selection.Model
* and provide a way to binding to the component.
*
* The abstract methods `onSelectChange` and `onLastFocusChanged` should be implemented in these
* subclasses to update the UI widget.
*/
Ext.define('Ext.selection.Model', {
extend: 'Ext.util.Observable',
alternateClassName: 'Ext.AbstractSelectionModel',
requires: ['Ext.data.StoreManager'],
mixins: {
bindable: 'Ext.util.Bindable'
},
// lastSelected
<span id='Ext-selection-Model-cfg-mode'> /**
</span> * @cfg {String} mode
* Mode of selection. Valid values are:
*
* - **SINGLE** - Only allows selecting one item at a time. Use {@link #allowDeselect} to allow
* deselecting that item. This is the default.
* - **SIMPLE** - Allows simple selection of multiple items one-by-one. Each click in grid will either
* select or deselect an item.
* - **MULTI** - Allows complex selection of multiple items using Ctrl and Shift keys.
*/
<span id='Ext-selection-Model-cfg-allowDeselect'> /**
</span> * @cfg {Boolean} allowDeselect
* Allow users to deselect a record in a DataView, List or Grid.
* Only applicable when the {@link #mode} is 'SINGLE'.
*/
allowDeselect: false,
<span id='Ext-selection-Model-property-selected'> /**
</span> * @property {Ext.util.MixedCollection} [selected=undefined]
* A MixedCollection that maintains all of the currently selected records.
* @readonly
*/
selected: null,
<span id='Ext-selection-Model-cfg-pruneRemoved'> /**
</span> * @cfg {Boolean} pruneRemoved
* Prune records when they are removed from the store from the selection.
* This is a private flag. For an example of its usage, take a look at
* Ext.selection.TreeModel.
*/
pruneRemoved: true,
constructor: function(cfg) {
var me = this;
cfg = cfg || {};
Ext.apply(me, cfg);
me.addEvents(
<span id='Ext-selection-Model-event-selectionchange'> /**
</span> * @event
* Fired after a selection change has occurred
* @param {Ext.selection.Model} this
* @param {Ext.data.Model[]} selected The selected records
*/
'selectionchange',
<span id='Ext-selection-Model-event-focuschange'> /**
</span> * @event
* Fired when a row is focused
* @param {Ext.selection.Model} this
* @param {Ext.data.Model} oldFocused The previously focused record
* @param {Ext.data.Model} newFocused The newly focused record
*/
'focuschange'
);
me.modes = {
SINGLE: true,
SIMPLE: true,
MULTI: true
};
// sets this.selectionMode
me.setSelectionMode(cfg.mode || me.mode);
// maintains the currently selected records.
me.selected = new Ext.util.MixedCollection();
me.callParent(arguments);
},
// binds the store to the selModel.
bindStore: function(store, initial){
var me = this;
me.mixins.bindable.bindStore.apply(me, arguments);
if(me.store && !initial) {
me.refresh();
}
},
getStoreListeners: function() {
var me = this;
return {
add: me.onStoreAdd,
clear: me.onStoreClear,
remove: me.onStoreRemove,
update: me.onStoreUpdate
};
},
<span id='Ext-selection-Model-method-selectAll'> /**
</span> * Selects all records in the view.
* @param {Boolean} suppressEvent True to suppress any select events
*/
selectAll: function(suppressEvent) {
var me = this,
selections = me.store.getRange(),
i = 0,
len = selections.length,
start = me.getSelection().length;
me.bulkChange = true;
for (; i < len; i++) {
me.doSelect(selections[i], true, suppressEvent);
}
delete me.bulkChange;
// fire selection change only if the number of selections differs
me.maybeFireSelectionChange(me.getSelection().length !== start);
},
<span id='Ext-selection-Model-method-deselectAll'> /**
</span> * Deselects all records in the view.
* @param {Boolean} suppressEvent True to suppress any deselect events
*/
deselectAll: function(suppressEvent) {
var me = this,
selections = me.getSelection(),
i = 0,
len = selections.length,
start = me.getSelection().length;
me.bulkChange = true;
for (; i < len; i++) {
me.doDeselect(selections[i], suppressEvent);
}
delete me.bulkChange;
// fire selection change only if the number of selections differs
me.maybeFireSelectionChange(me.getSelection().length !== start);
},
// Provides differentiation of logic between MULTI, SIMPLE and SINGLE
// selection modes. Requires that an event be passed so that we can know
// if user held ctrl or shift.
selectWithEvent: function(record, e, keepExisting) {
var me = this;
switch (me.selectionMode) {
case 'MULTI':
if (e.ctrlKey && me.isSelected(record)) {
me.doDeselect(record, false);
} else if (e.shiftKey && me.lastFocused) {
me.selectRange(me.lastFocused, record, e.ctrlKey);
} else if (e.ctrlKey) {
me.doSelect(record, true, false);
} else if (me.isSelected(record) && !e.shiftKey && !e.ctrlKey && me.selected.getCount() > 1) {
me.doSelect(record, keepExisting, false);
} else {
me.doSelect(record, false);
}
break;
case 'SIMPLE':
if (me.isSelected(record)) {
me.doDeselect(record);
} else {
me.doSelect(record, true);
}
break;
case 'SINGLE':
// if allowDeselect is on and this record isSelected, deselect it
if (me.allowDeselect && me.isSelected(record)) {
me.doDeselect(record);
// select the record and do NOT maintain existing selections
} else {
me.doSelect(record, false);
}
break;
}
},
<span id='Ext-selection-Model-method-selectRange'> /**
</span> * Selects a range of rows if the selection model {@link #isLocked is not locked}.
* All rows in between startRow and endRow are also selected.
* @param {Ext.data.Model/Number} startRow The record or index of the first row in the range
* @param {Ext.data.Model/Number} endRow The record or index of the last row in the range
* @param {Boolean} keepExisting (optional) True to retain existing selections
*/
selectRange : function(startRow, endRow, keepExisting, dir){
var me = this,
store = me.store,
selectedCount = 0,
i,
tmp,
dontDeselect,
records = [];
if (me.isLocked()){
return;
}
if (!keepExisting) {
me.deselectAll(true);
}
if (!Ext.isNumber(startRow)) {
startRow = store.indexOf(startRow);
}
if (!Ext.isNumber(endRow)) {
endRow = store.indexOf(endRow);
}
// swap values
if (startRow > endRow){
tmp = endRow;
endRow = startRow;
startRow = tmp;
}
for (i = startRow; i <= endRow; i++) {
if (me.isSelected(store.getAt(i))) {
selectedCount++;
}
}
if (!dir) {
dontDeselect = -1;
} else {
dontDeselect = (dir == 'up') ? startRow : endRow;
}
for (i = startRow; i <= endRow; i++){
if (selectedCount == (endRow - startRow + 1)) {
if (i != dontDeselect) {
me.doDeselect(i, true);
}
} else {
records.push(store.getAt(i));
}
}
me.doMultiSelect(records, true);
},
<span id='Ext-selection-Model-method-select'> /**
</span> * Selects a record instance by record instance or index.
* @param {Ext.data.Model[]/Number} records An array of records or an index
* @param {Boolean} [keepExisting=false] True to retain existing selections
* @param {Boolean} [suppressEvent=false] True to not fire a select event
*/
select: function(records, keepExisting, suppressEvent) {
// Automatically selecting eg store.first() or store.last() will pass undefined, so that must just return;
if (Ext.isDefined(records)) {
this.doSelect(records, keepExisting, suppressEvent);
}
},
<span id='Ext-selection-Model-method-deselect'> /**
</span> * Deselects a record instance by record instance or index.
* @param {Ext.data.Model[]/Number} records An array of records or an index
* @param {Boolean} [suppressEvent=false] True to not fire a deselect event
*/
deselect: function(records, suppressEvent) {
this.doDeselect(records, suppressEvent);
},
doSelect: function(records, keepExisting, suppressEvent) {
var me = this,
record;
if (me.locked || !me.store) {
return;
}
if (typeof records === "number") {
records = [me.store.getAt(records)];
}
if (me.selectionMode == "SINGLE" && records) {
record = records.length ? records[0] : records;
me.doSingleSelect(record, suppressEvent);
} else {
me.doMultiSelect(records, keepExisting, suppressEvent);
}
},
doMultiSelect: function(records, keepExisting, suppressEvent) {
var me = this,
selected = me.selected,
change = false,
i = 0,
len, record;
if (me.locked) {
return;
}
records = !Ext.isArray(records) ? [records] : records;
len = records.length;
if (!keepExisting && selected.getCount() > 0) {
if (me.doDeselect(me.getSelection(), suppressEvent) === false) {
return;
}
// TODO - coalesce the selectionchange event in deselect w/the one below...
}
function commit () {
selected.add(record);
change = true;
}
for (; i < len; i++) {
record = records[i];
if (keepExisting && me.isSelected(record)) {
continue;
}
me.lastSelected = record;
me.onSelectChange(record, true, suppressEvent, commit);
}
if (!me.preventFocus) {
me.setLastFocused(record, suppressEvent);
}
// fire selchange if there was a change and there is no suppressEvent flag
me.maybeFireSelectionChange(change && !suppressEvent);
},
// records can be an index, a record or an array of records
doDeselect: function(records, suppressEvent) {
var me = this,
selected = me.selected,
i = 0,
len, record,
attempted = 0,
accepted = 0;
if (me.locked || !me.store) {
return false;
}
if (typeof records === "number") {
records = [me.store.getAt(records)];
} else if (!Ext.isArray(records)) {
records = [records];
}
function commit () {
++accepted;
selected.remove(record);
}
len = records.length;
for (; i < len; i++) {
record = records[i];
if (me.isSelected(record)) {
if (me.lastSelected == record) {
me.lastSelected = selected.last();
}
++attempted;
me.onSelectChange(record, false, suppressEvent, commit);
}
}
// fire selchange if there was a change and there is no suppressEvent flag
me.maybeFireSelectionChange(accepted > 0 && !suppressEvent);
return accepted === attempted;
},
doSingleSelect: function(record, suppressEvent) {
var me = this,
changed = false,
selected = me.selected;
if (me.locked) {
return;
}
// already selected.
// should we also check beforeselect?
if (me.isSelected(record)) {
return;
}
function commit () {
me.bulkChange = true;
if (selected.getCount() > 0 && me.doDeselect(me.lastSelected, suppressEvent) === false) {
delete me.bulkChange;
return false;
}
delete me.bulkChange;
selected.add(record);
me.lastSelected = record;
changed = true;
}
me.onSelectChange(record, true, suppressEvent, commit);
if (changed) {
if (!suppressEvent) {
me.setLastFocused(record);
}
me.maybeFireSelectionChange(!suppressEvent);
}
},
<span id='Ext-selection-Model-method-setLastFocused'> /**
</span> * Sets a record as the last focused record. This does NOT mean
* that the record has been selected.
* @param {Ext.data.Model} record
*/
setLastFocused: function(record, supressFocus) {
var me = this,
recordBeforeLast = me.lastFocused;
me.lastFocused = record;
// Only call the changed method if in fact the selected record *has* changed.
if (record !== recordBeforeLast) {
me.onLastFocusChanged(recordBeforeLast, record, supressFocus);
}
},
<span id='Ext-selection-Model-method-isFocused'> /**
</span> * Determines if this record is currently focused.
* @param {Ext.data.Model} record
*/
isFocused: function(record) {
return record === this.getLastFocused();
},
// fire selection change as long as true is not passed
// into maybeFireSelectionChange
maybeFireSelectionChange: function(fireEvent) {
var me = this;
if (fireEvent && !me.bulkChange) {
me.fireEvent('selectionchange', me, me.getSelection());
}
},
<span id='Ext-selection-Model-method-getLastSelected'> /**
</span> * Returns the last selected record.
*/
getLastSelected: function() {
return this.lastSelected;
},
getLastFocused: function() {
return this.lastFocused;
},
<span id='Ext-selection-Model-method-getSelection'> /**
</span> * Returns an array of the currently selected records.
* @return {Ext.data.Model[]} The selected records
*/
getSelection: function() {
return this.selected.getRange();
},
<span id='Ext-selection-Model-method-getSelectionMode'> /**
</span> * Returns the current selectionMode.
* @return {String} The selectionMode: 'SINGLE', 'MULTI' or 'SIMPLE'.
*/
getSelectionMode: function() {
return this.selectionMode;
},
<span id='Ext-selection-Model-method-setSelectionMode'> /**
</span> * Sets the current selectionMode.
* @param {String} selMode 'SINGLE', 'MULTI' or 'SIMPLE'.
*/
setSelectionMode: function(selMode) {
selMode = selMode ? selMode.toUpperCase() : 'SINGLE';
// set to mode specified unless it doesnt exist, in that case
// use single.
this.selectionMode = this.modes[selMode] ? selMode : 'SINGLE';
},
<span id='Ext-selection-Model-method-isLocked'> /**
</span> * Returns true if the selections are locked.
* @return {Boolean}
*/
isLocked: function() {
return this.locked;
},
<span id='Ext-selection-Model-method-setLocked'> /**
</span> * Locks the current selection and disables any changes from happening to the selection.
* @param {Boolean} locked True to lock, false to unlock.
*/
setLocked: function(locked) {
this.locked = !!locked;
},
<span id='Ext-selection-Model-method-isSelected'> /**
</span> * Returns true if the specified row is selected.
* @param {Ext.data.Model/Number} record The record or index of the record to check
* @return {Boolean}
*/
isSelected: function(record) {
record = Ext.isNumber(record) ? this.store.getAt(record) : record;
return this.selected.indexOf(record) !== -1;
},
<span id='Ext-selection-Model-method-hasSelection'> /**
</span> * Returns true if there are any a selected records.
* @return {Boolean}
*/
hasSelection: function() {
return this.selected.getCount() > 0;
},
refresh: function() {
var me = this,
store = me.store,
toBeSelected = [],
oldSelections = me.getSelection(),
len = oldSelections.length,
selection,
change,
i = 0,
lastFocused = me.getLastFocused();
// Not been bound yet.
if (!store) {
return;
}
// check to make sure that there are no records
// missing after the refresh was triggered, prune
// them from what is to be selected if so
for (; i < len; i++) {
selection = oldSelections[i];
if (!me.pruneRemoved || store.indexOf(selection) !== -1) {
toBeSelected.push(selection);
}
}
// there was a change from the old selected and
// the new selection
if (me.selected.getCount() != toBeSelected.length) {
change = true;
}
me.clearSelections();
if (store.indexOf(lastFocused) !== -1) {
// restore the last focus but supress restoring focus
me.setLastFocused(lastFocused, true);
}
if (toBeSelected.length) {
// perform the selection again
me.doSelect(toBeSelected, false, true);
}
me.maybeFireSelectionChange(change);
},
<span id='Ext-selection-Model-method-clearSelections'> /**
</span> * A fast reset of the selections without firing events, updating the ui, etc.
* For private usage only.
* @private
*/
clearSelections: function() {
// reset the entire selection to nothing
this.selected.clear();
this.lastSelected = null;
this.setLastFocused(null);
},
// when a record is added to a store
onStoreAdd: Ext.emptyFn,
// when a store is cleared remove all selections
// (if there were any)
onStoreClear: function() {
if (this.selected.getCount > 0) {
this.clearSelections();
this.maybeFireSelectionChange(true);
}
},
// prune records from the SelectionModel if
// they were selected at the time they were
// removed.
onStoreRemove: function(store, record, index) {
var me = this,
selected = me.selected;
if (me.locked || !me.pruneRemoved) {
return;
}
if (selected.remove(record)) {
if (me.lastSelected == record) {
me.lastSelected = null;
}
if (me.getLastFocused() == record) {
me.setLastFocused(null);
}
me.maybeFireSelectionChange(true);
}
},
<span id='Ext-selection-Model-method-getCount'> /**
</span> * Returns the count of selected records.
* @return {Number} The number of selected records
*/
getCount: function() {
return this.selected.getCount();
},
// cleanup.
destroy: Ext.emptyFn,
// if records are updated
onStoreUpdate: Ext.emptyFn,
<span id='Ext-selection-Model-method-onStoreLoad'> /**
</span> * @abstract
* @private
*/
onStoreLoad: Ext.emptyFn,
// @abstract
onSelectChange: Ext.emptyFn,
// @abstract
onLastFocusChanged: function(oldFocused, newFocused) {
this.fireEvent('focuschange', this, oldFocused, newFocused);
},
// @abstract
onEditorKey: Ext.emptyFn,
// @abstract
bindComponent: Ext.emptyFn,
// @abstract
beforeViewRender: Ext.emptyFn
});
</pre>
</body>
</html>