Package org.springmodules.xt.ajax.action.prototype.scriptaculous

Source Code of org.springmodules.xt.ajax.action.prototype.scriptaculous.Effect

/*
* Copyright 2006 the original author or authors.
*
* Licensed 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.springmodules.xt.ajax.action.prototype.scriptaculous;

import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONObject;
import org.springmodules.xt.ajax.action.AbstractExecuteJavascriptAction;

/**
* Ajax action for making a Scriptaculous effect (see http://wiki.script.aculo.us/scriptaculous/show/CoreEffects),
* applying it to an HTML element identified by its id.<br>
* This action uses the Prototype Javascript library and the Scriptaculous Effects Javascript library, so you need to include them in your web pages.
*
* @author Sergio Bossa
*/
public class Effect extends AbstractExecuteJavascriptAction {
   
    private static final long serialVersionUID = 26L;
   
    private String effect;
    private String elementId;
    private List<String> requiredParameters = new LinkedList<String>();
    private Map<String, Object> options = new HashMap<String, Object>();
   
    /**
     * Construct a Scriptaculous javascript effect, acting on a given element
     * identified by id.<br>
     * Please note that the effect name is <b>case-sensitive</b>.
     *
     * @param effect The Scriptaculous effect name (<b>case-sensitive</b>).
     * @param elementId The id of the element.
     */
    public Effect(String effect, String elementId) {
        this.effect = effect;
        this.elementId = elementId;
    }
   
    /**
     * Add a required parameter to this effect.<br>
     * Please note that the order of adding <b>actually matters</b>.
     *
     * @param parameter The parameter to add (<b>case-sensitive</b>).
     */
    public void addRequiredParameter(String parameter) {
        this.requiredParameters.add(parameter);
    }
   
    /**
     * Add an optional parameter to this effect, in the form of key/value pair.<br>
     *
     * @param key The key of the option (<b>case-sensitive</b>).
     * @param value The value of the option.
     */
    public void addOption(String key, Object value) {
        this.options.put(key, value);
    }
   
    protected String getJavascript() {
        StringBuilder effect = new StringBuilder("new Effect.");
       
        effect.append(this.effect);
       
        effect.append("(");
       
        effect.append("\"").append(this.elementId).append("\"");
       
        if (!this.requiredParameters.isEmpty()) {
            for (String param : this.requiredParameters) {
                effect.append(",").append(param);
            }
        }
       
        if (!this.options.isEmpty()) {
            JSONObject json = JSONObject.fromMap(this.options);
            effect.append(",").append(json.toString());
        }
       
        effect.append(");");
       
        return effect.toString();
    }
}
TOP

Related Classes of org.springmodules.xt.ajax.action.prototype.scriptaculous.Effect

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.