/* * Copyright 2013 Red Hat, Inc. and/or its affiliates. * * 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 org.kie.workbench.common.screens.projecteditor.client.forms; import java.util.ArrayList; import java.util.List; import javax.inject.Inject; import com.google.gwt.cell.client.EditTextCell; import com.google.gwt.cell.client.FieldUpdater; import com.google.gwt.cell.client.SelectionCell; import com.google.gwt.core.client.GWT; import com.google.gwt.dom.client.Style; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.uibinder.client.UiHandler; import com.google.gwt.user.cellview.client.Column; import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client.ui.HasHorizontalAlignment; import com.google.gwt.user.client.ui.Widget; import org.gwtbootstrap3.client.ui.Button; import org.gwtbootstrap3.client.ui.constants.ButtonType; import org.gwtbootstrap3.client.ui.constants.IconType; import org.gwtbootstrap3.client.ui.gwt.ButtonCell; import org.kie.workbench.common.screens.projecteditor.client.resources.ProjectEditorResources; import org.kie.workbench.common.services.shared.kmodule.ListenerModel; import org.kie.workbench.common.widgets.client.resources.i18n.CommonConstants; import org.uberfire.ext.widgets.common.client.tables.SimpleTable; public class ListenersPanelViewImpl extends Composite implements ListenersPanelView { private static final String RULE_RUNTIME_EVENT_LISTENER = ProjectEditorResources.CONSTANTS.WorkingMemoryEventListener(); private static final String AGENDA_EVENT_LISTENER = ProjectEditorResources.CONSTANTS.AgendaEventListener(); private static final String PROCESS_EVENT_LISTENER = ProjectEditorResources.CONSTANTS.ProcessEventListener(); private Presenter presenter; interface Binder extends UiBinder<Widget, ListenersPanelViewImpl> { } private static Binder uiBinder = GWT.create( Binder.class ); @UiField(provided = true) SimpleTable<ListenerModel> dataGrid = new SimpleTable<ListenerModel>(); @UiField Button addButton; @Inject public ListenersPanelViewImpl() { addKindColumn(); addTypeColumn(); addDeleteColumn(); initWidget( uiBinder.createAndBindUi( this ) ); } private void addDeleteColumn() { final ButtonCell deleteCell = new ButtonCell( ButtonType.DANGER, IconType.TRASH ); final Column<ListenerModel, String> column = new Column<ListenerModel, String>( deleteCell ) { @Override public String getValue( ListenerModel object ) { return ""; } }; column.setFieldUpdater( new FieldUpdater<ListenerModel, String>() { @Override public void update( int index, ListenerModel model, String value ) { presenter.onDelete( model ); } } ); column.setHorizontalAlignment( HasHorizontalAlignment.ALIGN_CENTER ); dataGrid.addColumn( column, CommonConstants.INSTANCE.Delete() ); dataGrid.setColumnWidth( column, 60, Style.Unit.PX ); } public void setPresenter( Presenter presenter ) { this.presenter = presenter; } private void addTypeColumn() { Column<ListenerModel, String> column = new Column<ListenerModel, String>( new EditTextCell() ) { @Override public String getValue( ListenerModel listenerModel ) { return listenerModel.getType(); } }; column.setFieldUpdater( new FieldUpdater<ListenerModel, String>() { @Override public void update( int index, ListenerModel model, String value ) { model.setType( value ); } } ); dataGrid.addColumn( column, ProjectEditorResources.CONSTANTS.Type() ); } private void addKindColumn() { ArrayList<String> options = new ArrayList<String>(); options.add(RULE_RUNTIME_EVENT_LISTENER); options.add( AGENDA_EVENT_LISTENER ); options.add( PROCESS_EVENT_LISTENER ); Column<ListenerModel, String> column = new Column<ListenerModel, String>( new SelectionCell( options ) ) { @Override public String getValue( ListenerModel listenerModel ) { if ( listenerModel.getKind() == null || listenerModel.getKind().equals( ListenerModel.Kind.RULE_RUNTIME_EVENT_LISTENER) ) { return RULE_RUNTIME_EVENT_LISTENER; } else if ( listenerModel.getKind().equals( ListenerModel.Kind.PROCESS_EVENT_LISTENER ) ) { return PROCESS_EVENT_LISTENER; } else if ( listenerModel.getKind().equals( ListenerModel.Kind.AGENDA_EVENT_LISTENER ) ) { return AGENDA_EVENT_LISTENER; } else { return listenerModel.getKind().toString(); } } }; column.setFieldUpdater( new FieldUpdater<ListenerModel, String>() { @Override public void update( int index, ListenerModel model, String value ) { if ( value.equals(RULE_RUNTIME_EVENT_LISTENER) ) { model.setKind( ListenerModel.Kind.RULE_RUNTIME_EVENT_LISTENER); } else if ( value.equals( PROCESS_EVENT_LISTENER ) ) { model.setKind( ListenerModel.Kind.PROCESS_EVENT_LISTENER ); } else if ( value.equals( AGENDA_EVENT_LISTENER ) ) { model.setKind( ListenerModel.Kind.AGENDA_EVENT_LISTENER ); } } } ); dataGrid.addColumn( column, ProjectEditorResources.CONSTANTS.Kind() ); } public void setModels( List<ListenerModel> listeners ) { dataGrid.setRowData( listeners ); } @Override public void redraw() { dataGrid.redraw(); } @UiHandler("addButton") public void onAddClick( ClickEvent event ) { presenter.onAdd(); } }