-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forked project/merging back changes #1
Comments
So cool! This is by far done, I may even have some additional commits on my computer, that I haven't pushed. The editing component is a super cool idea! If you feel like contributing here too, that's very welcome, I think we need to establish some kind of roadmap though. Just so we're moving in the same direction within the same vision. |
Yeah, there were some significant improvements that I hadn't pushed. Pretty cool response caching implemented. |
So I think there are two considerable API differences between our implementations:
Apart from that there are some feature differences which I think the other implementation would benefit from too: editable implementation
reduxJsonApi implementation
I'm also thinking about other features which I want to add and which might also be interesting for this library:
|
I think in general there should be a consistent nomenclature: data OR resources OR entities – I think "entity" is a purely Drupal thing in this context so maybe it would be best to just use resources (f.x. as argument for the children function in |
That is an interesting implementation. I'm curious, is the application ready to be rendered at all, when the store hasn't been created yet? In your case, for instance.
I still think this is a great idea 🙂
I assume this is some kind of reload function? I.e. load from original endpoint again. I implemented links yesterday to allow easy navigation between pages of data. Next up would be "refetch", both of current endpoint and original endpoint (since paginating behind the scenes change the endpoint, thus result set).
Something I thought of as late as this morning. This would be great!
Absolutely. I've been giving this some thoughts too, as this is a requirement to do SSR. Need some way of bootstrapping data across
Agree.
In terms of json:api, they're called resources, so I think that's the only valid name to use. |
The store is already initialized. The
So I would image the query strings to just be a Regarding SSR, there are two ways to go about this AFAIK:
Me, I would prefer the second one but. Would we use a pre-hydrated Okay, resources it is 👍 |
Right, but your In any regard, I think checking for an axios config is a bit of an anti-pattern to determine if redux-json-api is set up. But I may be misunderstanding something 🙂
Gotcha. Yeah, I imagine implementing Regarding links, I've pushed some updated to the example repo, where I've implemented
I definitely prefer a global store. The reason being that don't have to carry data down your React tree to the correct component. It can also easily instil healthy design pattern in users' applications, because they don't have to invent their own conventions of storing this initial data.
Something like this 🙂 |
True. 😜 But actually I think that is a problem with my implementation. The
I just saw you pushed this functionality – The currently active
So we can already hydrate the store with resources. We just need to provide a cache which maps endpoints to resource |
Yeah, they are cached if caching is enabled.
Actually not. That's a good catch, we probably want to clear the entire cache. At least optionally.
This is already possible through the |
Hello @egeriis
I forked and customised this code for this framework I'm building. In addition I've also implemented a component for editing JSON:API data. (https://github.com/1xINTERNET/drupal-editable/tree/master/packages/core/src/components)
I'm not sure if my use case is too specific to be able to merge back any changes into this repo. But I think especially the editing component might be of interest for this project.
The text was updated successfully, but these errors were encountered: