Package org.ametys.cms.alerts
Class ContentAlertsClientSideElement
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.core.ui.StaticFileImportsClientSideElement
-
- org.ametys.core.ui.StaticClientSideElement
-
- org.ametys.cms.alerts.ContentAlertsClientSideElement
-
- All Implemented Interfaces:
ClientSideElement
,LogEnabled
,PluginAware
,Configurable
,Serviceable
public class ContentAlertsClientSideElement extends StaticClientSideElement
This element creates a toggle button representing the reminders state.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.core.ui.ClientSideElement
ClientSideElement.Script, ClientSideElement.ScriptFile
-
-
Field Summary
Fields Modifier and Type Field Description protected ContentHelper
_contentHelper
The content helperprotected LockContentManager
_lockManager
The lock manager.protected AmetysObjectResolver
_resolver
Repository content.protected ServiceManager
_smanager
The service manager-
Fields inherited from class org.ametys.core.ui.StaticFileImportsClientSideElement
_currentUserProvider, _dependencies, _featureName, _id, _pluginName, _rightManager, _rights, _rightsMode, _script
-
-
Constructor Summary
Constructors Constructor Description ContentAlertsClientSideElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
_setAlerts(ModifiableDataAwareVersionableAmetysObject content, Map<String,Object> params)
Sets the alerts on the specified content.Map<String,Object>
getAlertsInformations(List<String> contentsId)
Get information on reminders state.protected Map<String,Object>
getContentDefaultParameters(Content content)
Get the default content's parametersList<ClientSideElement.Script>
getScripts(boolean ignoreRights, Map<String,Object> contextParameters)
This method return the scripts that will be used on client side.protected boolean
isUnlockable(Content content, Map<String,Object> results)
Test if the content is locked and cannot be unlocked by the current user.void
service(ServiceManager serviceManager)
void
setAlertsOnContent(List<String> contentIds, Map<String,Object> params)
Set alerts on content-
Methods inherited from class org.ametys.core.ui.StaticClientSideElement
_configureClass, _configureParameters, _configureScript, configureInitialParameters
-
Methods inherited from class org.ametys.core.ui.StaticFileImportsClientSideElement
_configureDependencies, _configureImports, _configureRights, _configureRightsMode, configure, getDependencies, getId, getPluginName, getRights, getScripts, hasRight, setPluginInfo, toString
-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
-
-
-
Field Detail
-
_resolver
protected AmetysObjectResolver _resolver
Repository content.
-
_lockManager
protected LockContentManager _lockManager
The lock manager.
-
_smanager
protected ServiceManager _smanager
The service manager
-
_contentHelper
protected ContentHelper _contentHelper
The content helper
-
-
Constructor Detail
-
ContentAlertsClientSideElement
public ContentAlertsClientSideElement()
-
-
Method Detail
-
service
public void service(ServiceManager serviceManager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classStaticFileImportsClientSideElement
- Throws:
ServiceException
-
getAlertsInformations
public Map<String,Object> getAlertsInformations(List<String> contentsId)
Get information on reminders state.- Parameters:
contentsId
- The list of contents' ids- Returns:
- informations on reminders state.
-
isUnlockable
protected boolean isUnlockable(Content content, Map<String,Object> results)
Test if the content is locked and cannot be unlocked by the current user.
If this is so, fill the "not-unlockable" list in the result map.- Parameters:
content
- the content to test.results
- the result map.- Returns:
- true if the content is locked and cannot be unlocked by the current user, false otherwise.
-
getContentDefaultParameters
protected Map<String,Object> getContentDefaultParameters(Content content)
Get the default content's parameters- Parameters:
content
- The content- Returns:
- The default parameters
-
setAlertsOnContent
public void setAlertsOnContent(List<String> contentIds, Map<String,Object> params) throws ServiceException
Set alerts on content- Parameters:
contentIds
- the content's idparams
- the alerts' parameters- Throws:
ServiceException
- if an error occurred while retrieving the alert scheduler component
-
_setAlerts
protected void _setAlerts(ModifiableDataAwareVersionableAmetysObject content, Map<String,Object> params) throws AmetysRepositoryException
Sets the alerts on the specified content.- Parameters:
content
- the content to set the alerts on.params
- the alerts' parameters- Throws:
AmetysRepositoryException
- if a repository error occurs.
-
getScripts
public List<ClientSideElement.Script> getScripts(boolean ignoreRights, Map<String,Object> contextParameters)
Description copied from interface:ClientSideElement
This method return the scripts that will be used on client side. This class will be parametrized by initial and current parameters.- Specified by:
getScripts
in interfaceClientSideElement
- Overrides:
getScripts
in classStaticFileImportsClientSideElement
- Parameters:
ignoreRights
- True to ignore the rights verification.contextParameters
- Contextuals parameters transmitted by the environment.- Returns:
- The list of scripts or an empty list.
-
-