Code Monkey home page Code Monkey logo

localstorm's Introduction

localstorm

Object/Relation Mapper for LocalStorage.

npm npm downloads Node.js CI codecov

Installation

npm install localstorm

Model

Model is an ORM (Object-Relation Mapper) for localStorage, providing simple interfaces like ActiveRecord.

NOTE: Model is NOT the best efficient accessor for localStorage, BUT provides the best small and easy way to manage localStorage and automatically map the object to your Model class.

How to use

class Player extends Model {}
let player = new Player({name: 'otiai10', age: 31});
player.name // 'otiai10'
player.age // 31
player._id // undefined, because not saved yet

player.save();
player._id // 1, because it's saved to localStorage

More complicated models with relations? See schema!

Methods

new

  • static
  • an alias for constructor
let player = Player.new({name: 'otiai20', age: 43});
player.name // 'otiai10'
player.age // 31
player._id // undefined, because not saved yet

save

let player = new Player({name: 'otiai20'});
player.save();
player._id // 2

find

  • static
let player = Player.find(2);
player.name // 'otiai10'

update

player.update({name: 'otiai22'});
Player.find(player._id).name // 'otiai22'

delete

player.delete();
Player.find(player._id) // undefined

create

  • static
  • an alias for new and save
let player = Player.create({name: 'otiai99', age: 99});
player._id // 3

// Is equivalent to
Player.new({name: 'otiai99'}).save();

all

  • static
  • returns everything as a dictionary
const dict = Player.all(); // Object
dict[1].name // 'otiai10'
dict[1] instanceof Player // true

list

  • static
  • returns everything as an array
const players = Player.list(); // [Player]
players.length // 2

// Is equivalent to
Player.filter(() => true);

filter

  • static
  • returns filtered array by filterFunc
const players = Player.filter(p => p.age < 40);
players.length // 1

useStorage

  • static
  • replace storage with anything which satisfies Storage interface
Model.useStorage(window.sessionStorage);

// For example, you can embed any extra operation for getItem/setItem/removeItem
const storage = new MyStorageWithEffortAsyncPushing();
Model.useStorage(storage);

Properties

schema

  • static
  • optional, default undefined
  • can define validations for each props of this model
  • no validations, if schema is not set
class Player extends Model {
  static schema = {
    name: Model.Types.string.isRequired,
    age:  Model.Types.number, // optional
    location: Model.Types.shape({
      address: Model.Types.string,
      visible: Model.Types.bool.isRequired,
    }),
  }
}

with relations

class Team extends Model {
  static schema = {
    name: Model.Types.string.isRequired,
    leader: Model.Types.reference(Player),
    members: Model.Types.arrayOf(Model.Types.reference(Player)),
  }
}

nextID

  • static
  • optional, default timestampID
  • replace it if you want to change algorythm of generating next id
Player.nextID = () => Date.now();
Player.create({name: 'otiai2017'})._id // 1488061388247
Player.create({name: 'otiai1986'})._id // 1488061388928

Types

Types API provides followings:

  1. Validation data type of Model when it's saved.
  2. Resolving relationship of Models.

Examples

import {Model, Types} from "localstorm";

class User extends Model {
  protected static schema = {
    name: Types.string.isRequired,
    age: Types.number,
    langs: Types.arrayOf(Types.string),
  }
}

class Team extends Model {
  protected static schema = {
    name: Types.string.isRequired,
    active: Types.bool.isRequired,
    address: Types.shape({
      country: Types.string,
      street: Types.string,
      postcode: Types.number,
    }),
    leader: Types.reference(User, {eager: true}),
    members: Types.arrayOf(Types.reference(User)),
    roles: Types.dictOf(Types.reference(User)),
  }
}

localstorm's People

Contributors

dependabot[bot] avatar otiai10 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.