-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathGridArranger.js
141 lines (128 loc) · 3.47 KB
/
GridArranger.js
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
/**
* Contains the declaration for the {@link module:layout/GridArranger~GridArranger} kind.
* @module layout/GridArranger
*/
var
kind = require('enyo/kind');
var
Arranger = require('./Arranger');
/**
* {@link module:layout/GridArranger~GridArranger} is a
* {@link module:layout/Arranger~Arranger} that arranges controls in a grid. The
* active control is positioned at the top-left of the grid and the other
* controls are laid out from left to right and then from top to bottom.
*
* Transitions between arrangements are handled by moving the active control to
* the end of the grid and shifting the other controls to the left, or by moving
* it up to the previous row, to fill the space.
*
* For more information, see the documentation on
* [Arrangers]{@linkplain $dev-guide/building-apps/layout/arrangers.html} in the
* Enyo Developer Guide.
* @class GridArranger
* @extends module:layout/Arranger~Arranger
* @public
*/
module.exports = kind(
/** @lends module:layout/GridArranger~GridArranger.prototype */ {
/**
* @private
*/
name: 'enyo.GridArranger',
/**
* @private
*/
kind: Arranger,
/**
* @see {@link module:layout/Arranger~Arranger#incrementalPoints}
* @private
*/
incrementalPoints: true,
/**
* The column width in pixels.
*
* @type {Number}
* @default 100
* @public
*/
colWidth: 100,
/**
* The column height in pixels.
*
* @type {Number}
* @default 100
* @public
*/
colHeight: 100,
/**
* Sizes each panel to be [colWidth]{@link module:layout/GridArranger~GridArranger#colWidth} pixels wide
* and [colHeight]{@link module:layout/GridArranger~GridArranger#colHeight} pixels high.
*
* @see {@link module:layout/Arranger~Arranger#size}
* @protected
*/
size: function () {
var c$ = this.container.getPanels();
var w=this.colWidth, h=this.colHeight;
for (var i=0, c; (c=c$[i]); i++) {
c.setBounds({width: w, height: h});
}
},
/**
* Calculates the number of columns based on the container's width and
* [colWidth]{@link module:layout/GridArranger~GridArranger#colWidth}. Each row is positioned
* starting at the top-left of the container.
*
* @see {@link module:layout/Arranger~Arranger#arrange}
* @protected
*/
arrange: function (controls, arrangement) {
var w=this.colWidth, h=this.colHeight;
var cols = Math.max(1, Math.floor(this.containerBounds.width / w));
var c;
for (var y=0, i=0; i<controls.length; y++) {
for (var x=0; (x<cols) && (c=controls[i]); x++, i++) {
this.arrangeControl(c, {left: w*x, top: h*y});
}
}
},
/**
* If the control is moving between rows, adjusts its opacity during the transition.
*
* @see {@link module:layout/Arranger~Arranger#flowControl}
* @method
* @protected
*/
flowControl: kind.inherit(function (sup) {
return function (inControl, inA) {
sup.apply(this, arguments);
Arranger.opacifyControl(inControl, inA.top % this.colHeight !== 0 ? 0.25 : 1);
};
}),
/**
* @see {@link module:layout/Arranger~Arranger#calcArrangementDifference}
* @protected
*/
calcArrangementDifference: function (inI0, inA0, inI1, inA1) {
return this.colWidth;
},
/**
* Resets position of panels.
*
* @method
* @private
*/
destroy: kind.inherit(function (sup) {
return function () {
var c$ = this.container.getPanels();
for (var i=0, c; (c=c$[i]); i++) {
Arranger.positionControl(c, {left: null, top: null});
c.applyStyle('left', null);
c.applyStyle('top', null);
c.applyStyle('height', null);
c.applyStyle('width', null);
}
sup.apply(this, arguments);
};
})
});