Skip to content

Commit

Permalink
chore: update auth callback messages
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Apr 9, 2024
1 parent 6028838 commit 58ae321
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 35 deletions.
2 changes: 1 addition & 1 deletion web/src/components/CreateIdentityProviderDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const CreateIdentityProviderDialog: React.FC<Props> = (props: Props) => {
return (
<>
<div className="dialog-header-container">
<p className="title-text ml-auto">{t(isCreating ? "setting.sso-section.create-sso" : "setting.sso-section.update-sso")}</p>
<p>{t(isCreating ? "setting.sso-section.create-sso" : "setting.sso-section.update-sso")}</p>
<IconButton size="sm" onClick={handleCloseBtnClick}>
<Icon.X className="w-5 h-auto" />
</IconButton>
Expand Down
5 changes: 3 additions & 2 deletions web/src/components/HomeSidebar/TagsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ const TagsSection = () => {
))}
</div>
) : (
<div>
<p className="text-sm leading-snug italic text-gray-400 dark:text-gray-500">
<div className="p-2 border rounded-md flex flex-row justify-start items-start gap-1 text-gray-400 dark:text-gray-500">
<Icon.ThumbsUp />
<p className="mt-0.5 text-sm leading-snug italic">
You can create tags by inputting <code>`#tag`</code>.
</p>
</div>
Expand Down
74 changes: 42 additions & 32 deletions web/src/pages/AuthCallback.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { last } from "lodash-es";
import { ClientError } from "nice-grpc-web";
import { useEffect, useState } from "react";
import { toast } from "react-hot-toast";
import { useSearchParams } from "react-router-dom";
Expand Down Expand Up @@ -28,46 +29,55 @@ const AuthCallback = () => {
const code = searchParams.get("code");
const state = searchParams.get("state");

if (code && state) {
const redirectUri = absolutifyLink("/auth/callback");
const identityProviderId = Number(last(state.split("-")));
if (identityProviderId) {
authServiceClient
.signInWithSSO({
idpId: identityProviderId,
code,
redirectUri,
})
.then(async ({ user }) => {
setState({
loading: false,
errorMessage: "",
});
if (user) {
await userStore.fetchCurrentUser();
navigateTo("/");
} else {
toast.error(t("message.login-failed"));
}
})
.catch((error: any) => {
console.error(error);
setState({
loading: false,
errorMessage: JSON.stringify(error.response.data, null, 2),
});
});
}
} else {
if (!code || !state) {
setState({
loading: false,
errorMessage: "Failed to authorize. Invalid state passed to the auth callback.",
});
return;
}

const identityProviderId = Number(last(state.split("-")));
if (!identityProviderId) {
setState({
loading: false,
errorMessage: "No identity provider ID found in the state parameter.",
});
return;
}

const redirectUri = absolutifyLink("/auth/callback");
(async () => {
try {
const { user } = await authServiceClient.signInWithSSO({
idpId: identityProviderId,
code,
redirectUri,
});

setState({
loading: false,
errorMessage: "",
});
if (!user) {
toast.error(t("message.login-failed"));
return;
}

await userStore.fetchCurrentUser();
navigateTo("/");
} catch (error: any) {
console.error(error);
setState({
loading: false,
errorMessage: (error as ClientError).details,
});
}
})();
}, [searchParams]);

return (
<div className="p-4 w-full h-full flex justify-center items-center">
<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" />
) : (
Expand Down

0 comments on commit 58ae321

Please sign in to comment.