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
/**
* Sections Collection
*
* @since 3.16.0
* @version 3.16.0
*/
define( [ 'Models/Section' ], function( model ) {
return Backbone.Collection.extend( {
/**
* Model for collection items
*
* @type obj
*/
model: model,
/**
* Initialize
*
* @return void
* @since 3.16.0
* @version 3.16.0
*/
initialize: function() {
var self = this;
// reorder called by SectionList view when sortable drops occur
this.on( 'reorder', this.update_order );
// when a section is added or removed, update order
this.on( 'add', this.update_order );
this.on( 'remove', this.update_order );
},
/**
* Update the order attr of each section in the list to reflect the order of the collection
*
* @return void
* @since 3.16.0
* @version 3.16.0
*/
update_order: function() {
var self = this;
this.each( function( section ) {
section.set( 'order', self.indexOf( section ) + 1 );
} );
},
} );
} );