In this code, when i change the value of state in the setMessage() reducer to action.payload, the changes aren't getting picked up by the selectors.
import { createSlice } from '@reduxjs/toolkit'
const initialState = {
value: null,
type: null
}
export const messageSlice = createSlice({
name: 'message',
initialState: initialState,
reducers: {
setMessage: (state, action) => {
state = action.payload //not working
},
clearMessage: state => {
state = initialState //not working
}
}
})
but if i change the "value" or "type" field of the message state instead of changing the whole object, the selectors are able to pick up the changes and everything works fine:
import { createSlice } from '@reduxjs/toolkit'
const initialState = {
value: null,
type: null
}
export const messageSlice = createSlice({
name: 'message',
initialState: initialState,
reducers: {
setMessage: (state, action) => {
state.value = action.payload.value //works
state.type = action.payload.type //works
},
clearMessage: state => {
state.value = null //works
state.type = null //works
}
}
})