react-redux-realworld-example-app icon indicating copy to clipboard operation
react-redux-realworld-example-app copied to clipboard

Exemplary real world application built with React + Redux

Results 87 react-redux-realworld-example-app issues
Sort by recently updated
recently updated
newest added

Should be nice to see how the server-side rendering is handled

Solved the "Unhandled rejection" on "hearting" an article when not logged in.

https://github.com/gothinkster/react-redux-realworld-example-app/blob/cde269d554ac2f1f298c56dbeff1fbd12ee08b92/src/middleware.js#L14 https://github.com/gothinkster/react-redux-realworld-example-app/blob/cde269d554ac2f1f298c56dbeff1fbd12ee08b92/src/middleware.js#L20 https://github.com/gothinkster/react-redux-realworld-example-app/blob/cde269d554ac2f1f298c56dbeff1fbd12ee08b92/src/middleware.js#L30 - `viewChangeCounter` belong to state.common https://github.com/gothinkster/react-redux-realworld-example-app/blob/cde269d554ac2f1f298c56dbeff1fbd12ee08b92/src/reducers/common.js#L23 so to get `viewChangeCounter`, you must through `state.common` - `store.getState().viewChangeCounter;` should be `store.getState().common.viewChangeCounter;` - `currentState.viewChangeCounter` should be `currentState.common.viewChangeCounter`

When network connection is poor ```js action.payload = error.response.body; ``` throws error cannot read property body of undefined https://github.com/gothinkster/react-redux-realworld-example-app/blob/master/src/middleware.js#L35

I am all of a sudden getting this error instead of being signed in... `warning.js:33 conduit.productionready.io/api/users Failed to load resource: the server responded with a status of 422 (Unprocessable Entity)...

Hello, I tried creating an account per the Cypres youtube tutorial: https://www.youtube.com/watch?v=VkNXyq0Z540&list=PLzDWIPKHyNmK9NX9_ng2IdrkEr8L4WwB0&index=3 I tried creating account, logging out, and logging back in. Got the "email or password is invalid" error....

- update packages versions - add package-lock.json - move to connected-react-router from react-router-redux