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: builder.addCaseuserLoggedOut... === builder.addCase(userLoggedOut...) is in extraReducers because userLoggedOut is an action defined outside the slice. reducers is for this slice's own action creators; extraReducers is the designed place to respond to actions created elsewhere (including createAsyncThunk lifecycle actions). Why use extraReducers (short list): * Correct intent: it expresses “react to an external action” instead of creating a new action for this slice. * Avoids circular imports: the auth slice can export userLoggedOut and other slices can consume it without exporting their own action creators back. * Works with thunks/auto-generated actions: createAsyncThunk produces pending/fulfilled/rejected — these belong in extraReducers. * Type-safe and clear: builder.addCase(userLoggedOut, ...) keeps TypeScript inference and intent clear. Examples: Preferred (extraReducers / builder): <syntaxhighlight lang="ts">import { userLoggedOut } from '@/features/auth/authSlice' const postsSlice = createSlice({ name: 'posts', initialState, reducers: { /'' local actions ''/ }, extraReducers: builder => { builder.addCase(userLoggedOut, () => initialState) } }) </syntaxhighlight> Alternate (string key — less idiomatic): <syntaxhighlight lang="ts">extraReducers: { [userLoggedOut.type]: () => initialState } </syntaxhighlight> Putting this handler inside reducers would attempt to make it a local action creator (wrong ownership), and leads to coupling or awkward workarounds. Use extraReducers for external actions.
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)