All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencms.ade.galleries.client.CmsGalleryConfigurationJSO Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 18.0
Show newest version
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH (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 org.opencms.ade.galleries.shared.CmsGalleryTabConfiguration;
import org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration;
import org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.GalleryMode;
import org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.GalleryTabId;
import org.opencms.gwt.client.util.CmsDomUtil;
import org.opencms.util.CmsStringUtil;

import java.util.Arrays;
import java.util.List;

import com.google.gwt.core.client.JavaScriptObject;

/**
 * Gallery configuration java-script overlay object.

*/ public final class CmsGalleryConfigurationJSO extends JavaScriptObject implements I_CmsGalleryConfiguration { /** * Hiding constructor.

*/ protected CmsGalleryConfigurationJSO() { // nothing to do } /** * Parses the given JSON configuration string.

* * @param conf the JSON configuration string * * @return the gallery configuration object */ public static CmsGalleryConfigurationJSO parseConfiguration(String conf) { return (CmsGalleryConfigurationJSO)CmsDomUtil.parseJSON(conf); } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getCurrentElement() */ public native String getCurrentElement()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_CURRENT_ELEMENT] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_CURRENT_ELEMENT]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getGalleryMode() */ public GalleryMode getGalleryMode() { if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(internalGetGalleryMode())) { return Enum.valueOf(GalleryMode.class, internalGetGalleryMode()); } return null; } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getGalleryPath() */ public native String getGalleryPath()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_PATH] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_PATH]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getGalleryTypeName() */ public native String getGalleryTypeName()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_NAME] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_NAME]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getGalleryTypes() */ public String[] getGalleryTypes() { if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(internalGetGalleryTypes())) { return internalGetGalleryTypes().split(","); } return null; } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getImageFormatNames() */ public native String getImageFormatNames()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_IMAGE_FORMAT_NAMES] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_IMAGE_FORMAT_NAMES] .toString(); } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getImageFormats() */ public native String getImageFormats()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_IMAGE_FORMATS] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_IMAGE_FORMATS] .toString(); } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getLocale() */ public native String getLocale()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_LOCALE] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_LOCALE]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getReferencePath() */ public native String getReferencePath()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_REFERENCE_PATH] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_REFERENCE_PATH]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getResourceTypes() */ public List getResourceTypes() { if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(internalGetResourceTypes())) { return Arrays.asList(internalGetResourceTypes().split(",")); } return null; } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getSearchTypes() */ public List getSearchTypes() { if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(internalGetSearchTypes())) { return Arrays.asList(internalGetSearchTypes().split(",")); } return null; } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getStartFolder() */ public native String getStartFolder()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_START_FOLDER] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_START_FOLDER]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getStartSite() */ public native String getStartSite()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_START_SITE] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_START_SITE]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getTabConfiguration() */ public CmsGalleryTabConfiguration getTabConfiguration() { return CmsGalleryTabConfiguration.resolve(getTabConfigString()); } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getTreeToken() */ public native String getTreeToken()/*-{ var key = @org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_TREE_TOKEN; if (typeof this[key] != 'undefined') { return this[key]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#getUploadFolder() */ public native String getUploadFolder()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_UPLOAD_FOLDER] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_UPLOAD_FOLDER]; } return null; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#isIncludeFiles() */ public boolean isIncludeFiles() { return getTabConfiguration().getTabs().contains(GalleryTabId.cms_tab_results); } /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#isShowSiteSelector() */ public native boolean isShowSiteSelector()/*-{ // defaults to true return 'false' != '' + this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_SHOW_SITE_SELECTOR] }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#isUseFormats() */ public native boolean isUseFormats()/*-{ // defaults to false return 'true' == '' + this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_USE_FORMATS] }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#setCurrentElement(java.lang.String) */ public native void setCurrentElement(String currentElement)/*-{ this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_CURRENT_ELEMENT] = currentElement; }-*/; /** * @see org.opencms.ade.galleries.shared.I_CmsGalleryConfiguration#setStartFolder(java.lang.String) */ public native void setStartFolder(String startFolder)/*-{ this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_START_FOLDER]=startFolder; }-*/; /** * Gets the tab configuration string.

* * @return the tab configuration string */ private native String getTabConfigString() /*-{ var key = @org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_TAB_CONFIG; if (typeof this[key] != 'undefined') { return this[key]; } return null; }-*/; /** * Returns the gallery mode name.

* * @return the gallery mode name */ private native String internalGetGalleryMode()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_MODE] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_MODE]; } return null; }-*/; /** * Returns the gallery types in a comma separated list.

* * @return the gallery types in a comma separated list */ private native String internalGetGalleryTypes()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_TYPES] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_GALLERY_TYPES]; } return null; }-*/; /** * Returns the resource types in a comma separated list.

* * @return the resource types in a comma separated list */ private native String internalGetResourceTypes()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_RESOURCE_TYPES] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_RESOURCE_TYPES]; } return null; }-*/; /** * Returns the search types in a comma separated list.

* * @return the search types in a comma separated list */ private native String internalGetSearchTypes()/*-{ if (typeof this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_SEARCH_TYPES] != 'undefined') { return this[@org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants::CONFIG_SEARCH_TYPES]; } return null; }-*/; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy