com.googlecode.wicket.kendo.ui.interaction.droppable.DroppableBehavior Maven / Gradle / Ivy
/*
* 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 com.googlecode.wicket.kendo.ui.interaction.droppable;
import org.apache.wicket.Component;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.attributes.CallbackParameter;
import org.apache.wicket.util.lang.Args;
import com.googlecode.wicket.jquery.core.JQueryEvent;
import com.googlecode.wicket.jquery.core.Options;
import com.googlecode.wicket.jquery.core.ajax.IJQueryAjaxAware;
import com.googlecode.wicket.jquery.core.ajax.JQueryAjaxBehavior;
import com.googlecode.wicket.kendo.ui.KendoUIBehavior;
import com.googlecode.wicket.kendo.ui.interaction.draggable.DraggableBehavior;
/**
* Provides a {@value #METHOD} behavior
*
* @author Sebastien Briquet - sebfz1
*/
public class DroppableBehavior extends KendoUIBehavior implements IJQueryAjaxAware
{
private static final long serialVersionUID = 1L;
public static final String METHOD = "kendoDropTarget";
private final IDroppableListener listener;
private JQueryAjaxBehavior onDropAjaxBehavior;
private JQueryAjaxBehavior onDragEnterAjaxBehavior = null;
private JQueryAjaxBehavior onDragLeaveAjaxBehavior = null;
/** object being dragged */
private transient Component draggable = null;
/**
* Constructor
*
* @param selector the html selector (ie: "#myId")
* @param listener the {@link IDroppableListener}
*/
public DroppableBehavior(String selector, IDroppableListener listener)
{
this(selector, new Options(), listener);
}
/**
* Constructor
*
* @param selector the html selector (ie: "#myId")
* @param options the {@link Options}
* @param listener the {@link IDroppableListener}
*/
public DroppableBehavior(String selector, Options options, IDroppableListener listener)
{
this(selector, METHOD, options, listener);
}
/**
* Constructor
*
* @param selector the html selector (ie: "#myId")
* @param method the kendo-ui method
* @param options the {@link Options}
* @param listener the {@link IDroppableListener}
*/
DroppableBehavior(String selector, String method, Options options, IDroppableListener listener)
{
super(selector, method, options);
this.listener = Args.notNull(listener, "listener");
}
// Properties //
public void setDraggable(Component draggable)
{
this.draggable = draggable;
}
/**
* Gets the javascript statement that will we executed on 'dragenter' event
* The event variable is {@code 'e'}
* e.target Element, The current Draggable element.
* e.draggable kendo.ui.Draggable, Reference to the Draggable instance that enters a drop target.
* e.dropTarget jQuery, The current DropTarget element in the area that initiated the event.
*
* @return the javascript statement
*/
protected String getOnDragEnterStatement()
{
return "";
}
/**
* Gets the javascript statement that will we executed on 'dragleave' event
* The event variable is {@code 'e'}
* e.target Element, The current Draggable element.
* e.draggable kendo.ui.Draggable, Reference to the Draggable instance that enters a drop target.
* e.dropTarget jQuery, The current DropTarget element in the area that initiated the event.
*
* @return the javascript statement
*/
protected String getOnDragLeaveStatement()
{
return "";
}
/**
* Gets the javascript statement that will we executed on 'drop' event
* The event variable is {@code 'e'}
* e.target Element, The current Draggable element.
* e.draggable kendo.ui.Draggable, Reference to the Draggable instance that enters a drop target.
* e.dropTarget jQuery, The current DropTarget element in the area that initiated the event.
*
* @return the javascript statement
*/
protected String getOnDropStatement()
{
StringBuilder statement = new StringBuilder();
statement.append("var $hint = jQuery(e.target),");
statement.append("$element = e.draggable.element;");
statement.append("$element.removeClass('").append(DraggableBehavior.CSS_HIDE).append("');");
statement.append("$element.offset($hint.offset());");
// statement.append("e.draggable.destroy();"); // prevent dragStop to be fired (dual round-trip)
return statement.toString();
}
// Methods //
@Override
public void bind(Component component)
{
super.bind(component);
this.onDropAjaxBehavior = this.newOnDropAjaxBehavior(this, this.getOnDropStatement());
component.add(this.onDropAjaxBehavior);
// these events are not enabled by default to prevent unnecessary server round-trips.
if (this.listener.isDragEnterEventEnabled())
{
this.onDragEnterAjaxBehavior = this.newOnDragEnterAjaxBehavior(this, this.getOnDragEnterStatement());
component.add(this.onDragEnterAjaxBehavior);
}
if (this.listener.isDragLeaveEventEnabled())
{
this.onDragLeaveAjaxBehavior = this.newOnDragLeaveAjaxBehavior(this, this.getOnDragLeaveStatement());
component.add(this.onDragLeaveAjaxBehavior);
}
}
// Events //
@Override
public void onConfigure(Component component)
{
super.onConfigure(component);
this.setOption("drop", this.onDropAjaxBehavior.getCallbackFunction());
if (this.onDragEnterAjaxBehavior != null)
{
this.setOption("dragenter", this.onDragEnterAjaxBehavior.getCallbackFunction());
}
if (this.onDragLeaveAjaxBehavior != null)
{
this.setOption("dragleave", this.onDragLeaveAjaxBehavior.getCallbackFunction());
}
}
@Override
public void onAjax(AjaxRequestTarget target, JQueryEvent event)
{
if (event instanceof DropEvent)
{
this.listener.onDrop(target, this.draggable);
}
else if (event instanceof DragEnterEvent)
{
this.listener.onDragEnter(target, this.draggable);
}
else if (event instanceof DragLeaveEvent)
{
this.listener.onDragLeave(target, this.draggable);
}
}
// Factories //
/**
* Gets a new {@link JQueryAjaxBehavior} that will be wired to the 'dragenter' event
*
* @param source the {@link IJQueryAjaxAware}
* @param statement the statement to execute just before the ajax call
* @return a new {@code OnDragEnterAjaxBehavior} by default
*/
protected JQueryAjaxBehavior newOnDragEnterAjaxBehavior(IJQueryAjaxAware source, String statement)
{
return new OnDragEnterAjaxBehavior(source, statement);
}
/**
* Gets a new {@link JQueryAjaxBehavior} that will be wired to the 'dragleave' event
*
* @param source the {@link IJQueryAjaxAware}
* @param statement the statement to execute just before the ajax call
* @return a new {@code OnDragLeaveAjaxBehavior} by default
*/
protected JQueryAjaxBehavior newOnDragLeaveAjaxBehavior(IJQueryAjaxAware source, String statement)
{
return new OnDragLeaveAjaxBehavior(source, statement);
}
/**
* Gets a new {@link JQueryAjaxBehavior} that will be wired to the 'drop' event
*
* @param source the {@link IJQueryAjaxAware}
* @param statement the statement to execute just before the ajax call
* @return a new {@code OnDropAjaxBehavior} by default
*/
protected JQueryAjaxBehavior newOnDropAjaxBehavior(IJQueryAjaxAware source, String statement)
{
return new OnDropAjaxBehavior(source, statement);
}
// Ajax classes //
/**
* Provides a {@link JQueryAjaxBehavior} that aims to be wired to the 'dragenter' event
*/
protected static class OnDragEnterAjaxBehavior extends JQueryAjaxBehavior
{
private static final long serialVersionUID = 1L;
private final String statement;
public OnDragEnterAjaxBehavior(IJQueryAjaxAware source, String statement)
{
super(source);
this.statement = statement;
}
@Override
protected CallbackParameter[] getCallbackParameters()
{
return new CallbackParameter[] { CallbackParameter.context("e") };
}
@Override
public CharSequence getCallbackFunctionBody(CallbackParameter... parameters)
{
return this.statement + super.getCallbackFunctionBody(parameters);
}
@Override
protected JQueryEvent newEvent()
{
return new DragEnterEvent();
}
}
/**
* Provides a {@link JQueryAjaxBehavior} that aims to be wired to the 'dragleave' event
*/
protected static class OnDragLeaveAjaxBehavior extends JQueryAjaxBehavior
{
private static final long serialVersionUID = 1L;
private final String statement;
public OnDragLeaveAjaxBehavior(IJQueryAjaxAware source, String statement)
{
super(source);
this.statement = statement;
}
@Override
protected CallbackParameter[] getCallbackParameters()
{
return new CallbackParameter[] { CallbackParameter.context("e") };
}
@Override
public CharSequence getCallbackFunctionBody(CallbackParameter... parameters)
{
return this.statement + super.getCallbackFunctionBody(parameters);
}
@Override
protected JQueryEvent newEvent()
{
return new DragLeaveEvent();
}
}
/**
* Provides a {@link JQueryAjaxBehavior} that aims to be wired to the 'drop' event
*/
protected static class OnDropAjaxBehavior extends JQueryAjaxBehavior
{
private static final long serialVersionUID = 1L;
private final String statement;
public OnDropAjaxBehavior(IJQueryAjaxAware source, String statement)
{
super(source);
this.statement = statement;
}
@Override
protected CallbackParameter[] getCallbackParameters()
{
return new CallbackParameter[] { CallbackParameter.context("e") };
}
@Override
public CharSequence getCallbackFunctionBody(CallbackParameter... parameters)
{
return this.statement + super.getCallbackFunctionBody(parameters);
}
@Override
protected JQueryEvent newEvent()
{
return new DropEvent();
}
}
// Event objects //
/**
* Provides an event object that will be broadcasted by the {@link OnDragEnterAjaxBehavior} callback
*/
protected static class DragEnterEvent extends JQueryEvent
{
}
/**
* Provides an event object that will be broadcasted by the {@link OnDragLeaveAjaxBehavior} callback
*/
protected static class DragLeaveEvent extends JQueryEvent
{
}
/**
* Provides an event object that will be broadcasted by the {@link OnDropAjaxBehavior} callback
*/
protected static class DropEvent extends JQueryEvent
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy