-
Notifications
You must be signed in to change notification settings - Fork 42
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
Support for Optimistic Updates (feature request) #20
Comments
The Optimistc UI is something of sophisticated piece of technology. I think would be hard to accomplish with a standard implementation because it depends on specific state the client is, so you can implement it maually for now. Example: creating a realtime chat, you should be able to send a message to another user and immediately see your message in the Those mechanisms requires specific UI updates, and without a correct implementation it may result in an inconsistent UI state. However in the documentation of feathers they said:
But I think that an implementation of standard mechanisms should be cool to have :D |
Noted. I am doing manually too for now for some update. |
I also noticed that |
Currently, updates to store state which is a client representation of a service is performed by calling 'onCreated', 'onUpdated', 'onRemoved' functions once the service call is successful.
Do you plan to implement optimistic update where the state is immediately updated assuming service call would be successful, and revert the update if the service call was not successful. Something like in Meteor or redux-optimistic-ui.
The text was updated successfully, but these errors were encountered: