1.0.0 • Published 5 years ago

@orva-sdk/utilities v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Sdk Utilities

Utilities that are not connected to the core web services.

Features

  • KV Store

KV Store

KV Store for carrying local data for users.

Usage

Setting a value for a User Within the Store

import Store from 'orva-sdk@utilities';

// ... 
const user;
const idOfTheObject; // some id you want to assign to that obj.
const obj; // the object you want to set in the store.

// Note: this can be set & retieved anywhere in the app.
Store.setItem(user, idOfTheObject, obj);

Retrieving from the Store

import Store from 'orva-sdk@utilities';

// ... 
const user; 
const idOfTheObject; 

Store.getItem(user, idOfTheObject); // returns your previously set item.

Resetting the Store

import Store from 'orva-sdk@utilities';

Store.reset(); // resets the store application wide.