Skip to content

Commit 32da131

Browse files
committed
Merge pull request ArcBees#10 from ArcBees/jd_max_width_rowspan
Add the possibility to span all the rows + Add the maximumWidth option
2 parents 5f3e81d + 7a74d9e commit 32da131

File tree

6 files changed

+104
-17
lines changed

6 files changed

+104
-17
lines changed

elastic-sample/src/main/java/com/arcbees/gquery/elastic/htmlsample/public/ElasticLayoutSample.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
3030
laborum
3131
</div>
32-
<div>2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
33-
dolore
32+
<div>2. Lorem ipsum dolor sit amet, consectetur
33+
adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore
3434
magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
3535
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
3636
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est

elastic-sample/src/main/java/com/arcbees/gquery/elastic/widgetsample/client/WidgetSample.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
package com.arcbees.gquery.elastic.widgetsample.client;
1818

19-
import java.util.Random;
20-
2119
import com.arcbees.gquery.elastic.client.Elastic;
2220
import com.arcbees.gquery.elastic.client.ElasticHtmlPanel;
2321
import com.google.gwt.core.client.EntryPoint;
@@ -31,6 +29,8 @@
3129
import com.google.gwt.user.client.ui.ScrollPanel;
3230
import com.google.gwt.user.client.ui.Widget;
3331

