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

fluxie

v1.3.0

Published

Small helper class to easily implement Flux architecture using angular service, complete with redux devtool and caching support

Downloads

16

Readme

Fluxie

Super small helper class meant to greatly simplify the creation of a flux architecture using angular service, complete with redux devtool and caching support

Warning
Requires 2Kb of available space, make sure you have the space before installing !

Installation

The latest version supports signals, and thus requires a version of angular 16 minimum, other versions can use the lts release that removes signals support

npm i fluxie Angular 16+

npm i fluxie@lts Other Angular Versions

Syntax

The store.ts files is a base class that can be extended by services to add the necessary methods and properties required to handle a centralized state

interface UsersState {
  users: IUser[];
  selection: IUser[];
}

@Injectable({ providedIn: "root" })
export class UsersService extends Store<UsersState> {
  constructor() {
    super({ users: [], selection: [] }, { cache: true, storeName: "Users" });
  }
}

Parameters

  • initialState the initial state of the store

  • options (optional)

    • storeName name to use for the store
    • cache a boolean value, if true, enables the caching of the state via IndexedDB

Examples

users.service.ts

interface UsersState {
  users: IUser[];
  selection: IUser[];
}

@Injectable({ providedIn: "root" })
export class UsersService extends Store<UsersState> {
  constructor() {
    super({ users: [], selection: [] });
  }

  users = computed(() => {
    return this.store.select().users.map((user) => new User(user));
  });

  users$: Observable<User[]> = this.store.select$.pipe(
    map((state) => state.users),
    map((users) => users.map((user) => new User(user)))
  );

  get() {
    this.http.get<IUser[]>(`${URL}/users`).subscribe((users) => {
      this.setUsers(users);
    });
  }

  updateRole(id: string, role: RoleEnum) {
    this.http.patch<IUser>(`${URL}/users/${id}`, { role }).subscribe((user) => {
      this.updateUser(id, user);
    });
  }

  setUsers(users: IUser[]) {
    this.setState("set users", (state) => ({
      ...state,
      users,
    }));
  }

  updateUser(id: string, user: IUser) {
    this.setState("update user", (state) => {
      return {
        ...state,
        users: state.users.map((currentUser) =>
          currentUser.id === id ? user : currentUser
        ),
      };
    });
  }

  toggleUserSelection(user: IUser) {
    this.setState("toggle user selection", (state) => {
      const newSelection = state.selection;
      const index = newSelection.findIndex(({ id }) => id === user.id);

      if (index > -1) {
        newSelection.splice(index, 1);
      } else {
        newSelection.push(user);
      }

      return {
        ...state,
        selection: newSelection,
      };
    });
  }

  emptySelection() {
    this.setState("empty selection", (state) => ({
      ...state,
      selection: [],
    }));
  }
}

users.component.ts

@Component({
  selector: "oney-users",
  templateUrl: "./users.component.html",
  styleUrls: ["./users.component.scss"],
})
export class UsersComponent implements OnInit {
  protected usersService = inject(UsersService);

  constructor() {}

  ngOnInit(): void {
    this.usersService.get();
  }
}

Via Observables:

<article>
  @for (user of usersService.users$ | async) {
  <app-user [user]="user"></app-user>
  }
</article>

Via Signals:

<article>
  @for (user of usersService.users()) {
  <app-user [user]="user"></app-user>
  }
</article>

Note: You are free to organize this however you want, although the recommended organization would be to split your service file into 3 files:

  • users.service.ts makes http calls, and is overall the file your application calls to request state changes

    • in the example above, this would contain get and updateRole
  • users.query.ts contains all of the variations of the filtered state used throughout the application

    • in the example above, this would contain users and users$
  • users.store.ts the file that is only called by users.service.ts and users.query.ts, this is the file that contains the store initialization code, the state typing, and every method that directly alters the state

    • in the example above, this would contain setUsers, updateUser, toggleUserSelection and emptySelection

Devtool support

In order to add devtool support add this snippet to your app.module.ts, right after your imports:

if (!environment.production) {
  enableReduxDevtools();
}

Your redux devtool menu will now show all your store actions, the option storeName will be the store instance name there (defaults to the class name if not provided), and every service extending the Store class will be its own instance in the dropdown at the top.