Code Monkey home page Code Monkey logo

Comments (6)

yury-dymov avatar yury-dymov commented on July 24, 2024 1

Thank you for your contribution and kind words :)

from redux-object.

yury-dymov avatar yury-dymov commented on July 24, 2024

Hey @JakeDluhy,

it is supposed to normalize data first before saving in store. Have a look at https://github.com/yury-dymov/json-api-normalizer

from redux-object.

JakeDluhy avatar JakeDluhy commented on July 24, 2024

Right, I'm using the json-api-normalizer. I misrepresented what my store looks like. I suppose it's more like

{
    users: {
        '1': {
            id: '1',
            attributes: {},
            relationships: {
                books: {
                    data: {
                        [{
                            id: '1',
                            type: 'books'
                        }, {
                            id: '2',
                            type: 'books'
                        }]
                    }
                }
            }
        }
    },
    books: {}
}

My point is that if I've just made a request like GET /users/1, not GET /users/1?include=books then I won't have any books loaded into the store. Which means that when I do user.books it's going to return [null, null] (because it's trying to find the related resource and is unable to do so). I think that if it can't find the related resource, it should fall back to providing the relationship object, i.e.

console.log(user.books);
// output
[{
    id: '1',
    type: 'books'
}, {
    id: '2',
    type: 'books'
}]

from redux-object.

JakeDluhy avatar JakeDluhy commented on July 24, 2024

Here's the diff of my changes: JakeDluhy@aa76ec0, to help you understand what I'm talking about

from redux-object.

yury-dymov avatar yury-dymov commented on July 24, 2024

oh, now I see. Yeah, feel free to submit PR, I am happy to merge it

from redux-object.

JakeDluhy avatar JakeDluhy commented on July 24, 2024

Thanks! Btw, I'm loving this library (and json-api-normalizer). It's really cleaning up our implementation of JSON API!

from redux-object.

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.