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

@nationalbankbelgium/ngrx-store

v1.0.1

Published

RxJS powered Redux for AngularJS apps

Downloads

8

Readme

@nationalbankbelgium/ngrx-store

This is a backport of ngrx-store (https://github.com/ngrx/store) for AngularJS. The benefit of using this is that you can already start writing code that's ready for new Angular versions, making your legacy application easier to upgrade later on.

Installation

Install @nationalbankbelgium/ngrx-store from npm:

npm install @nationalbankbelgium/ngrx-store --save

Setup

Create a reducer function for each data type you have in your application. The combination of these reducers will make up your application state:

// counter.ts
import { ActionReducer, Action } from "@nationalbankbelgium/ngrx-store";

export const INCREMENT = "INCREMENT";
export const DECREMENT = "DECREMENT";
export const RESET = "RESET";

export function counterReducer(state: number = 0, action: Action) {
	switch (action.type) {
		case INCREMENT:
			return state + 1;

		case DECREMENT:
			return state - 1;

		case RESET:
			return 0;

		default:
			return state;
	}
}

In your app's main module, import those reducers and use the $storeProvider.provideStore(reducers) function to provide them to Angular's injector:

import { ngrxStoreProviderName, StoreProvider } from "@nationalbankbelgium/ngrx-store/ng1";
import { counterReducer } from "./counter";

export class AppModule {
  public static $inject: string[] = [ngrxStoreProviderName];

  public constructor(private $storeProvider: StoreProvider) {
    appModule: IModule;
    
    this.appModule.config(this.$storeProvider.provideStore({ counter: counterReducer }))
    
    ...
  }
  
  ...
}

You can then inject the Store service into your components and services. Use store.select to select slice(s) of state:

import { Store } from "@nationalbankbelgium/ngrx-store";
import { INCREMENT, DECREMENT, RESET } from "./counter";

interface AppState {
  counter: number;
}

export class MyAppComponent implements IController {

  public static selector: string = "my-app";
  
  public static componentOptions: IComponentOptions = {
    controller: MyAppComponent,
    template: `
    		<button (click)="$ctrl.increment()">Increment</button>
    		<div>Current Count: {{ $ctrl.counter | async }}</div>
    		<button (click)="$ctrl.decrement()">Decrement</button>
    
    		<button (click)="$ctrl.reset()">Reset Counter</button>
    	`
  }
  
  counter: Observable<number>;
  
  constructor(private store: Store<AppState>){
    this.counter = store.select("counter");
  }

  increment(){
    this.store.dispatch({ type: INCREMENT });
  }

  decrement(){
    this.store.dispatch({ type: DECREMENT });
  }

  reset(){
    this.store.dispatch({ type: RESET });
  }
})

Contributing

Submitting Pull Requests

Please follow these basic steps to simplify pull request reviews - if you don't you'll probably just be asked to anyway. Note that we're not willing to diverge from the original ngrx-store feature-set. This is only intended as a simple backport with no additional features.

  • Please rebase your branch against the current master
  • Run npm install to make sure your development dependencies are up-to-date
  • Please ensure the test suite passes before submitting a PR
  • If you've added new functionality, please include tests which validate its behaviour
  • Make reference to possible issues on PR comment

Submitting bug reports

  • Please detail the affected browser(s) and operating system(s)
  • Please be sure to state which version of node and npm you're using

License

This project is licensed under the terms of the European Public License (EUPL) open source license. You can find the complete terms in the LICENSE file.

Note that this project includes a copy of subset of the original ngrx-store codebase. Those remain bound to their original MIT license.