- Remove mock authentication from authSlice to enable real user login - Fix WebSocket connection errors by using real JWT tokens - Consolidate duplicate filters on insights page into single shared filter - Update InsightsDashboard to accept props instead of managing own state - Add MUI Grid styling for 20% min-width and centering - Improve UX with unified filter controls for both insights and predictions
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
import type { RootState } from '../store';
|
|
|
|
export interface User {
|
|
id: string;
|
|
email: string;
|
|
name: string;
|
|
familyId: string;
|
|
}
|
|
|
|
export interface AuthState {
|
|
user: User | null;
|
|
token: string | null;
|
|
isAuthenticated: boolean;
|
|
loading: boolean;
|
|
}
|
|
|
|
const initialState: AuthState = {
|
|
user: null,
|
|
token: null,
|
|
isAuthenticated: false,
|
|
loading: false,
|
|
};
|
|
|
|
const authSlice = createSlice({
|
|
name: 'auth',
|
|
initialState,
|
|
reducers: {
|
|
setUser: (state, action: PayloadAction<User>) => {
|
|
state.user = action.payload;
|
|
state.isAuthenticated = true;
|
|
},
|
|
setToken: (state, action: PayloadAction<string>) => {
|
|
state.token = action.payload;
|
|
},
|
|
setAuth: (state, action: PayloadAction<{ user: User; token: string }>) => {
|
|
state.user = action.payload.user;
|
|
state.token = action.payload.token;
|
|
state.isAuthenticated = true;
|
|
},
|
|
logout: (state) => {
|
|
state.user = null;
|
|
state.token = null;
|
|
state.isAuthenticated = false;
|
|
},
|
|
setLoading: (state, action: PayloadAction<boolean>) => {
|
|
state.loading = action.payload;
|
|
},
|
|
},
|
|
});
|
|
|
|
export const { setUser, setToken, setAuth, logout, setLoading } = authSlice.actions;
|
|
|
|
// Selectors
|
|
export const selectUser = (state: RootState) => state.auth?.user;
|
|
export const selectToken = (state: RootState) => state.auth?.token;
|
|
export const selectIsAuthenticated = (state: RootState) => state.auth?.isAuthenticated ?? false;
|
|
export const selectAuthLoading = (state: RootState) => state.auth?.loading ?? false;
|
|
export const selectFamilyId = (state: RootState) => state.auth?.user?.familyId;
|
|
|
|
export default authSlice.reducer;
|