1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| import { createSlice } from '@reduxjs/toolkit';
|
| const initialState = {
| user: null,
| isAuthenticated: false,
| loading: false,
| error: null,
| };
|
| const authSlice = createSlice({
| name: 'auth',
| initialState,
| reducers: {
| loginStart: (state) => {
| state.loading = true;
| state.error = null;
| },
| loginSuccess: (state, action) => {
| state.loading = false;
| state.isAuthenticated = true;
| state.user = action.payload;
| state.error = null;
| },
| loginFailure: (state, action) => {
| state.loading = false;
| state.error = action.payload;
| },
| logout: (state) => {
| state.user = null;
| state.isAuthenticated = false;
| state.error = null;
| },
| },
| });
|
| export const { loginStart, loginSuccess, loginFailure, logout } = authSlice.actions;
| export default authSlice.reducer;
|
|