blob: 201a58c37a17e7890106940b7c2d4eb03508fa48 [file] [log] [blame]
/*
* 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.apache.myfaces.tobago.example.demo;
import org.apache.myfaces.tobago.util.AjaxUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.el.ELContext;
import javax.el.ValueExpression;
import javax.enterprise.context.RequestScoped;
import javax.faces.context.FacesContext;
import javax.faces.event.AjaxBehaviorEvent;
import javax.inject.Inject;
import javax.inject.Named;
import java.lang.invoke.MethodHandles;
import java.util.Date;
@RequestScoped
@Named
public class PartialReloadController {
private static final Logger LOG = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
private String navigateActionValue;
@Inject
private NavigationState navigationState;
public Date getCurrentDate() {
return new Date();
}
public String reload() {
return logAndNavigate(null);
}
public String error() {
throw new DemoException("Test Exception");
}
public String waitAndReload3() {
return waitAndReload(3000);
}
public String waitAndReload7() {
return waitAndReload(7000);
}
private String waitAndReload(final long delay) {
LOG.info("I'm waiting now for {} ms.", delay);
synchronized (this) {
try {
wait(delay);
} catch (final InterruptedException e) {
//
}
}
LOG.info("My waiting for {} ms is done.", delay);
return logAndNavigate(null);
}
public void navigateAction(final AjaxBehaviorEvent event) {
final FacesContext facesContext = FacesContext.getCurrentInstance();
if (navigationState == null) {
final ELContext elContext = facesContext.getELContext();
final ValueExpression expression = facesContext.getApplication().getExpressionFactory()
.createValueExpression(elContext, "#{navigationState}", NavigationState.class);
navigationState = (NavigationState) expression.getValue(elContext);
}
LOG.info("navigateActionValue = \"" + navigateActionValue + "\"");
if (navigateActionValue == null) {
logAndNavigate(null);
} else if ("left".equals(navigateActionValue)) {
AjaxUtils.addRenderIds("page:mainForm:left");
navigateActionValue = null;
logAndNavigate(null);
} else if ("right".equals(navigateActionValue)) {
AjaxUtils.addRenderIds("page:mainForm:right");
navigateActionValue = null;
logAndNavigate(null);
} else if ("both".equals(navigateActionValue)) {
AjaxUtils.addRenderIds("page:mainForm:left", "page:mainForm:right");
navigateActionValue = null;
logAndNavigate(null);
} else if ("parent".equals(navigateActionValue)) {
navigateActionValue = null;
AjaxUtils.addRenderIds("page:mainForm:parent");
logAndNavigate(null);
} else if ("prev".equals(navigateActionValue)) {
navigateActionValue = null;
AjaxUtils.navigate(facesContext, logAndNavigate(navigationState.gotoPrevious()));
} else if ("next".equals(navigateActionValue)) {
navigateActionValue = null;
AjaxUtils.navigate(facesContext, logAndNavigate(navigationState.gotoNext()));
}
logAndNavigate(null);
}
private String logAndNavigate(final String navValue) {
LOG.info("Return navigate value: " + navValue + "");
return navValue;
}
public String getNavigateActionValue() {
return navigateActionValue;
}
public void setNavigateActionValue(final String navigateActionValue) {
this.navigateActionValue = navigateActionValue;
}
}