con4gis/pwa

Adds PWA functionality to a contao application.

Installs: 1 075

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 4

Forks: 1

Open Issues: 2

Type:contao-bundle


README

Overview

Turn your Contao Website into a progressive web app. The con4gis-PwaBundle provides everything you need for basic PWA functionality, including generating a service worker script and a manifest file.

Features include:

  • Configuration of required parameters for the webmanifest
  • Select a pwa configuration in the page root. On submit the service worker and manifest for this page root will be generated for you.
  • Multiple offline behaviours: choose whether you want to cache everything or if you always want to redirect to a chosen offline page.
  • WebPushConfiguration: configure the web push library in the backend so your users can register for push notifications.
  • Add icons for app splashscreens (Android & iOS)

Installation

Via composer:

composer require con4gis/pwa

Alternatively, you can use the Contao Manager to install the con4gis-PwaBundle.

Requirements

Usage

This bundles provides two front end modules for contao:

PWA module (add manifest)

Creates the required HTML code to load the manifest file and the service worker. Can be included anywhere on the page since it contains no visible elements by itself.

Push subscription button

Creates the button to subscribe to push notifications as well as loading the javascript needed to handle the subscription. The button comes unstyled, but can be accessed via the "btn-push-subscribe"-ID for individual styling.

Sending a notification

There are three different ways to send push notifications with this bundle:

  • Console Command (con4gis:send-push <message>)
  • Backend Module (Create a new dataset and store it - it won't be stored in the database but is sent to all subscribed users instead)
  • Sending a notification programmatically

To send a notification in one of your scripts, you have to create a PushNotificationEvent and use the Symfony event dispatcher.

// get the event dispatcher
$eventDispatcher = $this->eventDispatcher;
// instantiate event
$event = new PushNotificationEvent();
// this sends the notification to every subscribed user. You can send a notification to only one subscription, too
$event->setSendToAll(true);
// set message contents
$event->setTitle($title);
$event->setMessage($content);
// dispatch the event
$eventDispatcher->dispatch($event::NAME, $event);

Documentation

Visit docs.con4gis.org for a user documentation. You can also contact us via the support forum there.