redux-crud
redux-crud copied to clipboard
A set of standard actions and reducers for Redux CRUD Applications
We are looking for a new mantainer for this library. Would you be keen to do it? Ideally someone who uses this library in their app and has contributed code...
This will cause the store merge to patch an existing record using ramda's `mergeDeepRight` This addresses #34. Add tests to 'success.test.ts' and 'reducersFor.test.ts' for both list and map (I think...
Re: updateStart and updateSuccess. The API says the updated records are 'merged with the current state'. I took this to mean that the results of the update operation are merged...
First of, love the library. Thank you for releasing it :). It would be great if we could do version tags so we know what version the documentation applies to.
I'm using `https://github.com/paularmstrong/normalizr` to normalize my data. However, after that I have to transform the result into array with `Object.values(normalizedData)` in other to use *_FETCH_SUCCESS action. Can we make the...
Im having trouble understanding how I can create an object and have my server assign the primary key. The createStart method needs an object and that object needs to have...
Hey, This is probably a bit of a strange request but while working on my last PR on this project a few things triggered my OCD. For example: - `var`...
Hi, It's currently impossible to use an array of data with createSuccess() or updateSuccess(). I would like to do this: `createSuccess(data)` with data as an array. Same for updateSuccess(). I...
Hi, In my case I would like to just fetch a single record like what we are using RESTful API like `GET /users/1`. How should I do if I want...