# HG changeset patch # User Damien Correia # Date 1527240757 -7200 # Node ID b0b289038b2d081ce9169ed6e5de3b0536f85fb1 # Parent 2e1ed76f3c7d18db2347c74352443ceb0ffbae26# Parent 2643fb0f7bbce4f1e1ddb46140fcc54734b8d82b merge default diff -r 2643fb0f7bbc -r b0b289038b2d src/source/appextend.rst --- a/src/source/appextend.rst Fri May 25 09:06:35 2018 +0200 +++ b/src/source/appextend.rst Fri May 25 11:32:37 2018 +0200 @@ -9,3 +9,4 @@ howto-adapter howto-portlet + howto-renderer diff -r 2643fb0f7bbc -r b0b289038b2d src/source/howto-portlet.rst --- a/src/source/howto-portlet.rst Fri May 25 09:06:35 2018 +0200 +++ b/src/source/howto-portlet.rst Fri May 25 11:32:37 2018 +0200 @@ -160,9 +160,14 @@ .. code-block:: python @adapter_config(name='another-renderer', - context=(IPortalContext, IPyAMSLayer, Interface, INewPortletSettings), provides=IPortletRenderer) + context=(IPortalContext, IPyAMSLayer, Interface, INewPortletSettings), + provides=IPortletRenderer) @template_config(template='my-portlet-render-2.pt', layer=IPyAMSLayer) class AnotherNewPortletRenderer(PortletRenderer): """Another new portlet renderer""" label = _("Another comment renderer") + +.. tip:: + You can use an other template without create a new renderer component, + with :py:func:`pyams_utils` to override the default template with you own. diff -r 2643fb0f7bbc -r b0b289038b2d src/source/howto-renderer.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/source/howto-renderer.rst Fri May 25 11:32:37 2018 +0200 @@ -0,0 +1,121 @@ +.. _rendererhowto: + + +How to create a new Renderer? +============================= + +**Renderer** are the layout of the utility data content + + +1. Create a Renderer +'''''''''''''''''''' + +The simplest is to create a new class that inherits from the existing **Renderer**, to modify this template and +to define a new adapter name. You must also override the label to distinguish rendering modes in the ZMI. + + + +.. code-block:: python + :linenos: + + # New custom contact paragraph renderer + + @adapter_config(name='custom', context=(IContactParagraph, IPyAMSLayer), provides=IContentRenderer) + @template_config(template='templates/contact-custom.pt', layer=IPyAMSLayer) + class ContactParagraphCustomRenderer(ContactParagraphDefaultRenderer): + """Context paragraph custom renderer""" + + label = _("Custom contact renderer") + settings_interface = IContactParagraphDefaultRendererSettings + +In this example the new renderer inherit of :py:class:`ContactParagraphDefaultRenderer`, we have defined a **label** (line 8) +and associated an **settings_interface** (line 9) + +We have declared this adapter with 'custom' name, it takes :py:class:`IContactParagraph`, :py:class:`IPyAMSLayer` as context +and provides :py:class:`IContentRenderer` interface. + +Using ``@template_config()`` decorator, the renderer can be displayed in html container according to the template + + +2. Define a Renderer settings +''''''''''''''''''''''''''''' + +In the previous point, we did not change the settings interface of the renderer. +However, we can define a new settings interface for the new renderer, for that we start by creating an interface + +a) Create setting interface +""""""""""""""""""""""""""" + + +.. code-block:: python + + class ICustomRendererSettings(Interface): + """Custom renderer settings interface""" + + + display_photo = Bool(title=_("Show photo?"), + description=_("Display contact photo"), + required=True, + default=True) + + display_phone_number = Bool(title=_("Show phone number?"), + description=_("Display the phone number of the contact?"), + required=True, + default=True) + + can_display_photo = Attribute("Check if photo can be displayed") + + + +b) Create an implemantation of the interface +"""""""""""""""""""""""""""""""""""""""""""" + +.. code-block:: python + + + @implementer(ICustomRendererSettings) + class CustomRendererSettings(Persistent, Location): + """Custom renderer settings""" + + display_photo = FieldProperty(ICustomRendererSettings['display_photo']) + display_phone_number = FieldProperty(ICustomRendererSettings['display_phone_number']) + + @property + def can_display_photo(self): + contact = IContactParagraph(self.__parent__) + if not contact.photo: + return False + return self.display_photo + + + +c) Create an adapter for the render setting interface +""""""""""""""""""""""""""""""""""""""""""""""""""""" + +With the wrapper :py:func:`@adapter_config()` we declare a new adapter. + +.. code-block:: python + + CUSTOM_RENDERER_SETTINGS_KEY = 'pyams_content.contact.renderer:custom' + + @adapter_config(context=IContactParagraph, provides=ICustomRendererSettings) + def custom_renderer_settings_factory(context): + """Contact paragraph default renderer settings factory""" + return get_annotation_adapter(context, CUSTOM_RENDERER_SETTINGS_KEY, + CustomRendererSettings) + +In this example the settings interface adapter is defined with `IContactParagraph` as context +and provide `ICustomRendererSettings`. + +d) Add settings interface renderer +"""""""""""""""""""""""""""""""""" + +In the renderer definition: + +.. code-block:: python + settings_interface = ICustomRendererSettings + + +.. tip:: + When a setting_interface is associated to a renderer, you can acces to `settings` attributs through the template +