Project

General

Profile

Download (3.05 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.bulkeditor.e4.handler;
10

    
11
import javax.inject.Named;
12

    
13
import org.eclipse.core.runtime.NullProgressMonitor;
14
import org.eclipse.e4.core.di.annotations.CanExecute;
15
import org.eclipse.e4.core.di.annotations.Execute;
16
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
17
import org.eclipse.e4.ui.model.application.ui.menu.MHandledMenuItem;
18
import org.eclipse.e4.ui.services.IServiceConstants;
19
import org.eclipse.jface.dialogs.MessageDialog;
20
import org.eclipse.jface.viewers.StructuredSelection;
21

    
22
import eu.etaxonomy.cdm.api.service.IAgentService;
23
import eu.etaxonomy.cdm.api.service.UpdateResult;
24
import eu.etaxonomy.cdm.model.agent.Person;
25
import eu.etaxonomy.cdm.model.agent.Team;
26
import eu.etaxonomy.cdm.model.common.CdmBase;
27
import eu.etaxonomy.cdm.strategy.merge.MergeException;
28
import eu.etaxonomy.taxeditor.bulkeditor.e4.BulkEditorE4;
29
import eu.etaxonomy.taxeditor.model.MessagingUtils;
30
import eu.etaxonomy.taxeditor.store.CdmStore;
31

    
32
/**
33
 * @author k.luther
34
 * @date 12.05.2015
35
 *
36
 */
37
public class ConvertTeam2PersonHandlerE4 {
38

    
39
    @Execute
40
	public void execute(@Named(IServiceConstants.ACTIVE_SELECTION)CdmBase selection,
41
	        @Named(IServiceConstants.ACTIVE_PART)MPart activePart) {
42

    
43
        BulkEditorE4 editor = (BulkEditorE4) activePart.getObject();
44

    
45
		if (editor.isDirty()){
46
			boolean proceed = MessageDialog.openQuestion(null,
47
					"Save changes", "You have made changes that must be saved before this query can be executed. Would you like to proceed?");
48
			if (proceed) {
49
				editor.save(new NullProgressMonitor());
50
			} else {
51
				return;
52
			}
53
		}
54

    
55
		Person person = null;
56
		UpdateResult result = null;
57
		Team team = (Team) selection;
58

    
59
		try {
60
		    result = CdmStore.getService(IAgentService.class).convertTeam2Person(selection.getUuid());
61
		} catch (IllegalArgumentException e) {
62
		    MessagingUtils.informationDialog("Can not convert Team to Person", e.getMessage());
63
		} catch (MergeException e) {
64
		    MessagingUtils.informationDialog("Can not convert Team to Person", e.getMessage());
65
		}
66
		if (result != null && result.isOk()){
67
		    person = (Person)result.getCdmEntity();
68
		    boolean test = editor.getEditorInput().getModel().remove(team);
69
		    editor.getEditorInput().getModel().add(person);
70
		}
71
		if (person != null){
72
		    editor.refresh();
73
		}
74
    }
75

    
76
    @CanExecute
77
    public boolean canExecute(@Named(IServiceConstants.ACTIVE_PART)MPart activePart,
78
            MHandledMenuItem menuItem){
79
        boolean canExecute = false;
80
        StructuredSelection selection = (StructuredSelection)((BulkEditorE4)activePart.getObject()).getSelection();
81
        canExecute = ((BulkEditorE4)activePart.getObject()).getEditorInput().isConvertingEnabled() && selection.getFirstElement() instanceof Team && selection.size() == 1;
82
        menuItem.setVisible(canExecute);
83
        return canExecute;
84
    }
85

    
86
}
(2-2/9)