com.flowlogix.web.mixins.AutoDisableAfterSubmit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowlogix-tapestry Show documentation
Show all versions of flowlogix-tapestry Show documentation
Flow Logix Utility Library for Tapestry
/*
* Copyright 2013 lprimak.
*
* 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 com.flowlogix.web.mixins;
import org.apache.tapestry5.BindingConstants;
import org.apache.tapestry5.ClientElement;
import org.apache.tapestry5.annotations.AfterRender;
import org.apache.tapestry5.annotations.Environmental;
import org.apache.tapestry5.annotations.Import;
import org.apache.tapestry5.annotations.InjectContainer;
import org.apache.tapestry5.annotations.Parameter;
import org.apache.tapestry5.ioc.annotations.Inject;
import org.apache.tapestry5.services.Environment;
import org.apache.tapestry5.services.FormSupport;
import org.apache.tapestry5.services.javascript.JavaScriptSupport;
/**
* Internal mixin for DisableAfterSubmit
* @author lprimak
*/
@Import(library="DisableAfterSubmit.js")
public class AutoDisableAfterSubmit
{
private @Parameter(name = "disableAfterSubmitEnabled", defaultPrefix = BindingConstants.LITERAL) Boolean enabled;
@AfterRender
private void addDisabler()
{
if (environment.peek(DisableAfterSubmit.class) == null)
{
if(enabled == null)
{
return;
}
}
else if(enabled == null)
{
enabled = true;
}
if (enabled)
{
DisableAfterSubmit.enableSubmitProcessing(clientElement, fs, js);
}
}
private @InjectContainer ClientElement clientElement;
private @Environmental(false) FormSupport fs;
private @Inject Environment environment;
private @Environmental JavaScriptSupport js;
}