Skip to main content

DjangoCMS-popup let you create small popups that contains other plugins!

Project description

DjangoCMS-popup
This is a screenshot of an actual popup with the default css.

Install

  1. Install module

    python3 -m pip install djangocms-popup
    
  2. Add it to your INSTALLED_APPS

        "djangocms_popup",
    
  3. Migrate

    python3 manage.py migrate djangocms_popup
    
  4. Launch your django-cms site, it should be here!

Requirements

  • django-cms: Obviously,
  • django-sekizai: Only for the template.

Features

A popup

DjangoCMS-popup demo

An Admin list of popups that you can access from a button in your taskbar

DjangoCMS-popup demo list

More popups!

You can add more choices for the popup using a tuple in your settings, that let you choose which template file to use for each popup.

To do so, just add a var named DJANGOCMS_POPUP_LIST in your settings, like this:

DJANGOCMS_POPUP_LIST = (
    ("bottom_right.html", "Bottom right popup"),
    ("bottom_left.html", "Bottom left popup"),
    ("top_right.html", "Top right popup"),
    ("top_left.html", "Top left popup"),
    ("center.html", "Center popup"),
)

Don't forget to add all the templates in the templates/popup/ folder!

Configuration

  • DJANGOCMS_POPUP_LIST (default: (("bottom_right.html", "Bottom right popup"),)) Just a tuple. Let user choose other templates for the popups.

  • DJANGOCMS_POPUP_TOOLBAR_BUTTON (boolean, default: True) Whether to add a button in the CMS toolbar to list all existing popups

  • DJANGOCMS_POPUP_TOOLBAR_MENU_IDENTIFIER (string, default: None) The identifier of the menu in which the new button will be added. If it is None it will be added in the main toolbar.

    :warning: Beware that the menu matching the provided menu identifier must exist prior to the creation of the Popup menu: the app defining this menu must appear before djangocms_popup in your INSTALLED_APPS.

  • DJANGOCMS_POPUP_TOOLBAR_MENU_POSITION (integer, default: None) The position of the button in the toolbar or in the menu defined by DJANGOCMS_POPUP_TOOLBAR_MENU_IDENTIFIER

Customize it!

The template included in this project serves demonstration purpose only, it's up to you to integrate it into your graphic charter by creating a file in templates/popup/popup_plugin.html.

How it works

It's a classic djangocms-plugin, with all the stuff in admin.py, cms_plugins.py, cms_toolbars.py and models.py.

The "fun" part is in the template.

The child plugins will be rendered inside a div which have a visibility property (see MDN doc).

Then, a very dumb script (in vanilla javascript) will display the div with a delay using setTimeout, and will add an event listener on a small button (that will show/hide the popup when clicked).

If the option "Allow the popup to be reopened if it is closed", the small button will still be visible, even if you refresh the page.

The state of the popup is stored inside the localStorage (the id is popup_is_open_{{ instance.id }}), so a closed popup won't reopen at a page reload.

Warning! The plugin uses the visibility property! So if any of the plugins you put inside the popup have a visibilit: visible property it will be shown!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djangocms-popup-1.3.0.tar.gz (21.8 kB view hashes)

Uploaded Source

Built Distribution

djangocms_popup-1.3.0-py3-none-any.whl (23.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page