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

striker-store

v2.0.3

Published

Simple abstraction for model managment in react apps with mobx

Downloads

3

Readme

striker-store

Travis

Like ember-data but for mobx and react


Table of Contents


Install

  • This project uses node and npm. Go check them out if you don't have them locally installed.

tl;dr

yarn add mobx mobx-react mobx-utils serializr striker-store

Why all those libraries ?

striker-strore is build on mobx stack, and our peer dependencies are mobx mobx-react mobx-utils serializr.

Usage

This is a library that adds somethig like emaber-data but for your React projects. It also have an react-router v4 integration to avoid boilerplate code.

Please check out demo folder in source code. There is always up-to-date examples how to use library.

Models

Model is your domain data storage. Your model is a class that have at least one @identifier decorator. This is value will be used to track your model id.

We provide an helper base class for model called DomainModel. It will add a lot of lifecycle indication to your model. (isReloading, isError, isSaving, isSaved, isUpdating, isDeleting)

All this indicators are boxed values. To learn more: https://mobx.js.org/refguide/boxed.html

You can also define @serializable decorator to properties you want to serialize and deserialize.

You can also define you custom methods, for some computed values for example.

All serialization & deserialization process covered by serializr library from @mwestrate

More info: https://github.com/mobxjs/serializr

Example

import { DomainModel } from 'striker-store'
import { serializable, identifier } from 'serializr';

class ExampleUserModel extends DomainModel {
  @serializable(identifier()) id;
  @serializable name;
}

Now you have all helpers you your model. And field id will be used to track your model id.

Services

Service is communication with API. Your service is a class that implements next methods:

  • fetchAll
  • fetchOne
  • createItem
  • updateItem
  • deleteItem

We do not restrict that under the hood what type of transport you are use. All you need is to return an Promise from those methods.

Example

class ExampleUserService {
  fetchAll() {
    return fetch('https://jsonplaceholder.typicode.com/users')
      .then(response => response.json());
  }

  fetchOne(id) {
    return fetch(`https://jsonplaceholder.typicode.com/users/${id}`)
      .then(response => response.json());
  }
}

Store

You are here because of the store. Store use your service to fetch/update/delete/create you data. Than use you model to serialize/deserialize you data and store it in memory.

Manipulate methods

Store have following methods to manipulate with your data:

  • fetchAll
  • fetchOne
  • createItem
  • updateItem
  • deleteItem

As you can see naming of the methods is equavilent of your service methods.

Store Lifecycle

To add more control we provide hooks for you to override all aspects of store life.

Resolvers

It have next lifecycle (resolver) methods:

  • storeDidFetchAll
  • storeDidFetchOne
  • storeDidCreateNew
  • storeDidUpdate
  • storeDidDelete

Those methods are used to map your backend response to what we need to save in store. Also, it can be used to show user notifications, etc.

By default all resolvers methods are next: (data) => data But you can override it to what you need.

Also, this methods are async. So you can resolve other data.

For example in Post store when you fetch post by id, you need to fetch comments.

So you can get your comments store (with resolveStore or by second arg in resolved method) and fetch the comments to specific post.

Hooks

In addition to those lifecycle methods there is will lifecycle quavilents.

  • storeWillFetchAll
  • storeWillFetchOne
  • storeWillCreateNew
  • storeWillUpdate
  • storeWillDelete

This is pretty similar of ES6 api of React component.

Also, we have fail lifecycle hooks:

  • storeFetchAllFailed
  • storeFetchOneFailed
  • storeCreateNewFailed
  • storeUpdateFailed
  • storeDeleteFailed

It is useful to track errors and show notifications or manipulate models in some cases.

Getters

And there is a methods to get your data from store:

  • has
  • getMap
  • getOne
  • asArray (getter/computed)

Store name and store resolving

All stores by default registered with name same as your class name. So class: class MyStore {} will be resitered as MyStore.

To get stores from another stores (as was described in resolvers serction) you should use stores from resolvers did hooks.

Example

Quick example using typescript:

import { serializable, identifier } from 'serializr';
import { BaseDomainStore } from 'striker-store';
import * as React from 'react';
import { observer } from 'mobx-react';


class ExampleUserModel {
  @serializable(identifier()) id;
  @serializable name;
}

class ExampleUserService {
  fetchAll() {
    return fetch('https://jsonplaceholder.typicode.com/users')
      .then(response => response.json());
  }

  fetchOne(id) {
    return fetch(`https://jsonplaceholder.typicode.com/users/${id}`)
      .then(response => response.json());
  }
}

class ExampleUserStore extends BaseDomainStore {
  static service = new ExampleUserService();
  static modelSchema = ExampleUserModel;
}

const store = new ExampleUserStore();

function doFetch() {
  store.fetchAll();
}

function QuickExample() {
  return (
    <div>
      <h2>Fetching</h2>
      <div>Do initial fetch pls</div>
      <div>
        {store.asArray.map(user => <div key={user.id}> {user.name} </div>)}
      </div>
      <button onClick={doFetch}>Fetch</button>
    </div>
  );
}

export default observer(QuickExample);

ReactRouter v4 integration

There is an helper components to use react-router.

Example

Please, check out crud-example in demo folder.

Examples

Please, check out demo folder or https://stiker-store.surge.sh

Contribute

We are welcome to contribute. Just raise a pull request.

License

MIT License © Ostap Chervak