mirror of
https://github.com/teamhanko/hanko.git
synced 2025-10-27 14:17:56 +08:00
This pull request introduces the new Flowpilot system along with several new features and various improvements. The key enhancements include configurable authorization, registration, and profile flows, as well as the ability to enable and disable user identifiers (e.g., email addresses and usernames) and login methods. --------- Co-authored-by: Frederic Jahn <frederic.jahn@hanko.io> Co-authored-by: Lennart Fleischmann <lennart.fleischmann@hanko.io> Co-authored-by: lfleischmann <67686424+lfleischmann@users.noreply.github.com> Co-authored-by: merlindru <hello@merlindru.com>
33 lines
815 B
TypeScript
33 lines
815 B
TypeScript
import { Hanko, register } from "@teamhanko/hanko-elements";
|
|
import { useCallback, useEffect, useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
|
|
const api = process.env.NEXT_PUBLIC_HANKO_API!;
|
|
|
|
interface Props {
|
|
setError(error: Error): void;
|
|
}
|
|
|
|
function HankoAuth({ setError }: Props) {
|
|
const router = useRouter();
|
|
const [hankoClient, setHankoClient] = useState<Hanko>();
|
|
|
|
const redirectToTodos = useCallback(() => {
|
|
router.replace("/todo").catch(setError);
|
|
}, [router, setError]);
|
|
|
|
useEffect(() => setHankoClient(new Hanko(api)), []);
|
|
|
|
useEffect(() => {
|
|
register(api).catch(setError);
|
|
}, [setError]);
|
|
|
|
useEffect(() => hankoClient?.onSessionCreated(() => {
|
|
redirectToTodos()
|
|
}), [hankoClient, redirectToTodos]);
|
|
|
|
return <hanko-auth />;
|
|
}
|
|
|
|
export default HankoAuth;
|