init commit,

This commit is contained in:
louiscklaw
2025-05-28 09:55:51 +08:00
commit efe70ceb69
8042 changed files with 951668 additions and 0 deletions

View File

@@ -0,0 +1,85 @@
import { useSetState } from 'minimal-shared/hooks';
import { useMemo, useEffect, useCallback } from 'react';
import axios from 'src/lib/axios';
import { supabase } from 'src/lib/supabase';
import { AuthContext } from '../auth-context';
import type { AuthState } from '../../types';
// ----------------------------------------------------------------------
/**
* NOTE:
* We only build demo at basic level.
* Customer will need to do some extra handling yourself if you want to extend the logic and other features...
*/
type Props = {
children: React.ReactNode;
};
export function AuthProvider({ children }: Props) {
const { state, setState } = useSetState<AuthState>({ user: null, loading: true });
const checkUserSession = useCallback(async () => {
try {
const {
data: { session },
error,
} = await supabase.auth.getSession();
if (error) {
setState({ user: null, loading: false });
console.error(error);
throw error;
}
if (session) {
const accessToken = session?.access_token;
setState({ user: { ...session, ...session?.user }, loading: false });
axios.defaults.headers.common.Authorization = `Bearer ${accessToken}`;
} else {
setState({ user: null, loading: false });
delete axios.defaults.headers.common.Authorization;
}
} catch (error) {
console.error(error);
setState({ user: null, loading: false });
}
}, [setState]);
useEffect(() => {
checkUserSession();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
// ----------------------------------------------------------------------
const checkAuthenticated = state.user ? 'authenticated' : 'unauthenticated';
const status = state.loading ? 'loading' : checkAuthenticated;
const memoizedValue = useMemo(
() => ({
user: state.user
? {
...state.user,
id: state.user?.id,
accessToken: state.user?.access_token,
displayName: state.user?.user_metadata.display_name,
role: state.user?.role ?? 'admin',
}
: null,
checkUserSession,
loading: status === 'loading',
authenticated: status === 'authenticated',
unauthenticated: status === 'unauthenticated',
}),
[checkUserSession, state.user, status]
);
return <AuthContext value={memoizedValue}>{children}</AuthContext>;
}