Coder Social home page Coder Social logo

urbany / ember-service-worker-update-notify Goto Github PK

View Code? Open in Web Editor NEW

This project forked from topaxi/ember-service-worker-update-notify

0.0 1.0 0.0 1.62 MB

Update notification for service workers

License: MIT License

JavaScript 88.96% HTML 11.04%

ember-service-worker-update-notify's Introduction

ember-service-worker-update-notify

Adds a service-worker-update-notify service and <ServiceWorkerUpdateNotify /> component which displays a reload link if the service-worker has found an update.

Usage

Using the component

The component will show a message to the user when the availability of an update has been detected. Overwrite the default message using the component in block form:

<ServiceWorkerUpdateNotify>
  <a class="service-worker-update-notify" href={{this.router.currentURL}}>
    A new version is available, click here to update.
  </a>
</ServiceWorkerUpdateNotify>

Using the service

The service allows you to react to an app update in a more programmatic manner, e.g. you could force reload the app. The service emits an update event once an update has been detected. Here is an example of an application route that reloads the app automatically:

import Route from '@ember/routing/route';
import { inject as service } from '@ember/service';

export default class ApplicationRoute extends Route {
  @service
  serviceWorkerUpdateNotify;
  
  beforeModel() {
    this.serviceWorkerUpdateNotify.on('update', () => {
      window.location.reload();
    });
  }
}

Configuration

The poll interval can be configured in your config/environment.js with:

module.exports = function(environment) {
  let ENV = {
    'ember-service-worker-update-notify': {
      pollingInterval: 1200000 // Default is 20min
    }
  };

 return ENV;
};

Testing in Your App

Testing this in your app should mainly be concerned with presence and and what it looks like.

During testing, the polling will be disabled, and the reveal of the "New version available" content is controlled by a promise set on the window. In your tests, two helpers will aid you in asserting presence and appearance: setupServiceWorkerUpdater, and hasServiceWorkerUpdate.

// ...
import {
  setupServiceWorkerUpdater,
  hasServiceWorkerUpdate
} from 'ember-service-worker-update-notify/test-support/updater';

module('Application | Index', function(hooks) {
  setupApplicationTest(hooks);
  setupServiceWorkerUpdater(hooks);

  test('the update is shown', async function(assert) {
    // assert that the content is not shown

    await serviceWorkerUpdate();

    // assert that the content is shown

  });
});

Installation

yarn add --dev ember-concurrency # peer-dependency
yarn add --dev ember-service-worker-update-notify

Local installation

  • git clone <repository-url> this repository
  • cd ember-service-worker-update-notify
  • npm install

Linting

  • npm run lint:hbs
  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

ember-service-worker-update-notify's People

Contributors

dependabot[bot] avatar ember-tomster avatar jelhan avatar miguelcobain avatar nullvoxpopuli avatar simonihmig avatar topaxi avatar velrest avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.