16
16
17
17
package com .arcbees .gquery .elastic .client ;
18
18
19
- import java .util .ArrayList ;
20
- import java .util .Comparator ;
21
- import java .util .List ;
22
- import java .util .PriorityQueue ;
23
-
24
19
import com .arcbees .gquery .elastic .client .MutationObserver .DomMutationCallback ;
25
20
import com .google .gwt .core .client .GWT ;
26
21
import com .google .gwt .core .client .JsArray ;
36
31
import com .google .gwt .user .client .Window ;
37
32
import com .google .web .bindery .event .shared .HandlerRegistration ;
38
33
39
- import static java .lang .Math .max ;
40
- import static java .lang .Math .min ;
34
+ import java .util .ArrayList ;
35
+ import java .util .Comparator ;
36
+ import java .util .List ;
37
+ import java .util .PriorityQueue ;
41
38
42
39
import static com .google .gwt .query .client .GQuery .$ ;
40
+ import static java .lang .Math .max ;
41
+ import static java .lang .Math .min ;
43
42
44
43
public class ElasticImpl {
45
44
/**
@@ -56,6 +55,7 @@ private static class StyleInfo {
56
55
int height ;
57
56
double width ;
58
57
Integer floatColumn ;
58
+ boolean rowSpanAll ;
59
59
}
60
60
61
61
private class LayoutCommand implements RepeatingCommand {
@@ -102,6 +102,7 @@ public int compare(Integer col1, Integer col2) {
102
102
// Deque interfaces not supported by gwt
103
103
private PriorityQueue <Integer > columnPriorities ;
104
104
private List <Double > columnHeights ;
105
+ private List <Boolean > ignoredColumn ;
105
106
private boolean useTranslate3d ;
106
107
private boolean useCalc ;
107
108
private double columnWidth ;
@@ -117,6 +118,7 @@ public ElasticImpl(Element container, ElasticOption options) {
117
118
this .options = options ;
118
119
119
120
columnHeights = new ArrayList <Double >();
121
+ ignoredColumn = new ArrayList <Boolean >();
120
122
columnPriorities = new PriorityQueue <Integer >(10 , new ColumnHeightComparator ());
121
123
useTranslate3d = CSS_TRANSLATE_3D != null ;
122
124
useCalc = CSS_CALC != null ;
@@ -143,6 +145,7 @@ void update(boolean fullUpdate) {
143
145
int prevColumnNumber = columnHeights .size ();
144
146
columnHeights .clear ();
145
147
columnPriorities .clear ();
148
+ ignoredColumn .clear ();
146
149
147
150
GQuery $container = $ (container );
148
151
// check if children returns text elements
@@ -159,11 +162,16 @@ void update(boolean fullUpdate) {
159
162
160
163
columnWidth = (totalColumnWidth - ((colNumber - 1 ) * options .getInnerColumnMargin ())) / colNumber ;
161
164
columnWidth = max (columnWidth , options .getMinimumColumnWidth ());
165
+ if (options .getMaximumColumnWidth () != -1 ) {
166
+ int maxWidth = max (options .getMinimumColumnWidth (), options .getMaximumColumnWidth ());
167
+ columnWidth = min (columnWidth , maxWidth );
168
+ }
162
169
163
170
double initialTop = useTranslate3d ? 0 : containerPaddingTop ;
164
171
for (int i = 0 ; i < colNumber ; i ++) {
165
172
columnHeights .add (initialTop );
166
173
columnPriorities .add (i );
174
+ ignoredColumn .add (false );
167
175
}
168
176
169
177
// Use four different loops in order to avoid browser reflows
@@ -173,7 +181,7 @@ void update(boolean fullUpdate) {
173
181
}
174
182
}
175
183
176
- if (!useCalc || prevColumnNumber != colNumber ) {
184
+ if (!canUseCalc () || prevColumnNumber != colNumber ) {
177
185
for (Element e : items .elements ()) {
178
186
setItemWidth (e , colNumber );
179
187
}
@@ -190,6 +198,10 @@ void update(boolean fullUpdate) {
190
198
setHeightContainer ();
191
199
}
192
200
201
+ private boolean canUseCalc () {
202
+ return useCalc && options .getMaximumColumnWidth () == -1 ;
203
+ }
204
+
193
205
private void init () {
194
206
GQuery $container = $ (container );
195
207
@@ -265,7 +277,7 @@ private void placeItem(Element e, int numberOfCol) {
265
277
266
278
if (useTranslate3d ) {
267
279
String translate3d ;
268
- if (useCalc ) {
280
+ if (canUseCalc () ) {
269
281
double weight = (double ) column / span ;
270
282
String offset = (100 * weight ) + "%" +
271
283
" + " + ((si .marginLeft + si .marginRight ) * weight + options .getInnerColumnMargin () * column )
@@ -283,11 +295,17 @@ private void placeItem(Element e, int numberOfCol) {
283
295
}
284
296
285
297
double newHeight = minHeight + si .height + si .borderTopWidth + si .borderBottomWidth + si .marginBottom + si
286
- .marginTop + options .getInnerRowMargin ();
298
+ .marginTop + options .getInnerRowMargin ();
287
299
288
300
for (int i = column ; i < column + span ; i ++) {
289
301
columnHeights .set (i , newHeight );
290
- columnPriorities .add (i );
302
+ if (si .rowSpanAll ) {
303
+ ignoredColumn .set (i , true );
304
+ }
305
+
306
+ if (!ignoredColumn .get (i )) {
307
+ columnPriorities .add (i );
308
+ }
291
309
}
292
310
}
293
311
@@ -315,7 +333,7 @@ private void setItemWidth(Element e, int nbrOfCol) {
315
333
StyleInfo si = getStyleInfo (e );
316
334
int span = min (si .span , nbrOfCol );
317
335
String width ;
318
- if (useCalc ) {
336
+ if (canUseCalc () ) {
319
337
double weight = (double ) span / nbrOfCol ;
320
338
si .width = 100 * weight ;
321
339
double innerMarginPart = (double ) (options .getInnerColumnMargin () * (nbrOfCol - 1 )) * weight ;
@@ -326,6 +344,7 @@ private void setItemWidth(Element e, int nbrOfCol) {
326
344
} else {
327
345
si .width = columnWidth * span + options .getInnerColumnMargin () * (span - 1 ) - si .marginLeft - si
328
346
.marginRight ;
347
+
329
348
width = si .width + "px" ;
330
349
}
331
350
@@ -352,6 +371,7 @@ private StyleInfo initItem(Element e) {
352
371
353
372
StyleInfo styleInfo = new StyleInfo ();
354
373
styleInfo .span = getSpan (e );
374
+ styleInfo .rowSpanAll = "all" .equals (e .getAttribute (Elastic .ROW_SPAN_ATTRIBUTE ));
355
375
styleInfo .floatColumn = floatColumn ;
356
376
styleInfo .marginRight = $e .cur ("marginRight" , true );
357
377
styleInfo .marginLeft = $e .cur ("marginLeft" , true );
0 commit comments