32+
import java.util.Random;
33+
3434
public class WidgetSample implements EntryPoint {
3535
interface WidgetSampleUiBinder extends UiBinder<Widget, WidgetSample> {
3636
}

elastic/src/main/java/com/arcbees/gquery/elastic/client/Elastic.java

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public Elastic init(GQuery gq) {
2929

3030
public static String COLUMN_ATTRIBUTE = "data-elastic-column";
3131
public static String SPAN_ATTRIBUTE = "data-elastic-span";
32+
public static String ROW_SPAN_ATTRIBUTE = "data-elastic-row-span";
3233

3334
static String ELASTIC_DATA_KEY = "__GQUERY_ARCBEES_ELASTIC";
3435

elastic/src/main/java/com/arcbees/gquery/elastic/client/ElasticHtmlPanel.java

+38
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,44 @@ public void setMinimumColumnWidth(int columnWidth, boolean updateLayout) {
6565
}
6666
}
6767

68+
/**
69+
* Set the maximal width in px for a column and update the layout accordingly. When the column width reach this value, the width of the column is not
70+
* increased even if the width od the container increase.
71+
* <p/>
72+
* If you want to the width of the columns doesn't increase with the width of the container, set the
73+
* <code>maximumWidth</code> equals to the <code>minimumWidth</code>
74+
* <p/>
75+
* If you want that the columns take all the available space in the container et increase their width according to
76+
* the width of the container, set the <code>maximumWidth</code> to -1.
77+
* <p/>
78+
* Default: {@value -1}
79+
*/
80+
public void setMaximumColumnWidth(int maximumColumnWidth) {
81+
setMaximumColumnWidth(maximumColumnWidth, true);
82+
}
83+
84+
85+
/**
86+
* Set the maximal width in px for a column. When the column width reach this value, the width of the column is not
87+
* increased even if the width od the container increase. The layout is updated if <code>updateLayout</code> equals
88+
* to <code>true</code>
89+
* <p/>
90+
* If you want to the width of the columns doesn't increase with the width of the container, set the
91+
* <code>maximumWidth</code> equals to the <code>minimumWidth</code>
92+
* <p/>
93+
* If you want that the columns take all the available space in the container and increase their width according to
94+
* the width of the container, set the <code>maximumWidth</code> to -1.
95+
* <p/>
96+
* Default: {@value -1}
97+
*/
98+
public void setMaximumColumnWidth(int maximumColumnWidth, boolean updateLayout) {
99+
options.setMaximumColumnWidth(maximumColumnWidth);
100+
101+
if (updateLayout) {
102+
update();
103+
}
104+
}
105+
68106
/**
69107
* Set the minimal number of columns to display and update the layout accordingly.
70108
* <p>

elastic/src/main/java/com/arcbees/gquery/elastic/client/ElasticImpl.java

+32-12
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@
1616

1717
package com.arcbees.gquery.elastic.client;
1818

19-
import java.util.ArrayList;
20-
import java.util.Comparator;
21-
import java.util.List;
22-
import java.util.PriorityQueue;
23-
2419
import com.arcbees.gquery.elastic.client.MutationObserver.DomMutationCallback;
2520
import com.google.gwt.core.client.GWT;
2621
import com.google.gwt.core.client.JsArray;
@@ -36,10 +31,14 @@
3631
import com.google.gwt.user.client.Window;
3732
import com.google.web.bindery.event.shared.HandlerRegistration;
3833

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;
4138

4239
import static com.google.gwt.query.client.GQuery.$;
40+
import static java.lang.Math.max;
41+
import static java.lang.Math.min;
4342

4443
public class ElasticImpl {
4544
/**
@@ -56,6 +55,7 @@ private static class StyleInfo {
5655
int height;
5756
double width;
5857
Integer floatColumn;
58+
boolean rowSpanAll;
5959
}
6060

6161
private class LayoutCommand implements RepeatingCommand {
@@ -102,6 +102,7 @@ public int compare(Integer col1, Integer col2) {
102102
// Deque interfaces not supported by gwt
103103
private PriorityQueue<Integer> columnPriorities;
104104
private List<Double> columnHeights;
105+
private List<Boolean> ignoredColumn;
105106
private boolean useTranslate3d;
106107
private boolean useCalc;
107108
private double columnWidth;
@@ -117,6 +118,7 @@ public ElasticImpl(Element container, ElasticOption options) {
117118
this.options = options;
118119

119120
columnHeights = new ArrayList<Double>();
121+
ignoredColumn = new ArrayList<Boolean>();
120122
columnPriorities = new PriorityQueue<Integer>(10, new ColumnHeightComparator());
121123
useTranslate3d = CSS_TRANSLATE_3D != null;
122124
useCalc = CSS_CALC != null;
@@ -143,6 +145,7 @@ void update(boolean fullUpdate) {
143145
int prevColumnNumber = columnHeights.size();
144146
columnHeights.clear();
145147
columnPriorities.clear();
148+
ignoredColumn.clear();
146149

147150
GQuery $container = $(container);
148151
// check if children returns text elements
@@ -159,11 +162,16 @@ void update(boolean fullUpdate) {
159162

160163
columnWidth = (totalColumnWidth - ((colNumber - 1) * options.getInnerColumnMargin())) / colNumber;
161164
columnWidth = max(columnWidth, options.getMinimumColumnWidth());
165+
if (options.getMaximumColumnWidth() != -1) {
166+
int maxWidth = max(options.getMinimumColumnWidth(), options.getMaximumColumnWidth());
167+
columnWidth = min(columnWidth, maxWidth);
168+
}
162169

163170
double initialTop = useTranslate3d ? 0 : containerPaddingTop;
164171
for (int i = 0; i < colNumber; i++) {
165172
columnHeights.add(initialTop);
166173
columnPriorities.add(i);
174+
ignoredColumn.add(false);
167175
}
168176

169177
// Use four different loops in order to avoid browser reflows
@@ -173,7 +181,7 @@ void update(boolean fullUpdate) {
173181
}
174182
}
175183

176-
if (!useCalc || prevColumnNumber != colNumber) {
184+
if (!canUseCalc() || prevColumnNumber != colNumber) {
177185
for (Element e : items.elements()) {
178186
setItemWidth(e, colNumber);
179187
}
@@ -190,6 +198,10 @@ void update(boolean fullUpdate) {
190198
setHeightContainer();
191199
}
192200

201+
private boolean canUseCalc() {
202+
return useCalc && options.getMaximumColumnWidth() == -1;
203+
}
204+
193205
private void init() {
194206
GQuery $container = $(container);
195207

@@ -265,7 +277,7 @@ private void placeItem(Element e, int numberOfCol) {
265277

266278
if (useTranslate3d) {
267279
String translate3d;
268-
if (useCalc) {
280+
if (canUseCalc()) {
269281
double weight = (double) column / span;
270282
String offset = (100 * weight) + "%" +
271283
" + " + ((si.marginLeft + si.marginRight) * weight + options.getInnerColumnMargin() * column)
@@ -283,11 +295,17 @@ private void placeItem(Element e, int numberOfCol) {
283295
}
284296

285297
double newHeight = minHeight + si.height + si.borderTopWidth + si.borderBottomWidth + si.marginBottom + si
286-
.marginTop + options.getInnerRowMargin();
298+
.marginTop + options.getInnerRowMargin();
287299

288300
for (int i = column; i < column + span; i++) {
289301
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+
}
291309
}
292310
}
293311

@@ -315,7 +333,7 @@ private void setItemWidth(Element e, int nbrOfCol) {
315333
StyleInfo si = getStyleInfo(e);
316334
int span = min(si.span, nbrOfCol);
317335
String width;
318-
if (useCalc) {
336+
if (canUseCalc()) {
319337
double weight = (double) span / nbrOfCol;
320338
si.width = 100 * weight;
321339
double innerMarginPart = (double) (options.getInnerColumnMargin() * (nbrOfCol - 1)) * weight;
@@ -326,6 +344,7 @@ private void setItemWidth(Element e, int nbrOfCol) {
326344
} else {
327345
si.width = columnWidth * span + options.getInnerColumnMargin() * (span - 1) - si.marginLeft - si
328346
.marginRight;
347+
329348
width = si.width + "px";
330349
}
331350

@@ -352,6 +371,7 @@ private StyleInfo initItem(Element e) {
352371

353372
StyleInfo styleInfo = new StyleInfo();
354373
styleInfo.span = getSpan(e);
374+
styleInfo.rowSpanAll = "all".equals(e.getAttribute(Elastic.ROW_SPAN_ATTRIBUTE));
355375
styleInfo.floatColumn = floatColumn;
356376
styleInfo.marginRight = $e.cur("marginRight", true);
357377
styleInfo.marginLeft = $e.cur("marginLeft", true);

elastic/src/main/java/com/arcbees/gquery/elastic/client/ElasticOption.java

+29-1
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@
1818

1919
public class ElasticOption {
2020
static int MINIMUM_COLUMN_DEFAULT = 1;
21+
static int MAXIMUM_COLUMN_WIDTH_DEFAULT = -1;
2122
static int MINIMUM_COLUMN_WIDTH_DEFAULT = 250;
2223
static int INNER_COLUMN_MARGIN_DEFAULT = 10;
2324
static int INNER_ROW_MARGIN_DEFAULT = 10;
2425

2526
private int minimumColumnWidth;
27+
private int maximumColumnWidth;
2628
private int minNumberColumn;
2729
private int maxNumberColumn;
2830
private int innerColumnMargin;
@@ -34,18 +36,43 @@ public ElasticOption() {
3436
}
3537

3638
/**
37-
* Set the minimal width in px for a column.
39+
* Set the minimal width in px for a column. This value is used to know how many column can be display inside
40+
* the container.
41+
* <p/>
3842
* Default: {@value #MINIMUM_COLUMN_WIDTH_DEFAULT}
3943
*/
4044
public ElasticOption setMinimumColumWidth(int columnWidth) {
4145
this.minimumColumnWidth = columnWidth;
4246
return this;
4347
}
4448

49+
4550
public int getMinimumColumnWidth() {
4651
return minimumColumnWidth;
4752
}
4853

54+
/**
55+
* Set the maximal width in px for a column. When the column width reach this value, the width of the column is not
56+
* increased even if the width of the container increases.
57+
* <p/>
58+
* If you want to the width of the columns doesn't increase with the width of the container, set the
59+
* <code>maximumWidth</code> equals to the <code>minimumWidth</code>
60+
* <p/>
61+
* If you want that the columns take all the available space in the container and increase their width according to
62+
* the width of the container, set the <code>maximumWidth</code> to -1.
63+
* <p/>
64+
* If the maximumColumnWidth value is be lower than the value returned by {@link #getMinimumColumnWidth()}, this
65+
* last is taken in order to calculate the maximum width of the columns
66+
* Default: {@value #MAXIMUM_COLUMN_WIDTH_DEFAULT}
67+
*/
68+
public void setMaximumColumnWidth(int maximumColumnWidth) {
69+
this.maximumColumnWidth = maximumColumnWidth;
70+
}
71+
72+
public int getMaximumColumnWidth() {
73+
return maximumColumnWidth;
74+
}
75+
4976
public int getMinimalNumberOfColumn() {
5077
return minNumberColumn;
5178
}
@@ -115,6 +142,7 @@ public ElasticOption setAutoResize(boolean autoResize) {
115142

116143
private void setDefaults() {
117144
minimumColumnWidth = MINIMUM_COLUMN_WIDTH_DEFAULT;
145+
maximumColumnWidth = MAXIMUM_COLUMN_WIDTH_DEFAULT;
118146
minNumberColumn = MINIMUM_COLUMN_DEFAULT;
119147
maxNumberColumn = Integer.MAX_VALUE;
120148
innerColumnMargin = INNER_COLUMN_MARGIN_DEFAULT;

0 commit comments

Comments
 (0)