net.ftlines.wicket.fullcalendar.callback.AbstractAjaxCallbackWithClientsideRevert Maven / Gradle / Ivy
/**
* 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 net.ftlines.wicket.fullcalendar.callback;
import java.util.UUID;
import org.apache.wicket.Component;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.attributes.AjaxCallListener;
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes;
abstract class AbstractAjaxCallbackWithClientsideRevert extends AbstractAjaxCallback {
private String uuid = "u" + UUID.randomUUID().toString().replace("-", "");
protected abstract String getRevertScript();
protected abstract boolean onEvent(AjaxRequestTarget target);
private String getRevertScriptBlock() {
return "{" + getRevertScript() + ";}";
}
@Override
protected final void respond(AjaxRequestTarget target) {
boolean result = onEvent(target);
target.prependJavaScript(String.format("$.data(document, '%s', %s);", uuid, String.valueOf(result)));
}
@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
super.updateAjaxAttributes(attributes);
AjaxCallListener listener = new AjaxCallListener() {
@Override
public CharSequence getSuccessHandler(Component component) {
return String.format("if (false===$.data(document, '%s')) %s $.removeData(document, '%s');", uuid,
getRevertScriptBlock(), uuid);
}
@Override
public CharSequence getFailureHandler(Component component) {
return getRevertScriptBlock();
}
};
attributes.getAjaxCallListeners().add(listener);
}
}