Giter Site home page Giter Site logo

Comments (8)

splincode avatar splincode commented on June 10, 2024 1
With the action aproach this is not a problem because you will dispatch actions, and you will not have the state as depency.

here I will not help you with anything, use native NGXS

But in general, if you were to use even regular services (rxjs statefull) instead of NGXS, this is a bad approach to have circular dependencies

from entity-state.

splincode avatar splincode commented on June 10, 2024

@AM4Apps Today, full attention is paid to the new project and plugin:
https://github.com/ngxs-labs/data/blob/master/docs/pages/entity.md

I'm not sure when work on the @ngxs-labs/entity-state plugin will continue

from entity-state.

amollahi avatar amollahi commented on June 10, 2024

I check the data plugin.

I guess it works like a data-service, so you need to subscribe yourself if you want to perform the "Action"(method call). ¿Right?

How it will look a FechAll method in the state like this:

public fetchAll(): Observable<any> {
    return this.apiService.fetchAll()
        .pipe(
            tap((array) => this.setEntitiesAll(array))
        );
}

And after you will need to subscribe in the component, ¿Right?

from entity-state.

splincode avatar splincode commented on June 10, 2024

yes

from entity-state.

amollahi avatar amollahi commented on June 10, 2024

There's one more thing, ¿how you deal in the ngxs-labs/data plugin with circular dependencies?

If i am not mistaken you should inject other states to call their methods or to join data from multiple states.

State A => Call State B method(Action)
State B => Call State A method(Action)

or

State A selector get data from State B
State B selector get data from State A

from entity-state.

splincode avatar splincode commented on June 10, 2024

please create stabcklitz example

from entity-state.

amollahi avatar amollahi commented on June 10, 2024

Whould be easier with a more specific model:

export interface IAuthorDTO {
    avatar?: string;
    bornDate?: Date;
    idLocation?: number;
    id?: number;
    name?: string;
}

export interface ILocationDTO {
    authorsIds?: number[];
    city?: string;
    country?: string;
    id?: number;
}

What i am trying is:

  • Fetch some of the Authors to AuthorState
    • if i don't have in the store the "Location"(idLocation) of an author call LocationState FechById
  • After Join Both States in a Selector to represent Author with the associated Locations

And the other way:

  • Fetch some of the Locations to LocationState
    • if i don't have in the store the "Author"(authorsIds[]) of a location call AuthorState FechById
  • After Join Both States in a Selector to represent Locations with the associated Authors

Result
So the dependencies should be like this:

  • AuthorState: should have LocationState and ApiAuthorService
  • LocationState : should have AuthorState and ApiLocationService

With the action aproach this is not a problem because you will dispatch actions, and you will not have the state as depency.

from entity-state.

amollahi avatar amollahi commented on June 10, 2024

Ok thanks, i thought that.

I was checking to work with normalized data with NGXS similar to this Akita Normalized Data

from entity-state.

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.