react-use-database
react-use-database copied to clipboard
React hooks for easy relational data management on the client
Can you add a related entity to your todo example? Like an Author or something similar. I can't understand how to manage cases like this. Thank you
**Problem**: Applications that load large amounts of data in a paginated manner could end up with large entity stores if no hard page refresh occurs. This is not necessarily a...
Right now, mergeEntities and updateStoredQuery trigger every component that useDB to rerender even if the update didn’t affect the data that the component cares about. Look into memoizing denormalize in...
mergeEntities could take an inspectionKey and createDB could take an inspector function that would except one arg {inspectionKey, prevState, patch, nextState}. this info could be logged every time entities were...