Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/694590c5-f52c-800f-9af6-d10143a2d812
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Assistant: Because reducers match on the exact action type string. === Because reducers match on the exact action <code>type</code> string. Two different things can make the same type show up: # Importing the same action creator into another slice and registering it there: <syntaxhighlight lang="ts">// authSlice.ts export const userLoggedOut = createAction('auth/userLoggedOut') // postsSlice.ts import { userLoggedOut } from '@/features/auth/authSlice' extraReducers: builder => { builder.addCase(userLoggedOut, () => initialPostsState) // runs when auth/userLoggedOut is dispatched } </syntaxhighlight> Here postsSlice handles auth/userLoggedOut because it explicitly registered that exact action (via the imported userLoggedOut). # Using a different action creator/string (e.g. 'posts/userLoggedOut') will not run for 'auth/userLoggedOut': <syntaxhighlight lang="ts">// postsSlice.ts builder.addCase('posts/userLoggedOut', () => { /'' won't run for auth/userLoggedOut ''/ }) </syntaxhighlight> So: if you see postsSlice reacting to logout, itβs because the slice code registered a handler for the same action type (auth/userLoggedOut) β usually by importing the userLoggedOut action creator from the auth slice. If it registered posts/userLoggedOut instead, that handler would never run when you dispatch(userLoggedOut()).
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)