/** * * 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.cases.conversations; import ca.odell.glazedlists.event.ListEvent; import ca.odell.glazedlists.event.ListEventListener; import org.jdesktop.application.Action; import org.jdesktop.application.ApplicationContext; import org.jdesktop.application.Task; 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.workspace.cases.CaseResources; import se.streamsource.streamflow.client.ui.workspace.cases.general.RemovableLabel; import se.streamsource.streamflow.client.util.CommandTask; import se.streamsource.streamflow.client.util.RefreshComponents; import se.streamsource.streamflow.client.util.RefreshWhenShowing; import se.streamsource.streamflow.client.util.StreamflowButton; import se.streamsource.streamflow.client.util.dialog.DialogService; import se.streamsource.streamflow.client.util.dialog.SelectLinkDialog; import se.streamsource.streamflow.client.util.i18n; 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.BorderFactory; import javax.swing.JComponent; import javax.swing.JPanel; import javax.swing.KeyStroke; import javax.swing.ListSelectionModel; import java.awt.BorderLayout; import java.awt.Component; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import static se.streamsource.streamflow.infrastructure.event.domain.source.helper.Events.*; public class ConversationParticipantsView extends JPanel implements ListEventListener, TransactionListener { @Service DialogService dialogs; @Structure Module module; ConversationParticipantsModel model; private JPanel participants; private RefreshComponents removableLabelRefresher; public ConversationParticipantsView(@Service ApplicationContext context, @Uses ConversationParticipantsModel model) { super(new BorderLayout()); setActionMap( context.getActionMap(this )); this.model = model; model.participants().addListEventListener( this ); participants = new JPanel(new FlowLayout( FlowLayout.LEFT )); participants.setBorder( BorderFactory.createEmptyBorder( 0, 0, 0, 0 ) ); add( participants, BorderLayout.CENTER); javax.swing.Action addParticipantsAction = getActionMap().get( "addParticipants" ); StreamflowButton addParticipants = new StreamflowButton( addParticipantsAction ); addParticipants.registerKeyboardAction( addParticipantsAction, (KeyStroke) addParticipantsAction .getValue( javax.swing.Action.ACCELERATOR_KEY ), JComponent.WHEN_IN_FOCUSED_WINDOW ); javax.swing.Action addExternalParticipantAction = getActionMap().get( "addExternalParticipant" ); StreamflowButton addExternalParticipant = new StreamflowButton( addExternalParticipantAction ); addExternalParticipant.registerKeyboardAction( addExternalParticipantAction, (KeyStroke) addExternalParticipantAction .getValue( javax.swing.Action.ACCELERATOR_KEY ), JComponent.WHEN_IN_FOCUSED_WINDOW ); JPanel addParticipantButtons = new JPanel( ); addParticipantButtons.add( addParticipants ); addParticipantButtons.add( addExternalParticipant ); add( addParticipantButtons, BorderLayout.EAST ); model.addObserver( new RefreshComponents().enabledOn( "addparticipant", addParticipants ) .enabledOn( "addexternalparticipant", addExternalParticipant ) ); model.addObserver( removableLabelRefresher = new RefreshComponents() .enabledOn( "addparticipant", participants.getComponents() ) ); new RefreshWhenShowing(this, model); } private void initComponents() { model.deleteObserver( removableLabelRefresher ); participants.removeAll(); for (int i = 0; i < model.participants().size(); i++) { LinkValue link = model.participants().get( i ); RemovableLabel label = new RemovableLabel( link, null); label.getButton().addActionListener( getActionMap().get("removeParticipant" )); participants.add( label ); } participants.revalidate(); participants.repaint(); model.addObserver( removableLabelRefresher = new RefreshComponents() .enabledOn( "addparticipant",participants.getComponents() ) ); } public void listChanged( ListEvent listEvent ) { initComponents(); } @Action public Task addParticipants() { final SelectLinkDialog dialog = module.objectBuilderFactory().newObjectBuilder(SelectLinkDialog.class).use( model.possibleParticipants() ).newInstance(); dialog.setSelectionMode( ListSelectionModel.MULTIPLE_INTERVAL_SELECTION ); dialogs.showOkCancelHelpDialog( this, dialog, i18n.text( CaseResources.choose_participant ) ); return new CommandTask() { @Override public void command() throws Exception { for (LinkValue participant : dialog.getSelectedLinks()) { model.addParticipant( participant ); } } }; } @Action public void addExternalParticipant() { final CreateExternalMailUserDialog dialog = module.objectBuilderFactory().newObjectBuilder( CreateExternalMailUserDialog.class ).newInstance(); dialogs.showOkCancelHelpDialog( this, dialog, i18n.text( CaseResources.choose_external_participant ) ); if( !Strings.empty( dialog.email() )) { new CommandTask() { @Override public void command() throws Exception { model.addExternalParticipant( dialog.email() ); } }.execute(); } } @Action public Task removeParticipant(final ActionEvent e) { return new CommandTask() { @Override public void command() throws Exception { Component component = ((Component) e.getSource()); RemovableLabel label = (RemovableLabel) component.getParent(); model.removeParticipant( label.getRemoveLink() ); } }; } public void notifyTransactions( Iterable<TransactionDomainEvents> transactions ) { if (matches( withNames("addedParticipant", "removedParticipant" ), transactions ) || matches( withUsecases( "resolve", "reopen" ),transactions ) ) { model.refresh(); } } }