From 7103019890960e793deefb64987a09b33be60b42 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Fri, 17 May 2024 15:20:30 -0700 Subject: Add golang server --- client/src/features/auth/authSlice.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 client/src/features/auth/authSlice.ts (limited to 'client/src/features/auth/authSlice.ts') diff --git a/client/src/features/auth/authSlice.ts b/client/src/features/auth/authSlice.ts new file mode 100644 index 0000000..bff2bdd --- /dev/null +++ b/client/src/features/auth/authSlice.ts @@ -0,0 +1,26 @@ +import { createSlice } from '@reduxjs/toolkit'; +import type { RootState } from '../../store'; +import type { Guest } from '../../apiSlice'; + +type AuthState = { + guest?: Guest; + token?: string; +}; + +const authSlice = createSlice({ + name: 'auth', + initialState: { guest: undefined, token: undefined } as AuthState, + reducers: { + setCredentials: (state, action) => { + const { guest, token } = action.payload; + state.guest = guest; + state.token = token; + }, + }, +}); + +export const { setCredentials } = authSlice.actions; + +export default authSlice.reducer; + +export const selectCurrentGuest = (state: RootState) => state.auth.guest; -- cgit v1.2.3