org.wicketstuff.kendo.ui.utils.KendoEffectUtils Maven / Gradle / Ivy
The newest version!
/*
* 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.wicketstuff.kendo.ui.utils;
import org.apache.wicket.Component;
import org.apache.wicket.core.request.handler.IPartialPageRequestHandler;
import org.wicketstuff.jquery.core.IJQueryWidget.JQueryWidget;
import org.wicketstuff.kendo.ui.effect.KendoEffect;
/**
* Utility class for Kendo UI effects
*
* @see http://docs.telerik.com/kendo-ui/api/javascript/effects/common
* @author Sebastien Briquet - sebfz1
*/
public class KendoEffectUtils
{
/** default effect */
static final KendoEffect effect = KendoEffect.SLIDEIN_RIGHT;
/**
* Utility class
*/
private KendoEffectUtils()
{
// noop
}
/**
* Reloads a {@link Component} using a default {@link KendoEffect}
*
* @param handler the {@link IPartialPageRequestHandler}
* @param component the {@link Component}
*/
public static void reload(IPartialPageRequestHandler handler, Component component)
{
KendoEffectUtils.reload(handler, component, KendoEffectUtils.effect);
}
/**
* Reloads a {@link Component} using a specified {@link KendoEffect}
*
* @param handler the {@link IPartialPageRequestHandler}
* @param component the {@link Component}
* @param effect the {@link KendoEffect}
*/
public static void reload(IPartialPageRequestHandler handler, Component component, KendoEffect effect)
{
KendoEffectUtils.reload(handler, component, effect, false);
}
/**
* Reloads a {@link Component} using a specified {@link KendoEffect}
*
* @param handler the {@link IPartialPageRequestHandler}
* @param component the {@link Component}
* @param effect the {@link KendoEffect}
* @param reverse indicates whether the effect should be played or reverse-played
*/
public static void reload(IPartialPageRequestHandler handler, Component component, KendoEffect effect, boolean reverse)
{
String selector = JQueryWidget.getSelector(component);
handler.add(component);
handler.appendJavaScript(String.format("kendo.fx(jQuery('%s')).%s.%s();", selector, effect, !reverse ? "play" : "reverse"));
}
}