npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-cli-persistence

v1.3.1

Published

An ember-cli addon to interface with front end persistence containers

Downloads

28

Readme

ember-cli-persistence Build Status Maintainability

An Ember CLI addon to interface with front end persistence containers.

Most modern applications require the ability to persist data and state for the runtime of the application. This data may be temporary and only last the duration of the session or could perhaps be longer lasting, requiring that the application be able to fetch this data at a later point in time.

This addon provides a simple persistence service allowing your applications to make use of the LocalStorage and SessionStorage containers found within most modern HTML5 capable browsers. In instances where these two storage containers are not available this addon provides an Ephemeral container that simply acts as an in-memory key/value store for the duration of the applications runtime.

This addon is built upon the ember-cli-adpater-pattern allowing you to easily create your own storage container adapters.

Compatibility

  • Ember.js v2.18 or above
  • Ember CLI v2.13 or above

Installation

From within your Ember CLI project directory run:

ember install ember-cli-persistence

Usage

This addon implements a service to interface with several front end persistence containers by providing an abstract API that hides the implementation details of each persistence container adapter.

Configuration

Before the persistence service can be used it first must be configured through config/environment. This allows you to define which of the persistence containers you want to make available to your application through the persistence service.

Configuration Example
// config/environment.js
module.exports = function(environment) {
  let ENV = {
    persistence: {
      containers: [
        {
          name: 'Local',
          config: {
            namespace: 'local-enterprise'
          }
        },
        {
          name: 'Session',
          config: {
            namespace: 'session-enterprise'
          }
        },
        {
          name: 'Ephemeral',
          config: {
            namespace: 'ephemeral-enterprise'
          }
        }
      ]
    }
  };

  return ENV;
};

This configures your application to use all 3 adapters bundled with this addon and also namespaces each of key with the specified string.

Namespacing

As mentioned above you are able to namespace each of the keys you send to the persistence containers. This is completely optional but recommended if you have a lot of persisted data where key names may conflict. Key names are constructed internally by the bundled adapters and take the form namespace:key.

Containers

The containers array takes a series of objects defining the configuration of each adapter. This is a requirement of ember-cli-adpater-pattern where each object may take an additional series of key/value pairs. This addon however only requires the name of the adapter, in pascal case.

Injection

This addon makes no assumptions about what ember objects you want to make the persistence service available. Therefore in order to make the service available you need to implement you own injections.

Injection Initializer Example
// app/initializers/persistence.js
export function initialize(application) {
  application.inject('controller', 'persistence', 'service:persistence');
  application.inject('route', 'persistence', 'service:persistence');
};

export default { initialize };

This will make the persistence service available to all controllers and routes. It is however unlikely that you will require the service to be injected into every controller or route of your applications. Therefore it is recommended that you include the service on a per object basis.

Injection Controller Example
// app/controllers/application.js
import Controller from '@ember/controller';
import { inject } from '@ember/service';

export default Controller.extend({
  persistence: inject()
});

This will create a dependency on the application controller and inject the persistence service into this controller only. This can be repeated across all objects that need access to the service.

Persistence Service

The persistence service implements an abstract API that currently supports the following methods:

  • setItem
  • getItem
  • removeItem
  • key
  • clear
  • length

When using this API, by default the service will call the corresponding method on each of the adapters unless a specific adapter is specified. This means that if you were to call setItem on the service, it would in turn call setItem on each of the adapters and thus store the same data within each of the persistence containers configured in config/environment.

All Adapters Example
// app/controllers/application.js
import Controller from '@ember/controller';

import { get } from '@ember/object';
import { inject } from '@ember/service';

export default Controller.extend({
  persistence: inject(),

  actions: {
    storeTime() {
      const persistence = get(this, 'persistence');
      persistence.setItem({ key: 'time', value: Date() });
    }
  }
});

This is likely not the desired behaviour and is a consequence of the ember-cli-adpater-pattern. If you only want to store the data in a single persistence container you must specify the name.

Single Adapter Example
// app/controllers/application.js
import Controller from '@ember/controller';

import { get } from '@ember/object';
import { inject } from '@ember/service';

export default Controller.extend({
  persistence: inject(),

  actions: {
    storeTime() {
      const persistence = get(this, 'persistence');
      persistence.setItem('Local', { key: 'time', value: Date() });
    }
  }
});

This will only store the data using the LocalStorage adapter.

Each API call will be wrapped within a promise that resolves with the returned result of the adapter mapped to the adapter name. This means that for any method called on the service where a return value is expected you must use the Promise API to access it.

Promise Single Adapter Example
// app/controllers/application.js
import Controller from '@ember/controller';

import { get } from '@ember/object';
import { inject } from '@ember/service';

export default Controller.extend({
  persistence: inject(),

  actions: {
    getTime() {
      const persistence = get(this, 'persistence');
      persistence.getItem('Local', { key: 'time' }).then(function(values) {
        // Print the value returned from the LocalStorage adapter.
        console.log(values['Local']);
      });
    }
  }
});

License

This project is licensed under the MIT License.