import { createSlice, PayloadAction } from '@reduxjs/toolkit'; interface TempState { pendingBrowserUrl: string | null; pendingFocusAgentId: string | null; lastDashboardId: string | null; } const initialState: TempState = { pendingBrowserUrl: null, pendingFocusAgentId: null, lastDashboardId: null, }; const tempStateSlice = createSlice({ name: 'tempState', initialState, reducers: { setPendingBrowserUrl(state, action: PayloadAction) { state.pendingBrowserUrl = action.payload; }, clearPendingBrowserUrl(state) { state.pendingBrowserUrl = null; }, setLastDashboardId(state, action: PayloadAction) { state.lastDashboardId = action.payload; }, setPendingFocusAgentId(state, action: PayloadAction) { state.pendingFocusAgentId = action.payload; }, clearPendingFocusAgentId(state) { state.pendingFocusAgentId = null; }, }, }); export const { setPendingBrowserUrl, clearPendingBrowserUrl, setLastDashboardId, setPendingFocusAgentId, clearPendingFocusAgentId, } = tempStateSlice.actions; export default tempStateSlice.reducer;