Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@js-smart/ng-store

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@js-smart/ng-store

Angular Signal Store

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

NG Store

CI Ng Store on npm

A simple store built with Angular signals. The state information can be stored in Store and entities can be stored in EntityStore. The Store and EntityStore are built with Angular signals

Installation

Install the library

npm install @js-smart/ng-store

Usage

Store

To use the Store, create store service and provide correct type. This brings update method from Store and data can be updated using this method

login-store.service.ts

import { Store } from '@js-smart/ng-store';
import { Injectable } from '@angular/core';

export interface LoginState {
  isLoggedIn: boolean;
  userName: string;
}

@Injectable({
  providedIn: 'root',
})
export class LoginStore extends Store<LoginState> {
  constructor() {
    super();
  }
}

login.component.ts And inject the store in the component and use update method to update the state and data property to get the state

import { LoginStore } from './login-store.service';
import { Component, inject } from '@angular/core';

@Component({
  selector: 'app-login',
  templateUrl: './login.component.html',
})
export class LoginComponent {
  loginStore = inject(LoginStore);
  loginState = this.loginStore.data;

  login() {
    this.loginStore.update({ isLoggedIn: true, userName: 'John Doe' });
  }

  logout() {
    this.loginStore.update({ isLoggedIn: false, userName: '' });
  }
}

Entity Store

To use the Entity Store, create store service and provide correct type. This brings findById, set, upsert,upsertMulti and remove methods from Entity Store and data can be updated using these methods

employee-store.service.ts

import { Store } from '@js-smart/ng-store';
import { Injectable } from '@angular/core';

export interface Employee {
  id: number;
  firstName: string;
  lastName: string;
  email: string;
  phone: string;
  age: number;
}

@Injectable({
  providedIn: 'root',
})
export class EmployeeStore extends EntityStore<Employee> {
  constructor() {
    super();
  }
}

employee.component.ts And inject the store in the component and use set method to update the state and data property to get the state

import { LoginStore } from './login-store.service';
import { Component, inject,OnInit } from '@angular/core';

@Component({
  selector: 'app-login',
  templateUrl: './login.component.html',
})
export class LoginComponent implements OnInit {
  employeeService = inject(EmployeeService);
  employeeStore = inject(EmployeeStore);

  ngOnInit(): void {
    this.employeeService.getEmployees().subscribe((employees) => {
      this.employeeStore.set(employees);
    });
  }
}

Demo

  1. Run npm run start to start the demo project
  2. Open http://localhost:4300 in your browser

Running unit tests

Run ng test to execute the unit tests

Keywords

FAQs

Package last updated on 22 Jan 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc