org.opencms.ade.galleries.client.CmsResultsTabHandler 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.galleries.client;
import com.google.gwt.event.logical.shared.CloseEvent;
import com.google.gwt.user.client.ui.PopupPanel;
/**
* The results tab handler.
*
* This class receives event information from the results tab and
* delegates it to the gallery controller.
*
* @since 8.0.0
*/
public class CmsResultsTabHandler extends A_CmsTabHandler {
/**
* Constructor.
*
* @param controller the gallery controller
*/
public CmsResultsTabHandler(CmsGalleryController controller) {
super(controller);
}
/**
* @see org.opencms.ade.galleries.client.A_CmsTabHandler#clearParams()
*/
@Override
public void clearParams() {
// nothing to do here
}
/**
* Deletes the given resource.
*
* @param resourcePath the resource path of the resource to delete
*/
public void deleteResource(String resourcePath) {
m_controller.deleteResource(resourcePath);
}
/**
* Returns the result view type.
*
* @return the result view type
*/
public String getResultViewType() {
return m_controller.getResultViewType();
}
/**
* Returns if a preview is available for the given resource type.
*
* @param resourceType the requested resource type
*
* @return true
if a preview is available for the given resource type
*/
public boolean hasPreview(String resourceType) {
return m_controller.hasPreview(resourceType);
}
/**
* Returns if resource entries in the search result are selectable.
*
* @return if resource entries in the search result are selectable
*/
public boolean hasSelectResource() {
return m_controller.hasSelectResource() && m_controller.hasResultsSelectable();
}
/**
* Returns if a load results request is currently running.
*
* @return true
if a load results request is currently running
*/
public boolean isLoading() {
return m_controller.isLoading();
}
/**
* @see org.opencms.ade.galleries.client.A_CmsTabHandler#onClose(com.google.gwt.event.logical.shared.CloseEvent)
*/
@Override
public void onClose(CloseEvent event) {
m_controller.updateResultsTab(false);
}
/**
* Will be triggered when the bottom of the result list is reached by scrolling.
*/
public void onScrollToBottom() {
m_controller.updateResultsTab(true);
}
/**
* @see org.opencms.ade.galleries.client.A_CmsTabHandler#onSelection()
*/
@Override
public void onSelection() {
if (m_controller.isSearchObjectChanged()) {
m_controller.updateResultsTab(false);
}
}
/**
* @see org.opencms.ade.galleries.client.A_CmsTabHandler#onSort(java.lang.String,java.lang.String)
*/
@Override
public void onSort(String sortParams, String filter) {
// ignore filter, not available for this tab
m_controller.sortResults(sortParams);
}
/**
* Will be triggered when the result item is clicked.
*
* @param resourcePath the resource path of the result
* @param resourceType the resource type
*/
public void openPreview(String resourcePath, String resourceType) {
m_controller.openPreview(resourcePath, resourceType);
}
/**
* @see org.opencms.ade.galleries.client.A_CmsTabHandler#removeParam(java.lang.String)
*/
@Override
public void removeParam(String paramKey) {
// nothing to do
}
/**
* Stores the result view type.
*
* @param resultViewType the result view type
*/
public void setResultViewType(String resultViewType) {
m_controller.setResultViewType(resultViewType);
}
/**
* Updates the result tab.
*/
public void updateResult() {
m_controller.updateResultsTab(false);
}
}