Code Monkey home page Code Monkey logo

Comments (2)

ben-hastings avatar ben-hastings commented on September 29, 2024 1

That does, thanks a lot!

from ngrx-entity-relationship.

satanTime avatar satanTime commented on September 29, 2024

Hi @ben-hastings,

thanks for the question.

Your investigation is right. Every selector requires a parameter which provides an id or an array of them.
The idea behind this is that a cache can contain a union of 2 lists.
For example, public projects and my projects. Both of them are cached under projects, but we wouldn't want to display someone's public project in my projects.

Nevertheless, it doesn't stop us from providing a selector of all ids, because root selectors accept as the parameter not only ids, but a selector which returns them.

Therefore we need a selector which gets all ids.

const allUserIds = createSelector(selectCompanyState, state => state.ids);

And later in code, we can select all users like that.

const allUsers$ = this.store.select(selectUsers, allUserIds);

Profit.

If you still want to have a single selector without using parameters, then you could follow this guide: https://ngrx-entity-relationship.sudo.eu/extra/usage-with-createselector, and do something like that:

export const selectAllUsers = createSelector(
  // selecting the whole store
  s => s,
  // selecting ids
  allUserIds,
  // selecting all users with desired relationships
  selectUsers,
);

store.select(selectAllUsers).subscribe(users => {
  // profit
});

I hope this helps, feel free to ask any further questions.

from ngrx-entity-relationship.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.