org.opencms.ade.sitemap.client.hoverbar.CmsEditModelPageMenuEntry Maven / Gradle / Ivy
Show all versions of opencms-gwt Show documentation
/*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about Alkacon Software, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.ade.sitemap.client.hoverbar;
import org.opencms.ade.sitemap.client.CmsSitemapView;
import org.opencms.ade.sitemap.client.Messages;
import org.opencms.ade.sitemap.client.control.CmsSitemapController;
import org.opencms.ade.sitemap.shared.CmsClientSitemapEntry;
import org.opencms.ade.sitemap.shared.CmsNewResourceInfo;
import org.opencms.gwt.client.CmsCoreProvider;
import org.opencms.gwt.client.ui.CmsConfirmDialog;
import org.opencms.gwt.client.ui.I_CmsConfirmDialogHandler;
import org.opencms.util.CmsUUID;
/**
* Context menu entry for editing a model page.
*/
public class CmsEditModelPageMenuEntry extends A_CmsSitemapMenuEntry {
/**
* Creates a new instance.
*
* @param hoverbar the hover bar
*/
public CmsEditModelPageMenuEntry(CmsSitemapHoverbar hoverbar) {
super(hoverbar);
setLabel(Messages.get().key(Messages.GUI_EDIT_MODELPAGE_CONTEXTMENU_0));
setActive(true);
}
/**
* Checks if the model page menu entry should be visible.
*
* @param id the id of the model page
* @return true if the entry should be visible
*/
public static boolean checkVisible(CmsUUID id) {
boolean show = false;
if (CmsSitemapView.getInstance().getController().isEditable()) {
CmsNewResourceInfo info = CmsSitemapView.getInstance().getController().getData().getNewResourceInfoById(id);
show = CmsSitemapView.getInstance().isModelPageMode()
&& (((info != null) && info.isEditable()) || CmsSitemapView.getInstance().isModelGroupEntry(id));
}
return show;
}
/**
* Opens the editor for a model page menu entry.
*
* @param resourcePath the resource path of the model page
* @param isModelGroup if the given entry is a model group page
*/
public static void editModelPage(final String resourcePath, boolean isModelGroup) {
if (CmsSitemapView.getInstance().getController().getData().isShowModelEditConfirm()) {
I_CmsConfirmDialogHandler handler = new I_CmsConfirmDialogHandler() {
public void onClose() {
// noop
}
public void onOk() {
openEditor(resourcePath);
}
};
String dialogTitle;
String dialogContent;
if (isModelGroup) {
dialogTitle = Messages.get().key(Messages.GUI_EDIT_MODEL_GROUPS_CONFIRM_TITLE_0);
dialogContent = Messages.get().key(Messages.GUI_EDIT_MODEL_GROUP_CONFIRM_CONTENT_0);
} else {
dialogTitle = Messages.get().key(Messages.GUI_EDIT_MODELPAGE_CONFIRM_TITLE_0);
dialogContent = Messages.get().key(Messages.GUI_EDIT_MODELPAGE_CONFIRM_CONTENT_0);
}
String buttonText = Messages.get().key(Messages.GUI_EDIT_MODELPAGE_OK_0);
CmsConfirmDialog dialog = new CmsConfirmDialog(dialogTitle, dialogContent);
dialog.getOkButton().setText(buttonText);
dialog.setHandler(handler);
dialog.center();
} else {
openEditor(resourcePath);
}
}
/**
* Opens the container page editor for the given model resource.
*
* @param targetPath the model resource path
*/
static void openEditor(String targetPath) {
String siteRoot = CmsCoreProvider.get().getSiteRoot();
if (targetPath.startsWith(siteRoot)) {
targetPath = targetPath.substring(siteRoot.length());
// prepend slash if necessary
if (!targetPath.startsWith("/")) {
targetPath = "/" + targetPath;
}
}
CmsSitemapController controller = CmsSitemapView.getInstance().getController();
controller.leaveEditor(targetPath);
}
/**
* @see org.opencms.gwt.client.ui.contextmenu.I_CmsContextMenuEntry#execute()
*/
public void execute() {
CmsClientSitemapEntry entry = getHoverbar().getEntry();
CmsUUID id = entry.getId();
editModelPage(entry.getSitePath(), !CmsSitemapView.getInstance().isModelPageEntry(id)
&& !CmsSitemapView.getInstance().isParentModelPageEntry(id));
}
/**
* @see org.opencms.ade.sitemap.client.hoverbar.A_CmsSitemapMenuEntry#onShow()
*/
@Override
public void onShow() {
CmsUUID id = getHoverbar().getId();
boolean show = checkVisible(id);
setVisible(show);
}
}