blob: 91963ba4ab680b245e11631a92503c584778263d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.struts2.views.java.simple;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Map;
import org.apache.struts2.interceptor.DateTextFieldInterceptor.DateWord;
import org.apache.struts2.views.TagAttribute;
import org.apache.struts2.views.java.Attributes;
import org.apache.struts2.views.java.TagGenerator;
public class DateTextFieldHandler extends AbstractTagHandler implements TagGenerator {
@SuppressWarnings("unchecked")
public void generate() throws IOException {
Map<String, Object> params = context.getParameters();
Attributes attr = null;
// Get format
String format = (String)params.get("format");
String id = params.get("id") != null ? ((TagAttribute) params.get("id")).getValue() : null;
String name = (String)params.get("name");
if (id == null) {
id = name;
}
Date date = (Date)params.get("nameValue");
if (format != null) {
// Verify if it's correct
new SimpleDateFormat(format);
attr = new Attributes();
attr.addIfExists("id", id);
super.start("div", attr);
Character antC = null;
for (Character c : format.toCharArray()) {
try {
DateWord dateWord = DateWord.get(c);
if (!c.equals(antC)) {
String cssClass = "date_" + dateWord.getDescription();
if (params.get("cssClass") != null) {
cssClass += " " + params.get("cssClass");
}
attr = new Attributes();
attr.add("type", "text")
.addIfExists("class", cssClass)
.addIfExists("size", dateWord.getLength())
.addIfExists("maxlength", dateWord.getLength())
.addIfTrue("disabled", params.get("disabled"))
.addIfTrue("readonly", params.get("readonly"))
.addIfExists("tabindex", params.get("tabindex"))
.addIfExists("style", params.get("cssStyle"))
.addIfExists("title", params.get("title"));
if (id != null && !"".equals(id)) {
attr.addDefaultToEmpty("id", "__" + dateWord.getDescription() + "_" + id);
}
if (name != null && !"".equals(id)) {
attr.addDefaultToEmpty("name", "__" + dateWord.getDescription() + "_" + name);
} else {
attr.addDefaultToEmpty("name", dateWord.getDescription());
}
if (date != null) {
SimpleDateFormat formatter = new SimpleDateFormat(dateWord.getDateType());
attr.addIfExists("value", formatter.format(date), false);
}
super.start("input", attr);
super.end("input");
}
} catch (IllegalArgumentException e) {
super.characters(c.toString());
}
antC = c;
}
super.end("div");
}
}
}