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

react-pstate

v0.0.4

Published

`ReactPersistentState` is a mixin, which allows saving the current state of ReactJS component. It provides predefined persistent storage, which uses `localStorage`. The storage has asynchronous interface in order to provide functionality for saving the st

Downloads

27

Readme

ReactPersistentState

ReactPersistentState is a mixin, which allows saving the current state of ReactJS component. It provides predefined persistent storage, which uses localStorage. The storage has asynchronous interface in order to provide functionality for saving the state using XHR, WebSockets, etc.

If you want to use your own storage, just implement the interface described in the next section.

DEMO.

Storage API

Each component should have an id. Note that you must provide component unique id. A good way to generate one might be to get css or xquery selector.

  • set(id, data) - Sets value of for given id. data is an object, so serialization might be required inside the implementation of set. This method should return a promise.
  • get(id) - Gets value by given id. This method must return a promise, which should be resolved with deserialized data.
  • remove(id) - Removes the data associated to given id. This method should return a promise.

The mixin uses the ECMAScript 6 Promise API. Polyfill is available here.

API

  • setPId(id) - Sets the component id. This method must be invoked before any other.
  • setPStorage(storage) - Sets the storage, which should be used for storing the component's state.
  • setPState(state, cb) - Sets the persistent state of the component. This method is wrapper of the default setState. Initially it invokes setState, once the state has been set successfully the save logic associated with the used storage will be invoked. cb will be invoked once the state has been successfully set (i.e. invoked inside the callback passed to setState).
  • removePState() - Removes the saved persistent state.
  • restorePState(cb) - Restores the persistent state of the component. Once the returned promise by the get method of the used storage has been resolved the mixin will invoke setState with the received value. cb will be invoked once the state has been successfully set.

Demo

var TickLabel = React.createClass({
  mixins: [ReactPersistentState],
  componentDidMount: function () {
    'use strict';
    var self = this;
    this.setPId('unique_id');
    this.setPStorage(this.localStorage);
    setInterval(function () {
      self.setPState({
        ticks: self.state.ticks + 1
      });
    }, 1000);
    this.restorePState();
  },
  getInitialState: function () {
    'use strict';
    return { ticks: 0 };
  },
  render: function () {
    'use strict';
    return React.createElement('div', {}, this.state.ticks);
  }
});

React.render(TickLabel(), document.getElementById('content'));

After refresh the TickLabel will continue ticking from the value it had before the page was refreshed.

License

MIT