Skip to content

Commit

Permalink
fix: switch to use useAuthenticate to determine stage instead of call…
Browse files Browse the repository at this point in the history
…back
  • Loading branch information
RobChangCA committed Sep 19, 2024
1 parent ceaaa06 commit d546538
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 37 deletions.
5 changes: 0 additions & 5 deletions account-kit/react/src/components/auth/card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { Footer } from "../sections/Footer.js";

export type AuthCardProps = {
className?: string;
handleAuthSuccess?: () => void;
};

/**
Expand Down Expand Up @@ -47,11 +46,9 @@ export const AuthCard = (props: AuthCardProps) => {
// eslint-disable-next-line jsdoc/require-jsdoc
export const AuthCardContent = ({
className,
handleAuthSuccess,
showClose = false,
}: {
className?: string;
handleAuthSuccess?: () => void;
showClose?: boolean;
}) => {
const { closeAuthModal } = useAuthModal();
Expand Down Expand Up @@ -106,7 +103,6 @@ export const AuthCardContent = ({
didGoBack.current = false;

closeAuthModal();
handleAuthSuccess?.();
onAuthSuccess?.();
} else if (authStep.type !== "initial") {
didGoBack.current = false;
Expand All @@ -125,7 +121,6 @@ export const AuthCardContent = ({
isAuthenticating,
setAuthStep,
onAuthSuccess,
handleAuthSuccess,
closeAuthModal,
]);

Expand Down
12 changes: 12 additions & 0 deletions account-kit/react/src/components/auth/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
import type { Connector } from "@wagmi/core";
import { createContext, useContext } from "react";

export type AuthstepType =
| "email_verify"
| "passkey_verify"
| "passkey_create"
| "passkey_create_success"
| "email_completing"
| "complete"
| "eoa_connect"
| "wallet_connect"
| "pick_eoa"
| "initial";

export type AuthStep =
| { type: "email_verify"; email: string }
| { type: "passkey_verify"; error?: Error }
Expand Down
7 changes: 2 additions & 5 deletions account-kit/react/src/components/auth/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@ import { useAuthModal } from "../../hooks/useAuthModal.js";
import { Dialog } from "../dialog/dialog.js";
import { useUiConfig } from "../../hooks/useUiConfig.js";

type AuthModalProps = {
handleAuthSuccess?: () => void;
};
export const AuthModal = ({ handleAuthSuccess }: AuthModalProps) => {
export const AuthModal = () => {
const { modalBaseClassName } = useUiConfig();
const { isOpen, closeAuthModal } = useAuthModal();

return (
<Dialog isOpen={isOpen} onClose={closeAuthModal}>
<div className={`modal md:w-[368px] ${modalBaseClassName ?? ""}`}>
<AuthCardContent handleAuthSuccess={handleAuthSuccess} showClose />
<AuthCardContent showClose />
</div>
</Dialog>
);
Expand Down
10 changes: 10 additions & 0 deletions account-kit/react/src/hooks/useAuthenticate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import {
import { useAlchemyAccountContext } from "../context.js";
import type { BaseHookMutationArgs } from "../types.js";
import { useSigner } from "./useSigner.js";
import {
useAuthContext,
type AuthstepType,
} from "../components/auth/context.js";

export type UseAuthenticateMutationArgs = BaseHookMutationArgs<
User,
Expand All @@ -21,6 +25,7 @@ export type UseAuthenticateResult = {
authenticateAsync: UseMutateAsyncFunction<User, Error, AuthParams, unknown>;
isPending: boolean;
error: Error | null;
stage: AuthstepType;
};

/**
Expand Down Expand Up @@ -48,6 +53,10 @@ export function useAuthenticate(
const { queryClient } = useAlchemyAccountContext();
const signer = useSigner();

const {
authStep: { type: stage },
} = useAuthContext();

const {
mutate: authenticate,
mutateAsync: authenticateAsync,
Expand All @@ -72,5 +81,6 @@ export function useAuthenticate(
authenticateAsync: authenticateAsync,
isPending,
error,
stage,
};
}
6 changes: 2 additions & 4 deletions examples/ui-demo/src/app/state.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export type Config = {
showExternalWallets: boolean;
showPasskey: boolean;
addPasskey: boolean;
isAuthComplete: boolean;
};
ui: {
theme: "light" | "dark";
Expand Down Expand Up @@ -62,7 +61,6 @@ export const DEFAULT_CONFIG: Config = {
showExternalWallets: false,
showPasskey: true,
addPasskey: true,
isAuthComplete: false,
},
ui: {
theme: "light",
Expand Down Expand Up @@ -91,7 +89,7 @@ export function useConfig(): ConfigContextType {
export function ConfigContextProvider(props: PropsWithChildren) {
const [config, setConfig] = useState<Config>(DEFAULT_CONFIG);
const { updateConfig } = useUiConfig();

// Sync Alchemy auth UI config
useEffect(() => {
const sections: AuthType[][] = [[{ type: "email" }]];
Expand Down Expand Up @@ -125,7 +123,7 @@ export function ConfigContextProvider(props: PropsWithChildren) {
};

updateConfig(uiConfig);
}, [config]);
}, [config, updateConfig]);

// Sync CSS variables
useEffect(() => {
Expand Down
51 changes: 28 additions & 23 deletions examples/ui-demo/src/components/preview/AuthCardWrapper.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import { useConfig } from "@/app/state";
import { cn } from "@/lib/utils";
import { AuthCard, useLogout, useUser } from "@account-kit/react";
import { useState } from "react";
import {
AuthCard,
useAuthenticate,
useLogout,
useUser,
} from "@account-kit/react";
import { MintDemoWrapper } from "./MintDemoWrapper";
import { useMemo } from "react";

export function AuthCardWrapper({ className }: { className?: string }) {
const user = useUser();
const {config, setConfig} = useConfig();
const { config } = useConfig();
const { logout } = useLogout();

const handleAuthSuccess = () => {
console.log("Auth Success");
setConfig((prev) => ({...prev, auth: {...prev.auth, isAuthComplete: true}}));
}
const { stage } = useAuthenticate();
const isAuthComplete = useMemo(() => stage === "complete", [stage]);
return (
<div
className={cn(
Expand All @@ -21,25 +23,28 @@ export function AuthCardWrapper({ className }: { className?: string }) {
className
)}
>
{!config.auth.isAuthComplete ? ( <>
<div className="flex flex-col gap-2 w-[368px]">
<div className="modal bg-surface-default shadow-md overflow-hidden">
<AuthCard handleAuthSuccess={handleAuthSuccess} />
{!isAuthComplete ? (
<>
<div className="flex flex-col gap-2 w-[368px]">
<div className="modal bg-surface-default shadow-md overflow-hidden">
<AuthCard />
</div>
</div>
</div>
</>):
<MintDemoWrapper />
}
{user && (<button
</>
) : (
<MintDemoWrapper />
)}
{user && (
<button
className="text-primary font-semibold text-sm px-3 py-[11px] bg-white border border-gray-300 rounded-lg hover:shadow-md"
onClick={() => {
setConfig((prev) => ({...prev, auth: {...prev.auth, isAuthComplete: false}}));
logout()}}
>
logout();
}}
>
Logout
{config.auth.isAuthComplete && <span> (Auth Complete)</span>}
</button>)}
{isAuthComplete && <span> (Auth Complete)</span>}
</button>
)}
</div>
);
}

0 comments on commit d546538

Please sign in to comment.