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

ngx-easy-state-manager

v0.0.3

Published

ngx-easy-state-manager is a lightweight, intuitive library for managing state in Angular applications. It simplifies state management by providing a straightforward API for creating, updating, and accessing state, without the complexity of traditional app

Downloads

58

Readme

ngx-easy-state-manager

Example Image

ngx-easy-state-manager is a lightweight, intuitive library for managing state in Angular applications. It simplifies state management by providing a straightforward API for creating, updating, and accessing state, without the complexity of traditional approaches.

Installation

npm install ngx-easy-state-manager

Usage

  1. Import the EasyStateManagerService

First, import the EasyStateManagerService into your component or service where you want to manage the state.

app.module.ts

import { EasyStateManagerService } from "ngx-easy-state-manage";

@NgModule({
  providers: [{ provide: EasyStateManagerService }],
})
export class AppModule {}
  1. Inject the Service

Inject EasyStateManagerService in the constructor of your component or service.

constructor(private easyStateManager: EasyStateManagerService) {}
  1. Assign State

You can assign a new state using the assignState method. Optionally, you can also associate the state with a specific component name.

this.easyStateManager.assignState("exampleKey", "exampleValue", "ExampleComponentName");
  1. Retrieve State

To get the current state associated with a specific key, use the getState method.

const currentState = this.easyStateManager.getState("exampleKey");
console.log(currentState); // Output: 'exampleValue'
  1. Subscribe to State Changes

You can subscribe to state changes using the selectStateChange method, which returns an Observable.

this.easyStateManager.selectStateChange("exampleKey").subscribe((newValue) => {
  console.log("State has changed:", newValue);
});
  1. Delete State

To delete a state associated with a specific key, use the deleteState method.

this.easyStateManager.deleteState("exampleKey");

API

assignState(key: string, value: any, componentName?: string): void Assigns a value to the state with an optional component name.

getState(key?: string): any Retrieves the current value of the state associated with the specified key.

selectStateChange(key: string): Observable Returns an Observable that emits whenever the state associated with the specified key changes.

deleteState(key: string): void Deletes the state associated with the specified key.

Example

stateTypes

export const SELECTED_EMOJI = "selectedEmoji";

app.compoinent

import { Component, OnInit } from "@angular/core";
import { EmojiPicker } from "ngx-easy-emoji-picker";
import { EasyStateManagerService } from "ngx-easy-state-manager";

import { SELECTED_EMOJI } from "./stateTypes";

@Component({
  selector: "app-root",
  standalone: true,
  imports: [EmojiPicker],
  templateUrl: "./app.component.html",
  styleUrl: "./app.component.css",
  providers: [EasyStateManagerService],
})
export class AppComponent implements OnInit {
  title = "my-project";

  selectedEmoji = "";

  constructor(private _stateManager: EasyStateManagerService) {}

  ngOnInit() {
    this._stateManager.selectStateChange(SELECTED_EMOJI).subscribe((state) => {
      if (state) this.selectedEmoji = state.emoji;

      console.log("Selected emoji:", this.selectedEmoji);
    });
  }

  onEmojiSelected(emoji: string) {
    this._stateManager.assignState(SELECTED_EMOJI, { emoji: emoji });
  }
}

License

This project is licensed under the MIT License.