aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/components/grid/GridHeight.java
blob: f13261875290b4e01b3c0fb15f2cfa8186ef029c (plain)
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
package com.vaadin.tests.components.grid;

import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.vaadin.server.VaadinRequest;
import com.vaadin.shared.ui.grid.HeightMode;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.tests.data.bean.Person;
import com.vaadin.ui.Alignment;
import com.vaadin.ui.Component;
import com.vaadin.ui.Grid;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.RadioButtonGroup;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.renderers.NumberRenderer;

/**
 * Tests that Grid gets correct height based on height mode, and resizes
 * properly with details row if height is undefined.
 *
 * @author Vaadin Ltd
 */
public class GridHeight extends AbstractReindeerTestUI {

    static final String FULL = "Full";
    static final String UNDEFINED = "Undefined";
    static final String PX100 = "100px";
    static final Integer ROW3 = 3;

    static final Object[] gridHeights = { FULL, UNDEFINED, ROW3 };
    static final String[] gridWidths = { FULL, UNDEFINED };
    static final String[] detailsRowHeights = { FULL, UNDEFINED, PX100 };

    private Grid<Person> grid;
    private Map<Person, VerticalLayout> detailsLayouts = new HashMap<>();
    private RadioButtonGroup<String> detailsHeightSelector;

    @Override
    protected void setup(VaadinRequest request) {

        grid = new Grid<>();

        grid.addColumn(Person::getFirstName);
        grid.addColumn(Person::getAge, new NumberRenderer());

        grid.setItems(createPersons());

        grid.setDetailsGenerator(person -> {
            if (!detailsLayouts.containsKey(person)) {
                createDetailsLayout(person);
            }
            return detailsLayouts.get(person);
        });

        grid.addItemClickListener(click -> grid.setDetailsVisible(
                click.getItem(), !grid.isDetailsVisible(click.getItem())));

        addComponent(createOptionLayout());
        addComponent(grid);
    }

    private List<Person> createPersons() {
        Person person1 = new Person();
        person1.setFirstName("Nicolaus Copernicus");
        person1.setAge(1543);

        Person person2 = new Person();
        person2.setFirstName("Galileo Galilei");
        person2.setAge(1564);

        Person person3 = new Person();
        person3.setFirstName("Johannes Kepler");
        person3.setAge(1571);

        return Arrays.asList(person1, person2, person3);
    }

    private void createDetailsLayout(Person person) {
        VerticalLayout detailsLayout = new VerticalLayout();
        setDetailsHeight(detailsLayout, detailsHeightSelector.getValue());
        detailsLayout.setWidth("100%");

        Label lbl1 = new Label("details row");
        lbl1.setId("lbl1");
        lbl1.setSizeUndefined();
        detailsLayout.addComponent(lbl1);
        detailsLayout.setComponentAlignment(lbl1, Alignment.MIDDLE_CENTER);

        detailsLayouts.put(person, detailsLayout);
    }

    private Component createOptionLayout() {
        HorizontalLayout optionLayout = new HorizontalLayout();
        RadioButtonGroup<Object> gridHeightSelector = new RadioButtonGroup<>(
                "Grid height");
        gridHeightSelector.setItems(Arrays.asList(gridHeights));
        gridHeightSelector.setId("gridHeightSelector");

        gridHeightSelector.setItemCaptionGenerator(this::generateCaption);

        gridHeightSelector.addValueChangeListener(event -> {
            Object value = event.getValue();
            if (UNDEFINED.equals(value)) {
                grid.setHeightUndefined();
                grid.setHeightMode(HeightMode.UNDEFINED);
            } else if (FULL.equals(value)) {
                grid.setHeight("100%");
                grid.setHeightMode(HeightMode.CSS);
            } else if (ROW3.equals(value)) {
                grid.setHeightByRows(ROW3);
                grid.setHeightMode(HeightMode.ROW);
            }
        });
        gridHeightSelector.setValue(UNDEFINED);
        optionLayout.addComponent(gridHeightSelector);

        RadioButtonGroup<String> gridWidthSelector = new RadioButtonGroup<>(
                "Grid width", Arrays.asList(gridWidths));
        gridWidthSelector.setId("gridWidthSelector");
        gridWidthSelector.addValueChangeListener(event -> {
            Object value = event.getValue();
            if (UNDEFINED.equals(value)) {
                grid.setWidthUndefined();
            } else if (FULL.equals(value)) {
                grid.setWidth("100%");
            }
        });
        gridWidthSelector.setValue(UNDEFINED);
        optionLayout.addComponent(gridWidthSelector);

        detailsHeightSelector = new RadioButtonGroup<>("Details row height");
        detailsHeightSelector.setItems(Arrays.asList(detailsRowHeights));
        detailsHeightSelector.setId("detailsHeightSelector");
        detailsHeightSelector.addValueChangeListener(event -> {
            Object value = event.getValue();
            for (VerticalLayout detailsLayout : detailsLayouts.values()) {
                setDetailsHeight(detailsLayout, value);
            }
        });
        detailsHeightSelector.setValue(PX100);
        optionLayout.addComponent(detailsHeightSelector);
        return optionLayout;
    }

    private void setDetailsHeight(VerticalLayout detailsLayout, Object value) {
        if (UNDEFINED.equals(value)) {
            detailsLayout.setHeightUndefined();
        } else if (FULL.equals(value)) {
            detailsLayout.setHeight("100%");
        } else if (PX100.equals(value)) {
            detailsLayout.setHeight(PX100);
        }
    }

    @Override
    protected String getTestDescription() {
        return "Grid with undefined height should display all rows and resize when details row is opened."
                + "<br>Grid with full height is always 400px high regardless or details row."
                + "<br>Grid with row height should always be the height of those rows regardless of details row.";
    }

    @Override
    protected Integer getTicketNumber() {
        return 19690;
    }

    private String generateCaption(Object item) {
        if (item instanceof String) {
            return item.toString();
        } else {
            return item + " rows";
        }
    }
}