Socket
Socket
Sign inDemoInstall

@ngxs-labs/data

Package Overview
Dependencies
7
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ngxs-labs/data

NGXS Persistence API (@ngxs-labs/data) 🚀 See it in action on <a href="https://stackblitz.com/edit/ngxs-example-counter


Version published
Weekly downloads
657
increased by0.31%
Maintainers
3
Install size
1.20 MB
Created
Weekly downloads
 

Readme

Source


NGXS Persistence API (@ngxs-labs/data)
🚀 See it in action on Stackblitz


Introduction

NGXS Persistence API is an extension based the Repository Design Pattern that offers a gentle introduction to NGXS by simplifying management of entities or plain data while reducing the amount of explicitness.

Key Concepts

The main purpose of this extension is to provide the necessary layer of abstraction for states. Automates the creation of actions, dispatchers, and selectors for each entity type.

Benefits:

  • Angular-way (State as a Service)
  • Snapshot's from state out-of-the-box (@Computed())
  • Support debounce for throttling dispatch (@Debounce())
  • Simple manipulation with data from states (NgxsDataRepository<T>)
  • Automatic type inference from selection data stream (myState.state$)
  • Immutable state context out-of-the-box (NgxsImmutableDataRepository<T>)
  • Entity adapter out-of-the-box (NgxsDataEntityCollectionsRepository<V, K>)
  • Simple API for testing states (ngxsTestingPlatform([A], (store: Store, a: A) => {...}))
  • Persistence state out-of-the-box in sessionStorage, localStorage, custom (@Persistence())
  • Automatic action naming by service methods for improved debugging (@DataAction(), @Payload(), @Named())

Minimal peer dependencies:

  • Require minimal @ngxs/store v3.6.2
  • Require minimal TypeScript v3.7.2

If you are using Angular 8, you can write in the tsconfig.json:

{
    "angularCompilerOptions": {
        "disableTypeScriptVersionCheck": true
    },
    "compilerOptions": {}
}

Browsers support

IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Edge 12+ (IE + polyfills)Firefox 42+Chrome 42+Safari 10+

Simple example

Before

counter.state.ts

import { State, Action, StateContext } from '@ngxs/store';

export class Increment {
    static readonly type = '[Counter] Increment';
}

export class Decrement {
    static readonly type = '[Counter] Decrement';
}

@State<number>({
    name: 'counter',
    defaults: 0
})
export class CounterState {
    @Action(Increment)
    increment(ctx: StateContext<number>) {
        ctx.setState(ctx.getState() + 1);
    }

    @Action(Decrement)
    decrement(ctx: StateContext<number>) {
        ctx.setState(ctx.getState() - 1);
    }
}

app.component.ts

import { Component } from '@angular/core';
import { Select, Store } from '@ngxs/store';

import { CounterState, Increment, Decrement } from './counter.state';

@Component({
    selector: 'app-root',
    template: `
        <ng-container *ngIf="counter$ | async as counter">
            <h1>{{ counter }}</h1>
        </ng-container>

        <button (click)="increment()">Increment</button>
        <button (click)="decrement()">Decrement</button>
    `
})
export class AppComponent {
    @Select(CounterState) counter$: Observable<number>;
    constructor(private store: Store) {}

    increment() {
        this.store.dispatch(new Increment());
    }

    decrement() {
        this.store.dispatch(new Decrement());
    }
}

After

counter.state.ts

import { State } from '@ngxs/store';
import { DataAction, StateRepository } from '@ngxs-labs/data/decorators';
import { NgxsDataRepository } from '@ngxs-labs/data/repositories';

@StateRepository()
@State<number>({
    name: 'counter',
    defaults: 0
})
@Injectable()
export class CounterState extends NgxsDataRepository<number> {
    @DataAction() increment() {
        this.ctx.setState((state) => ++state);
    }

    @DataAction() decrement() {
        this.ctx.setState((state) => --state);
    }
}

app.component.ts

import { Component } from '@angular/core';

import { CounterState } from './counter.state';

@Component({
    selector: 'app-root',
    template: `
        <h1>{{ counter.snapshot }}</h1>
        <button (click)="counter.increment()">Increment</button>
        <button (click)="counter.decrement()">Decrement</button>
    `
})
export class AppComponent {
    constructor(counter: CounterState) {}
}

Keywords

FAQs

Last updated on 20 Jun 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc