
jdplus.toolkit.desktop.plugin.ui.calendar.actions.ExportCalendarAction Maven / Gradle / Ivy
/*
* Copyright 2013 National Bank of Belgium
*
* Licensed under the EUPL, Version 1.1 or - as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
package jdplus.toolkit.desktop.plugin.ui.calendar.actions;
import jdplus.toolkit.desktop.plugin.Config;
import jdplus.toolkit.desktop.plugin.interchange.Exportable;
import jdplus.toolkit.desktop.plugin.interchange.InterchangeManager;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import javax.swing.JMenuItem;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionReferences;
import org.openide.awt.ActionRegistration;
import org.openide.nodes.Node;
import org.openide.util.HelpCtx;
import org.openide.util.NbBundle.Messages;
import org.openide.util.actions.NodeAction;
import org.openide.util.actions.Presenter;
import jdplus.toolkit.desktop.plugin.Converter;
import jdplus.toolkit.desktop.plugin.workspace.CalendarDocumentManager;
import jdplus.toolkit.desktop.plugin.workspace.nodes.ItemWsNode;
import jdplus.toolkit.base.api.timeseries.calendars.CalendarDefinition;
import jdplus.toolkit.base.api.timeseries.calendars.CalendarManager;
/**
*
* @author Philippe Charles
*/
@ActionID(category = "Edit", id = "demetra.descop.ui.calendars.actions.ExportCalendarAction")
@ActionRegistration(displayName = "#CTL_ExportCalendarAction", lazy = false)
@ActionReferences({
@ActionReference(path = CalendarDocumentManager.ITEMPATH, position = 1430)
})
@Messages("CTL_ExportCalendarAction=Export to")
public final class ExportCalendarAction extends NodeAction implements Presenter.Popup {
private static final Converter CONVERTER = new CalendarConfig();
@Override
public JMenuItem getPopupPresenter() {
JMenuItem result = InterchangeManager.get().newExportMenu(getExportables(getActivatedNodes()));
result.setText(Bundle.CTL_ExportCalendarAction());
return result;
}
@Override
protected void performAction(Node[] activatedNodes) {
}
@Override
protected boolean enable(Node[] activatedNodes) {
return Stream.of(activatedNodes).anyMatch(ExportCalendarAction::isExportable);
}
@Override
public String getName() {
return null;
}
@Override
public HelpCtx getHelpCtx() {
return null;
}
private static boolean isExportable(Node o) {
return o instanceof ItemWsNode && isExportable((ItemWsNode) o);
}
private static boolean isExportable(ItemWsNode o) {
return !o.getDisplayName().equals(CalendarManager.DEF);
}
private static List getExportables(Node[] activatedNodes) {
return Stream.of(activatedNodes)
.filter(ExportCalendarAction::isExportable)
.map(ItemWsNode.class::cast)
.map(ExportableCalendar::new)
.collect(Collectors.toList());
}
private static final class ExportableCalendar implements Exportable {
private final ItemWsNode input;
public ExportableCalendar(ItemWsNode input) {
this.input = input;
}
@Override
public Config exportConfig() {
CalendarDefinition cal = AddCalendarAction.getProvider(input);
return CONVERTER.doForward(cal);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy