mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-21 06:13:33 +00:00
81 lines
2.0 KiB
TypeScript
81 lines
2.0 KiB
TypeScript
import { ClientError } from "nice-grpc-web";
|
|
import { useEffect, useState } from "react";
|
|
import { useSearchParams } from "react-router-dom";
|
|
import Icon from "@/components/Icon";
|
|
import { authServiceClient } from "@/grpcweb";
|
|
import { absolutifyLink } from "@/helpers/utils";
|
|
import useNavigateTo from "@/hooks/useNavigateTo";
|
|
import { useUserStore } from "@/stores";
|
|
|
|
interface State {
|
|
loading: boolean;
|
|
errorMessage: string;
|
|
}
|
|
|
|
const AuthCallback = () => {
|
|
const navigateTo = useNavigateTo();
|
|
const [searchParams] = useSearchParams();
|
|
const userStore = useUserStore();
|
|
const [state, setState] = useState<State>({
|
|
loading: true,
|
|
errorMessage: "",
|
|
});
|
|
|
|
useEffect(() => {
|
|
const code = searchParams.get("code");
|
|
const state = searchParams.get("state");
|
|
|
|
if (!code || !state) {
|
|
setState({
|
|
loading: false,
|
|
errorMessage: "Failed to authorize. Invalid state passed to the auth callback.",
|
|
});
|
|
return;
|
|
}
|
|
|
|
const idpId = state;
|
|
if (!idpId) {
|
|
setState({
|
|
loading: false,
|
|
errorMessage: "No identity provider found in the state parameter.",
|
|
});
|
|
return;
|
|
}
|
|
|
|
const redirectUri = absolutifyLink("/auth/callback");
|
|
(async () => {
|
|
try {
|
|
await authServiceClient.signInWithSSO({
|
|
idpId,
|
|
code,
|
|
redirectUri,
|
|
});
|
|
setState({
|
|
loading: false,
|
|
errorMessage: "",
|
|
});
|
|
await userStore.fetchCurrentUser();
|
|
navigateTo("/");
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
setState({
|
|
loading: false,
|
|
errorMessage: (error as ClientError).details,
|
|
});
|
|
}
|
|
})();
|
|
}, [searchParams]);
|
|
|
|
return (
|
|
<div className="p-4 py-24 w-full h-full flex justify-center items-center">
|
|
{state.loading ? (
|
|
<Icon.Loader className="animate-spin dark:text-gray-200" />
|
|
) : (
|
|
<div className="max-w-lg font-mono whitespace-pre-wrap opacity-80">{state.errorMessage}</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AuthCallback;
|