com.liferay.journal.web.internal.display.context.JournalFeedsManagementToolbarDisplayContext Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* 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.
*/
package com.liferay.journal.web.internal.display.context;
import com.liferay.frontend.taglib.clay.servlet.taglib.display.context.SearchContainerManagementToolbarDisplayContext;
import com.liferay.frontend.taglib.clay.servlet.taglib.util.CreationMenu;
import com.liferay.frontend.taglib.clay.servlet.taglib.util.CreationMenuBuilder;
import com.liferay.frontend.taglib.clay.servlet.taglib.util.DropdownItem;
import com.liferay.frontend.taglib.clay.servlet.taglib.util.DropdownItemListBuilder;
import com.liferay.journal.model.JournalFeed;
import com.liferay.journal.web.internal.security.permission.resource.JournalFeedPermission;
import com.liferay.journal.web.internal.security.permission.resource.JournalPermission;
import com.liferay.petra.portlet.url.builder.PortletURLBuilder;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.language.LanguageUtil;
import com.liferay.portal.kernel.portlet.LiferayPortletRequest;
import com.liferay.portal.kernel.portlet.LiferayPortletResponse;
import com.liferay.portal.kernel.security.permission.ActionKeys;
import com.liferay.portal.kernel.theme.ThemeDisplay;
import com.liferay.portal.kernel.util.WebKeys;
import java.util.List;
import javax.portlet.PortletURL;
import javax.servlet.http.HttpServletRequest;
/**
* @author Eudaldo Alonso
*/
public class JournalFeedsManagementToolbarDisplayContext
extends SearchContainerManagementToolbarDisplayContext {
public JournalFeedsManagementToolbarDisplayContext(
HttpServletRequest httpServletRequest,
LiferayPortletRequest liferayPortletRequest,
LiferayPortletResponse liferayPortletResponse,
JournalFeedsDisplayContext journalFeedsDisplayContext) {
super(
httpServletRequest, liferayPortletRequest, liferayPortletResponse,
journalFeedsDisplayContext.getFeedsSearchContainer());
_journalFeedsDisplayContext = journalFeedsDisplayContext;
}
@Override
public List getActionDropdownItems() {
return DropdownItemListBuilder.add(
dropdownItem -> {
dropdownItem.putData("action", "deleteFeeds");
dropdownItem.setIcon("trash");
dropdownItem.setLabel(
LanguageUtil.get(httpServletRequest, "delete"));
dropdownItem.setQuickAction(true);
}
).build();
}
public String getAvailableActions(JournalFeed feed) throws PortalException {
ThemeDisplay themeDisplay =
(ThemeDisplay)httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
if (JournalFeedPermission.contains(
themeDisplay.getPermissionChecker(), feed, ActionKeys.DELETE)) {
return "deleteFeeds";
}
return StringPool.BLANK;
}
@Override
public String getClearResultsURL() {
return PortletURLBuilder.create(
getPortletURL()
).setKeywords(
StringPool.BLANK
).buildString();
}
@Override
public String getComponentId() {
return "journalFeedsManagementToolbar";
}
@Override
public CreationMenu getCreationMenu() {
return CreationMenuBuilder.addPrimaryDropdownItem(
dropdownItem -> {
ThemeDisplay themeDisplay =
(ThemeDisplay)httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
dropdownItem.setHref(
liferayPortletResponse.createRenderURL(), "mvcPath",
"/edit_feed.jsp", "redirect", themeDisplay.getURLCurrent());
dropdownItem.setLabel(
LanguageUtil.get(httpServletRequest, "add-feed"));
}
).build();
}
@Override
public String getSearchActionURL() {
PortletURL searchActionURL = getPortletURL();
return searchActionURL.toString();
}
@Override
public String getSearchContainerId() {
return "feeds";
}
@Override
public Boolean isShowCreationMenu() {
ThemeDisplay themeDisplay =
(ThemeDisplay)httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
if (JournalPermission.contains(
themeDisplay.getPermissionChecker(),
themeDisplay.getScopeGroupId(), ActionKeys.ADD_FEED)) {
return true;
}
return false;
}
@Override
protected String getDisplayStyle() {
return _journalFeedsDisplayContext.getDisplayStyle();
}
@Override
protected String[] getDisplayViews() {
return new String[] {"list", "descriptive"};
}
@Override
protected String[] getNavigationKeys() {
return new String[] {"all"};
}
@Override
protected String[] getOrderByKeys() {
return new String[] {"name", "id"};
}
private final JournalFeedsDisplayContext _journalFeedsDisplayContext;
}