summaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/tests/TestForTablesInitialColumnWidthLogicRendering.java
blob: c5e8a75e0446d0cb4ce7dfa277765d46676396b2 (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
/* 
@ITMillApache2LicenseForJavaFiles@
 */

package com.itmill.toolkit.tests;

import java.util.Iterator;
import java.util.Vector;

import com.itmill.toolkit.terminal.UserError;
import com.itmill.toolkit.ui.Button;
import com.itmill.toolkit.ui.CustomComponent;
import com.itmill.toolkit.ui.Label;
import com.itmill.toolkit.ui.Layout;
import com.itmill.toolkit.ui.OrderedLayout;
import com.itmill.toolkit.ui.Table;
import com.itmill.toolkit.ui.Button.ClickEvent;

/**
 * 
 * This Component contains some simple test to see that component updates its
 * contents propertly.
 * 
 * @author IT Mill Ltd.
 */
public class TestForTablesInitialColumnWidthLogicRendering extends
        CustomComponent {

    private final OrderedLayout main = new OrderedLayout();

    public TestForTablesInitialColumnWidthLogicRendering() {

        setCompositionRoot(main);
        createNewView();
    }

    public void createNewView() {
        main.removeAllComponents();
        main
                .addComponent(new Label(
                        "Below are same tables that all should render somewhat nice. Also when testing, you might want to try resizing window."));

        Table t;

        Layout lo = new OrderedLayout();
        lo.setWidth("600px");
        lo.setHeight("250px");

        t = getTestTable(4, 50);
        t.setSizeFull();
        lo.setCaption("Fullsize table insize 400x250px layout");
        lo.addComponent(t);
        main.addComponent(lo);

        // t = new Table("Empty table");
        // main.addComponent(t);

        t = getTestTable(5, 0);
        t.setCaption("Table with only headers");
        // main.addComponent(t);

        t = getTestTable(5, 200);
        t.setCaption("Table with  some cols and lot of rows");
        main.addComponent(t);

        t = getTestTable(5, 5);
        t
                .setCaption("Table with  some cols and rows rows, some col widths fixed");

        Iterator it = t.getContainerPropertyIds().iterator();
        it.next();
        it.next();
        t.setColumnWidth(it.next(), 30);
        t.setColumnWidth(it.next(), 30);
        t.setWidth("700px");
        main.addComponent(t);

        t = getTestTable(12, 4);
        t.setCaption("Table with  some rows and lot of columns");
        main.addComponent(t);

        t = getTestTable(3, 40);
        t
                .setCaption("Table with some columns and wide explicit width. (Ought to widen columns to use all space)");
        t.setWidth(1000);
        main.addComponent(t);

        t = getTestTable(12, 4);
        t.setCaption("Table with  some rows and lot of columns, width == 100%");
        t.setWidth(100, Table.UNITS_PERCENTAGE);
        main.addComponent(t);

        t = getTestTable(12, 100);
        t
                .setCaption("Table with  lot of rows and lot of columns, width == 50%");
        t.setWidth(50, Table.UNITS_PERCENTAGE);
        main.addComponent(t);

        t = getTestTable(5, 100);
        t.setCaption("Table with 40 rows");
        // main.addComponent(t);

        t = getTestTable(4, 4);
        t.setCaption("Table with some rows and width = 200px");

        t.setWidth(200);
        main.addComponent(t);

        final Button b = new Button("refresh view", this, "createNewView");
        main.addComponent(b);

    }

    public static Table getTestTable(int cols, int rows) {
        final Table t = new Table();
        t.setColumnCollapsingAllowed(true);
        for (int i = 0; i < cols; i++) {
            t.addContainerProperty(testString[i], String.class, "");
        }
        t.addContainerProperty("button", Button.class, null);
        for (int i = 0; i < rows; i++) {
            final Vector content = new Vector();
            for (int j = 0; j < cols; j++) {
                content.add(rndString());
            }
            Button button = new Button("b", new Button.ClickListener() {

                public void buttonClick(ClickEvent event) {
                    System.out.println("b click");

                }
            });
            button.setDescription("Yep yep");
            button.setComponentError(new UserError("Error"));
            content.add(button);
            t.addItem(content.toArray(), "" + i);
        }
        return t;
    }

    static String[] testString = new String[] { "Jacob", "Michael", "Joshua",
            "Matthew", "Ethan", "Andrew", "Daniel", "Anthony", "Christopher",
            "Joseph", "William", "Alexander", "Ryan", "David", "Nicholas",
            "Tyler", "James", "John", "Jonathan", "Nathan", "Samuel",
            "Christian", "Noah", "Dylan", "Benjamin", "Logan", "Brandon",
            "Gabriel", "Zachary", "Jose", "Elijah", "Angel", "Kevin", "Jack",
            "Caleb", "Justin", "Austin", "Evan", "Robert", "Thomas", "Luke",
            "Mason", "Aidan", "Jackson", "Isaiah", "Jordan", "Gavin", "Connor",
            "Aiden", "Isaac", "Jason", "Cameron", "Hunter", "Jayden", "Juan",
            "Charles", "Aaron", "Lucas", "Luis", "Owen", "Landon", "Diego",
            "Brian", "Adam", "Adrian", "Kyle", "Eric", "Ian", "Nathaniel",
            "Carlos", "Alex", "Bryan", "Jesus", "Julian", "Sean", "Carter",
            "Hayden", "Jeremiah", "Cole", "Brayden", "Wyatt", "Chase",
            "Steven", "Timothy", "Dominic", "Sebastian", "Xavier", "Jaden",
            "Jesse", "Devin", "Seth", "Antonio", "Richard", "Miguel", "Colin",
            "Cody", "Alejandro", "Caden", "Blake", "Carson" };

    public static String rndString() {
        return testString[(int) (Math.random() * testString.length)];
    }

}