83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
import { Button } from "@/shared/libs/shadcn/ui/button";
|
|
import {
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/shared/libs/shadcn/ui/dialog";
|
|
import { Input } from "@/shared/libs/shadcn/ui/input";
|
|
import { Label } from "@/shared/libs/shadcn/ui/label";
|
|
import { Separator } from "@/shared/libs/shadcn/ui/separator";
|
|
import { useEffect, useState } from "react";
|
|
import {
|
|
getAllThirdPartyAuth,
|
|
GetALlThirdPartyAuthCallback,
|
|
} from "../actions/getAllThirdPartyAuth";
|
|
import { Icon } from "@iconify/react";
|
|
|
|
const SignInCard = () => {
|
|
const [oAuthProviders, setOAuthProviders] =
|
|
useState<GetALlThirdPartyAuthCallback | null>(null);
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
const res = await getAllThirdPartyAuth();
|
|
console.log(res);
|
|
setOAuthProviders(res);
|
|
})();
|
|
}, []);
|
|
|
|
return (
|
|
<DialogContent showCloseButton={false}>
|
|
<DialogHeader>
|
|
<DialogTitle>Get Started</DialogTitle>
|
|
<DialogDescription>
|
|
Sign in to access personalized features and stay updated with the
|
|
latest content.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="py-1">
|
|
<div className="grid w-full max-w-sm items-center gap-3">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input type="email" id="email" placeholder="e.g. user@example.com" />
|
|
</div>
|
|
<div className="my-4 flex items-center gap-2 ">
|
|
<Separator className="flex-1 bg-neutral-700" />
|
|
<p className="text-neutral-500 text-sm">or continue with</p>
|
|
<Separator className="flex-1 bg-neutral-700" />
|
|
</div>
|
|
<div>
|
|
{oAuthProviders ? (
|
|
<div className="flex flex-col gap-1">
|
|
{oAuthProviders.data?.map((provider, index) => (
|
|
<Button
|
|
key={index}
|
|
variant="outline"
|
|
className="w-full text-neutral-300 text-xs font-normal"
|
|
>
|
|
<Icon icon={provider.icon} />
|
|
Continue with {provider.name}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
) : (
|
|
<Button size="sm" className="w-full" isDisabled>
|
|
There are no third-party auth providers available.
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<DialogClose asChild>
|
|
<Button variant="outline">Cancel</Button>
|
|
</DialogClose>
|
|
<Button type="submit">Continue</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
);
|
|
};
|
|
|
|
export default SignInCard;
|