tools.dynamia.zk.actions.ActionToolbar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools.dynamia.zk Show documentation
Show all versions of tools.dynamia.zk Show documentation
Classes for ZK web application
The newest version!
/*
* Copyright (C) 2023 Dynamia Soluciones IT S.A.S - NIT 900302344-1
* Colombia / South America
*
* 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 tools.dynamia.zk.actions;
import org.zkoss.zk.ui.Component;
import org.zkoss.zk.ui.HtmlBasedComponent;
import org.zkoss.zk.ui.event.Event;
import org.zkoss.zk.ui.event.Events;
import org.zkoss.zul.Separator;
import org.zkoss.zul.Toolbar;
import tools.dynamia.actions.Action;
import tools.dynamia.actions.ActionEventBuilder;
import tools.dynamia.actions.ActionRenderer;
import tools.dynamia.actions.ActionRendererException;
import tools.dynamia.actions.Actions;
import tools.dynamia.zk.ComponentAliasIndex;
import java.util.ArrayList;
import java.util.List;
/**
* @author Mario A. Serrano Leones
*/
public class ActionToolbar extends Toolbar {
/**
*
*/
private static final long serialVersionUID = -7223083923123174793L;
public static final String CONTAINER_SCLASS = "actiontb-container";
static {
ComponentAliasIndex.getInstance().add(ActionToolbar.class);
}
private List actions = new ArrayList<>();
private ActionEventBuilder eventBuilder;
private ActionRenderer> actionRenderer = new ToolbarbuttonActionRenderer();
public ActionToolbar() {
init();
}
public ActionToolbar(ActionEventBuilder eventBuilder) {
this.eventBuilder = eventBuilder;
init();
}
public ActionToolbar(ActionEventBuilder eventBuilder, String orient) {
super(orient);
this.eventBuilder = eventBuilder;
init();
}
private void init() {
setSclass("actiontb");
}
public void addAction(Action action) {
actions.add(action);
renderAction(action);
}
public void addSeparator() {
Separator separator = new Separator("vertical");
separator.setSclass("actiontb-sep");
appendChild(separator);
}
private void renderAction(Action action) {
if (eventBuilder == null) {
throw new ActionRendererException("Cannot render action without ActionEventBuilder");
}
ActionRenderer> currentActionRenderer = action.getRenderer();
if (currentActionRenderer == null) {
currentActionRenderer = getActionRenderer();
}
Component component = (Component) Actions.render(currentActionRenderer, action, eventBuilder);
component.setParent(this);
String actionId = action.getId();
if (action.getAttribute("internalId") != null) {
actionId = action.getAttribute("internalId").toString();
}
if (component instanceof HtmlBasedComponent hcom) {
hcom.setSclass("actiontb-a " + actionId + " " + hcom.getSclass());
}
}
public void setEventBuilder(ActionEventBuilder eventBuilder) {
this.eventBuilder = eventBuilder;
}
public ActionEventBuilder getEventBuilder() {
return eventBuilder;
}
public ActionRenderer> getActionRenderer() {
return actionRenderer;
}
public void setActionRenderer(ActionRenderer> actionRenderer) {
this.actionRenderer = actionRenderer;
}
public List getActions() {
return actions;
}
public void setActions(List actions) {
this.actions = actions;
if (actions != null) {
getChildren().clear();
actions.forEach(this::renderAction);
Events.postEvent(new Event(Events.ON_CHANGE, this));
}
}
public void clear() {
if (actions != null) {
actions.clear();
}
getChildren().clear();
}
}