Code Monkey home page Code Monkey logo

Comments (2)

DanWahlin avatar DanWahlin commented on September 1, 2024

I'm not clear on the first part of the question so let me walk through a scenario and see if that helps. Observable Store sends out change notifications made by a given service. So, if your UserPermission service changes something with setState(), any subscribers hooked to userPermissionService.stateChanged would get those changes. They wouldn't get changes made to the store through CustomersService unless they called customersService.stateChanged on it and subscribed. In sum, each service that extends Observable Service only sends out changes made by that particular service.

If you want to get changes made to the store by any service you can use the myServiceName.globalStateChanged option.

To know if a specific property changed such as userSettings, use the stateWithPropertyChanges option instead of stateChanged (https://github.com/danwahlin/observable-store#store-api). Here's an example:

this.userPermissionsService.stateWithPropertyChanges.subscribe(stateWithProps => {
    if (stateWithProps && stateWithProps.stateChanges.userSettings) {
      // Do something since the userSettings property changed
    }
});

Doing that works well when you only want to run some code when a specific property changes.

As a heads-up, the latest version has a new function called getStateProperty() (see the link above for more details). Instead of retrieving (and cloning) the entire store as with getState(), it'll let you pick a specific property from the store:

// Somewhere in a service
this.getStateProperty<YourPropertyType>('userSettings');

I'm going to go ahead and close this since it isn't an issue. But, the comment functionality will continue to work.

from observable-store.

Godrules500 avatar Godrules500 commented on September 1, 2024

Thanks Dan! Sorry for the confusion on the question, but you definitely answered all of the questions I had.

Thanks!

from observable-store.

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.