Docs

Documentation versions (currently viewingVaadin 14)

This tutorial is for an old Vaadin version. Read the same tutorial for the latest Vaadin version.

Turning a Vaadin Flow Application Into an Installable PWA

Learn how to define a custom offline page and enable installation on supported devices.
Caution
This tutorial is for Vaadin 14.
If this is your first time trying out Vaadin, you should read the same tutorial for the latest Vaadin version instead.

In this chapter, you turn the completed CRM application into a progressive web application (PWA), so that users can install it.

What Is a PWA?

The term “PWA” is used to describe modern web applications that offer a native app-like user experience. PWA technologies make applications faster, more reliable, and more engaging. PWAs can be installed on most mobile devices and on desktop when using supported browsers. They can even be listed in the Microsoft Store and Google Play Store. You can learn more about the underlying technologies and features in the Vaadin PWA documentation.

Two main components enable PWA technologies:

  • ServiceWorker: a JavaScript worker file that controls network traffic and enables custom cache control.

  • Web app manifest: a JSON file that identifies the web application as an installable application.

Generating PWA Resources

Vaadin provides the @PWA annotation, which automatically generates the required PWA resources.

Add the @PWA annotation to MainLayout as follows:

@Theme(themeFolder = "flowcrmtutorial")
@PWA( // (1)
    name = "VaadinCRM", // (2)
    shortName = "CRM" // (3)
)
public class MainLayout extends AppLayout {
     ...
}
  1. The @PWA annotation tells Vaadin to create a ServiceWorker and a manifest file.

  2. name is the full name of the application for the manifest file.

  3. shortName should be short enough to fit under an icon when installed, and should not exceed 12 characters.

Customize the Application Icon

You can override the default icon by replacing src/main/resources/META-INF/resources/icons/icon.png with your own 512px x 512px PNG icon.

You can use your own icon, or save the image below, by right-clicking and selecting Save Image.

example icon

Customize the Offline Page

Vaadin creates a generic offline fallback page that displays when the application is launched offline. Replacing this default page with a custom page that follows your own design guidelines makes your app more polished.

Use the code below to create offline.html in the META-INF/resources folder:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
    <title>Offline | Vaadin CRM</title>
    <style>
        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: sans-serif;
            color: #555;
        }

        .content {
            width: 80%;
        }

        .offline-image {
            width: 100%;
            margin: 4em 0px;
        }
    </style>
</head>
<body>

<div class="content">
    <img src="./images/offline.png" alt="VaadinCRM is offline" class="offline-image"/>
    <h1>Oh deer, you're offline</h1>
    <p>Your internet connection is offline. Get back online to continue using Vaadin CRM.</p>
</div>
<script>
    window.addEventListener('online', () => window.location.reload()); // (1)
</script>
</body>
</html>
  1. The JavaScript snippet reloads the page if the browser detects that it’s back online.

Add the following image (or use one of your own) to the META-INF/resources/images folder and name it offline.png.

example offline image

Make the files available offline by adding them to the @PWA annotation in MainLayout as follows:

@PWA(
    name = "VaadinCRM",
    shortName = "CRM",
    offlinePath="offline.html",
    offlineResources = { "./images/offline.png"} // (1)
)
  1. offlineResources is a list of files that Vaadin makes available offline through the ServiceWorker.

Restart the app. You can now install the application on supported browsers.

Testing the Offline Page

Shut down the server in IntelliJ and refresh the browser (or launch the installed app). You should now see the custom offline page.

custom offline page

In the next chapter, you will add tests to the application: both unit tests and in-browser tests.

migration assistance

Download free e-book.
The complete guide is also available in an easy-to-follow PDF format.

Open in a
new tab
export class RenderBanner extends HTMLElement {
  connectedCallback() {
    this.renderBanner();
  }

  renderBanner() {
    let bannerWrapper = document.getElementById('tocBanner');

    if (bannerWrapper) {
      return;
    }

    let tocEl = document.getElementById('toc');

    // Add an empty ToC div in case page doesn't have one.
    if (!tocEl) {
      const pageTitle = document.querySelector(
        'main > article > header[class^=PageHeader-module--pageHeader]'
      );
      tocEl = document.createElement('div');
      tocEl.classList.add('toc');

      pageTitle?.insertAdjacentElement('afterend', tocEl);
    }

    // Prepare banner container
    bannerWrapper = document.createElement('div');
    bannerWrapper.id = 'tocBanner';
    tocEl?.appendChild(bannerWrapper);

    // Banner elements
    const text = document.querySelector('.toc-banner-source-text')?.innerHTML;
    const link = document.querySelector('.toc-banner-source-link')?.textContent;

    const bannerHtml = `<div class='toc-banner'>
          <a href='${link}'>
            <div class="toc-banner--img"></div>
            <div class='toc-banner--content'>${text}</div>
          </a>
        </div>`;

    bannerWrapper.innerHTML = bannerHtml;

    // Add banner image
    const imgSource = document.querySelector('.toc-banner-source .image');
    const imgTarget = bannerWrapper.querySelector('.toc-banner--img');

    if (imgSource && imgTarget) {
      imgTarget.appendChild(imgSource);
    }
  }
}

EDEDCE07-8351-4A8C-86A6-D6F2A07126FA