/** * * Copyright * 2009-2015 Jayway Products AB * 2016-2017 Föreningen Sambruk * * Licensed under AGPL, Version 3.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.gnu.org/licenses/agpl.txt * * 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 se.streamsource.streamflow.client.ui.workspace.search; import ca.odell.glazedlists.swing.EventListModel; import com.jgoodies.forms.builder.ButtonBarBuilder2; import org.jdesktop.application.Action; import org.jdesktop.application.ApplicationContext; import org.jdesktop.application.Task; import org.jdesktop.swingx.util.WindowUtils; import org.qi4j.api.injection.scope.Service; import org.qi4j.api.injection.scope.Structure; import org.qi4j.api.injection.scope.Uses; import org.qi4j.api.structure.Module; import se.streamsource.dci.value.link.LinkValue; import se.streamsource.streamflow.client.ui.OptionsAction; import se.streamsource.streamflow.client.ui.workspace.WorkspaceResources; import se.streamsource.streamflow.client.util.CommandTask; import se.streamsource.streamflow.client.util.LinkListCellRenderer; import se.streamsource.streamflow.client.util.RefreshWhenShowing; import se.streamsource.streamflow.client.util.Refreshable; import se.streamsource.streamflow.client.util.SelectionActionEnabler; import se.streamsource.streamflow.client.util.StreamflowButton; import se.streamsource.streamflow.client.util.dialog.DialogService; import se.streamsource.streamflow.client.util.dialog.NameDialog; import se.streamsource.streamflow.infrastructure.event.domain.TransactionDomainEvents; import se.streamsource.streamflow.infrastructure.event.domain.source.TransactionListener; import se.streamsource.streamflow.util.Strings; import javax.swing.ActionMap; import javax.swing.JList; import javax.swing.JPanel; import javax.swing.JPopupMenu; import javax.swing.JScrollPane; import javax.swing.border.EmptyBorder; import java.awt.BorderLayout; import static org.qi4j.api.specification.Specifications.*; import static se.streamsource.streamflow.client.util.i18n.*; import static se.streamsource.streamflow.infrastructure.event.domain.source.helper.Events.*; /** * JAVADOC */ public class ManagePerspectivesDialog extends JPanel implements TransactionListener, Refreshable { @Service DialogService dialogs; @Structure Module module; private PerspectivesModel model; private JList perspective; private StreamflowButton optionButton; public ManagePerspectivesDialog(@Service ApplicationContext context, @Uses PerspectivesModel model) { super(new BorderLayout()); setBorder(new EmptyBorder(5, 5, 5, 5)); ActionMap am; setActionMap(am = context.getActionMap(this)); this.model = model; perspective = new JList(); perspective.setCellRenderer(new LinkListCellRenderer()); perspective.setModel(new EventListModel<LinkValue>(model.getList())); JScrollPane scroll = new JScrollPane(perspective); add(scroll, BorderLayout.CENTER); JPopupMenu options = new JPopupMenu(); javax.swing.Action removeAction = am.get("remove"); javax.swing.Action renameAction = am.get("rename"); options.add(removeAction); options.add(renameAction); perspective.getSelectionModel().addListSelectionListener(new SelectionActionEnabler(removeAction, renameAction)); optionButton = new StreamflowButton(new OptionsAction(options)); ButtonBarBuilder2 buttonBuilder = new ButtonBarBuilder2(); buttonBuilder.addButton(optionButton); buttonBuilder.addUnrelatedGap(); buttonBuilder.addGlue(); buttonBuilder.addButton(am.get("close")); add(buttonBuilder.getPanel(), BorderLayout.SOUTH); new RefreshWhenShowing(this, model); } @Action public Task remove() { if (!perspective.isSelectionEmpty()) { final LinkValue value = (LinkValue) perspective.getSelectedValue(); return new CommandTask() { @Override public void command() throws Exception { model.remove(value); } }; } else return null; } @Action public void close() { WindowUtils.findWindow(this).dispose(); } @Action public Task rename() { final LinkValue selected = (LinkValue) perspective.getSelectedValue(); final NameDialog dialog = module.objectBuilderFactory().newObject(NameDialog.class); dialogs.showOkCancelHelpDialog(this, dialog, text(WorkspaceResources.change_perspective_title)); if (!Strings.empty(dialog.name())) { return new CommandTask() { @Override public void command() throws Exception { model.changeDescription(selected, dialog.name()); } }; } else return null; } public void notifyTransactions(Iterable<TransactionDomainEvents> transactions) { if (matches(and(onEntityTypes("se.streamsource.streamflow.web.domain.entity.user.UserEntity", "se.streamsource.streamflow.web.domain.entity.user.PerspectiveEntity"), withNames("createdPerspective", "changedDescription", "removedPerspective")), transactions)) { refresh(); } } public void refresh() { model.refresh(); } }