-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Refactor IDE reducer & actions using Redux Toolkit #2204
base: develop
Are you sure you want to change the base?
Conversation
Realized I made a mistake on this. I assumed that the actions of each reducer are independent but they are not. Multiple reducers respond to |
This has been fixed using |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the old redux way was more convenient/concise to read as compared to Redux toolkit, maybe i like that way better.
Thanks for working on this! I can see how the current version of Redux we're using can feel easier to read and less abstract, but I do appreciate the simplicity that the Another thing that I noticed happening for me is that this error appears after toggling a few actions. Is this tied to the warning you're mentioning? |
Sure. I'm definitely down to clean up more. I was trying to limit the scope of the PR so I kept the structure of the Redux state identical, even in places where I think it can be improved. Also we can put the TODOs into a checklist somewhere. It was easiest for the to take note of things as I was writing the code.
I'll have to take a look and see what the non-serializable value is. Like if it's in the action or the state and which action it's from. It's possible that I made a mistake in this PR but also possible that the problematic code existed before. The error gets thrown by Redux Toolkit's p5.js-web-editor/client/store.js Lines 27 to 29 in 7e069ee
I had to disable the immutableCheck check middleware because we don't pass the check, as explained in #2186.
Edit: ok so I saw the warning coming from the
We can change the
It's not an issue in the current code because the action creator which we created manually will ignore any arguments. p5.js-web-editor/client/modules/IDE/actions/ide.js Lines 94 to 98 in 7e069ee
But the action creators that are generated automatically by Redux Toolkit will always pass the argument as the |
Builds upon #2187 and should be merged after.
Associated issue #2042
Explanation:
The Redux Toolkit
createSlice
function is the modern way to write Redux code, and it offers a lot of advantages over the older approach which is used in this app. You only need to define the reducer in one place instead of three, as the action type constants and action creator functions are generated automatically. This makes the code easier to maintain and it takes a lot less lines (-120 in actions, -43 in constants, +32 in reducer = -131 net).I am a bit bummed that the action creators don't have good intellisense support, as seen here:

Redux Toolkit is designed to be used with TypeScript and in a pure JS environment it doesn't infer the types properly. The above functions should be
ActionCreatorWithoutPayload
and require no arguments. But it gets inferred as requiring a payload and shows a false warning in the IDE.Changes:
createSlice
.actions/ide.js
file.showShareModal
toshowShareModalInternal
to support this)constants.js
I wanted to keep the scope of this PR limited so I only changed the internals of the reducer/actions. All of the exported actions are the same and the structure of the state is the same. I put in a bunch of
// TODO
comments with things that I think should be changed. These can be tackled in future PRs.I have verified that this pull request:
npm run lint
)npm run test
)develop
branch.Fixes #123