-
Hi Eric,
I'm also looking for new ways to optimise the structure of my sagas / App.
It sounds interesting, but I didn't quite get which problem it solves and how. Could you please help me out a …
-
* https://libraryregistry.librarysimplified.org/libraries
* http://libraries.aldiko.com/home.json
-
In the JS-land Redux, one of the convenient things is having various patterns that allow you to dispatch actions based on actions dispatched. e.g thunks and more complex concepts like rx , sagas, epic…
-
Unfortunately Saga created on the contentScript's Store proxy side does not work - it won't receive any actions:
```
import {Store, applyMiddleware} from 'webext-redux';
import createSagaMiddlewa…
-
I'm testing URL interaction using `push` from the react-router package. Having the same 2 objects serialized in console, I have no idea what's the difference between them.
Output:
![Screenshot fro…
-
### actions.ts
```ts
import actionCreatorFactory from "typescript-fsa";
import { Image } from "services/api/models";
const actionCreator = actionCreatorFactory();
export const getImages =…
-
### I would like to submit an example of how to use redux-form with redux-saga
I was reading one of the issues on how to use redux-saga with redux-form:
https://github.com/erikras/redux-form/iss…
-
-From Neelanjan
1. Please implement Redux for state management and write unit test cases for your reducers.
2. Identify all async operations and write Sagas for them.
3. Write unit test cases for…
-
## UI
- [x] Show/Hide Modal
- [x] Changeable Signin/Signup contents
- [x] Singin/Singup Buttons (facebook/google)
- [x] Show name, profile picture on `AppHeader`
- [x] Logout when clicks 'log ou…
-
I want to test the following saga:
```
function* fetchCustomerById({ id }) {
try {
const fetchedCustomer = yield call(rest.getCustomerById, id);
if (fetchedCustomer) {
yield pu…