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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui;
import java.util.Date;
import com.google.gwt.i18n.client.DateTimeFormat;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.ChangeListener;
import com.google.gwt.user.client.ui.TextBox;
import com.google.gwt.user.client.ui.Widget;
import com.vaadin.terminal.gwt.client.ApplicationConnection;
import com.vaadin.terminal.gwt.client.BrowserInfo;
import com.vaadin.terminal.gwt.client.ClientExceptionHandler;
import com.vaadin.terminal.gwt.client.ContainerResizedListener;
import com.vaadin.terminal.gwt.client.Focusable;
import com.vaadin.terminal.gwt.client.LocaleNotLoadedException;
import com.vaadin.terminal.gwt.client.LocaleService;
import com.vaadin.terminal.gwt.client.Paintable;
import com.vaadin.terminal.gwt.client.UIDL;
public class VTextualDate extends VDateField implements Paintable, Field,
ChangeListener, ContainerResizedListener, Focusable {
private static final String PARSE_ERROR_CLASSNAME = CLASSNAME
+ "-parseerror";
private final TextBox text;
private String formatStr;
private String width;
private boolean needLayout;
protected int fieldExtraWidth = -1;
public VTextualDate() {
super();
text = new TextBox();
// use normal textfield styles as a basis
text.setStyleName(VTextField.CLASSNAME);
// add datefield spesific style name also
text.addStyleName(CLASSNAME + "-textfield");
text.addChangeListener(this);
add(text);
}
@Override
public void updateFromUIDL(UIDL uidl, ApplicationConnection client) {
int origRes = currentResolution;
super.updateFromUIDL(uidl, client);
if (origRes != currentResolution) {
// force recreating format string
formatStr = null;
}
if (uidl.hasAttribute("format")) {
formatStr = uidl.getStringAttribute("format");
}
buildDate();
// not a FocusWidget -> needs own tabindex handling
if (uidl.hasAttribute("tabindex")) {
text.setTabIndex(uidl.getIntAttribute("tabindex"));
}
}
protected String getFormatString() {
if (formatStr == null) {
if (currentResolution == RESOLUTION_YEAR) {
formatStr = "yyyy"; // force full year
} else {
try {
String frmString = LocaleService
.getDateFormat(currentLocale);
frmString = cleanFormat(frmString);
String delim = LocaleService
.getClockDelimiter(currentLocale);
if (currentResolution >= RESOLUTION_HOUR) {
if (dts.isTwelveHourClock()) {
frmString += " hh";
} else {
frmString += " HH";
}
if (currentResolution >= RESOLUTION_MIN) {
frmString += ":mm";
if (currentResolution >= RESOLUTION_SEC) {
frmString += ":ss";
if (currentResolution >= RESOLUTION_MSEC) {
frmString += ".SSS";
}
}
}
if (dts.isTwelveHourClock()) {
frmString += " aaa";
}
}
formatStr = frmString;
} catch (LocaleNotLoadedException e) {
ClientExceptionHandler.displayError(e);
}
}
}
return formatStr;
}
/**
*
*/
protected void buildDate() {
removeStyleName(PARSE_ERROR_CLASSNAME);
// Create the initial text for the textfield
String dateText;
if (date != null) {
dateText = DateTimeFormat.getFormat(getFormatString()).format(date);
} else {
dateText = "";
}
text.setText(dateText);
text.setEnabled(enabled && !readonly);
if (readonly) {
text.addStyleName("i-readonly");
} else {
text.removeStyleName("i-readonly");
}
}
public void onChange(Widget sender) {
if (sender == text) {
if (!text.getText().equals("")) {
try {
DateTimeFormat format = DateTimeFormat
.getFormat(getFormatString());
date = format.parse(text.getText());
long stamp = date.getTime();
if (stamp == 0) {
// If date parsing fails in firefox the stamp will be 0
date = null;
addStyleName(PARSE_ERROR_CLASSNAME);
} else {
// remove possibly added invalid value indication
removeStyleName(PARSE_ERROR_CLASSNAME);
}
} catch (final Exception e) {
ClientExceptionHandler.displayError(e.getMessage());
addStyleName(PARSE_ERROR_CLASSNAME);
// this is a hack that may eventually be removed
client.updateVariable(id, "lastInvalidDateString", text
.getText(), false);
date = null;
}
} else {
date = null;
// remove possibly added invalid value indication
removeStyleName(PARSE_ERROR_CLASSNAME);
}
// always send the date string
client.updateVariable(id, "dateString", text.getText(), false);
if (date != null) {
showingDate = new Date(date.getTime());
}
// Update variables
// (only the smallest defining resolution needs to be
// immediate)
client.updateVariable(id, "year",
date != null ? date.getYear() + 1900 : -1,
currentResolution == VDateField.RESOLUTION_YEAR
&& immediate);
if (currentResolution >= VDateField.RESOLUTION_MONTH) {
client.updateVariable(id, "month", date != null ? date
.getMonth() + 1 : -1,
currentResolution == VDateField.RESOLUTION_MONTH
&& immediate);
}
if (currentResolution >= VDateField.RESOLUTION_DAY) {
client.updateVariable(id, "day", date != null ? date.getDate()
: -1, currentResolution == VDateField.RESOLUTION_DAY
&& immediate);
}
if (currentResolution >= VDateField.RESOLUTION_HOUR) {
client.updateVariable(id, "hour", date != null ? date
.getHours() : -1,
currentResolution == VDateField.RESOLUTION_HOUR
&& immediate);
}
if (currentResolution >= VDateField.RESOLUTION_MIN) {
client.updateVariable(id, "min", date != null ? date
.getMinutes() : -1,
currentResolution == VDateField.RESOLUTION_MIN
&& immediate);
}
if (currentResolution >= VDateField.RESOLUTION_SEC) {
client.updateVariable(id, "sec", date != null ? date
.getSeconds() : -1,
currentResolution == VDateField.RESOLUTION_SEC
&& immediate);
}
if (currentResolution == VDateField.RESOLUTION_MSEC) {
client.updateVariable(id, "msec",
date != null ? getMilliseconds() : -1, immediate);
}
}
}
private String cleanFormat(String format) {
// Remove unnecessary d & M if resolution is too low
if (currentResolution < VDateField.RESOLUTION_DAY) {
format = format.replaceAll("d", "");
}
if (currentResolution < VDateField.RESOLUTION_MONTH) {
format = format.replaceAll("M", "");
}
// Remove unsupported patterns
// TODO support for 'G', era designator (used at least in Japan)
format = format.replaceAll("[GzZwWkK]", "");
// Remove extra delimiters ('/' and '.')
while (format.startsWith("/") || format.startsWith(".")
|| format.startsWith("-")) {
format = format.substring(1);
}
while (format.endsWith("/") || format.endsWith(".")
|| format.endsWith("-")) {
format = format.substring(0, format.length() - 1);
}
// Remove duplicate delimiters
format = format.replaceAll("//", "/");
format = format.replaceAll("\\.\\.", ".");
format = format.replaceAll("--", "-");
return format.trim();
}
@Override
public void setWidth(String newWidth) {
if (!"".equals(newWidth) && (width == null || !newWidth.equals(width))) {
if (BrowserInfo.get().isIE6()) {
// in IE6 cols ~ min-width
DOM.setElementProperty(text.getElement(), "size", "1");
}
needLayout = true;
width = newWidth;
super.setWidth(width);
iLayout();
if (newWidth.indexOf("%") < 0) {
needLayout = false;
}
} else {
if ("".equals(newWidth) && width != null && !"".equals(width)) {
if (BrowserInfo.get().isIE6()) {
// revert IE6 hack
DOM.setElementProperty(text.getElement(), "size", "");
}
super.setWidth("");
needLayout = true;
iLayout();
needLayout = false;
width = null;
}
}
}
/**
* Returns pixels in x-axis reserved for other than textfield content.
*
* @return extra width in pixels
*/
protected int getFieldExtraWidth() {
if (fieldExtraWidth < 0) {
text.setWidth("0px");
fieldExtraWidth = text.getOffsetWidth();
}
return fieldExtraWidth;
}
public void iLayout() {
if (needLayout) {
text.setWidth((getOffsetWidth() - getFieldExtraWidth()) + "px");
}
}
public void focus() {
text.setFocus(true);
}
}
|