Spaces:
Running
Running
File size: 6,945 Bytes
378e163 0b4acc5 378e163 3cbf49c 0b4acc5 378e163 0b4acc5 378e163 0b4acc5 378e163 3cbf49c 378e163 0b4acc5 378e163 0b4acc5 3cbf49c 0b4acc5 378e163 0b4acc5 378e163 0b4acc5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
"use client";
import { useState } from "react";
import { Import } from "lucide-react";
import { Project } from "@/types";
import { Button } from "@/components/ui/button";
import {
Dialog,
DialogContent,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
import Loading from "@/components/loading";
import { Input } from "../ui/input";
import { toast } from "sonner";
import { api } from "@/lib/api";
import { useUser } from "@/hooks/useUser";
import { LoginModal } from "../login-modal";
import { useRouter } from "next/navigation";
export const LoadProject = ({
fullXsBtn = false,
onSuccess,
}: {
fullXsBtn?: boolean;
onSuccess: (project: Project) => void;
}) => {
const { user } = useUser();
const router = useRouter();
const [openLoginModal, setOpenLoginModal] = useState(false);
const [open, setOpen] = useState(false);
const [url, setUrl] = useState<string>("");
const [isLoading, setIsLoading] = useState(false);
const checkIfUrlIsValid = (url: string) => {
// should match a hugging face spaces URL like: https://huggingface.co/spaces/username/project or https://hf.co/spaces/username/project
const urlPattern = new RegExp(
/^(https?:\/\/)?(huggingface\.co|hf\.co)\/spaces\/([\w-]+)\/([\w-]+)$/,
"i"
);
return urlPattern.test(url);
};
const handleClick = async () => {
if (isLoading) return; // Prevent multiple clicks while loading
if (!url) {
toast.error("Please enter a URL.");
return;
}
if (!checkIfUrlIsValid(url)) {
toast.error("Please enter a valid Hugging Face Spaces URL.");
return;
}
const [username, namespace] = url
.replace("https://huggingface.co/spaces/", "")
.replace("https://hf.co/spaces/", "")
.split("/");
setIsLoading(true);
try {
const response = await api.post(`/me/projects/${username}/${namespace}`);
toast.success("Project imported successfully!");
setOpen(false);
setUrl("");
onSuccess(response.data.project);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
if (error?.response?.data?.redirect) {
return router.push(error.response.data.redirect);
}
toast.error(
error?.response?.data?.error ?? "Failed to import the project."
);
} finally {
setIsLoading(false);
}
};
return (
<>
{!user ? (
<>
<Button
variant="outline"
className="max-lg:hidden"
onClick={() => setOpenLoginModal(true)}
>
<Import className="size-4 mr-1.5" />
Load existing Project
</Button>
<Button
variant="outline"
size="sm"
className="lg:hidden"
onClick={() => setOpenLoginModal(true)}
>
{fullXsBtn && <Import className="size-3.5 mr-1" />}
Load
{fullXsBtn && " existing Project"}
</Button>
<LoginModal
open={openLoginModal}
onClose={setOpenLoginModal}
title="Log In to load your Project"
description="Log In through Hugging Face to load an existing project and increase your free limit!"
/>
</>
) : (
<Dialog open={open} onOpenChange={setOpen}>
<DialogTrigger asChild>
<div>
<Button variant="outline" className="max-lg:hidden">
<Import className="size-4 mr-1.5" />
Load existing Project
</Button>
<Button variant="outline" size="sm" className="lg:hidden">
{fullXsBtn && <Import className="size-3.5 mr-1" />}
Load
{fullXsBtn && " existing Project"}
</Button>
</div>
</DialogTrigger>
<DialogContent className="sm:max-w-md !p-0 !rounded-3xl !bg-white !border-neutral-100 overflow-hidden text-center">
<DialogTitle className="hidden" />
<header className="bg-neutral-50 p-6 border-b border-neutral-200/60">
<div className="flex items-center justify-center -space-x-4 mb-3">
<div className="size-11 rounded-full bg-pink-200 shadow-2xs flex items-center justify-center text-2xl opacity-50">
🎨
</div>
<div className="size-13 rounded-full bg-amber-200 shadow-2xl flex items-center justify-center text-3xl z-2">
🥳
</div>
<div className="size-11 rounded-full bg-sky-200 shadow-2xs flex items-center justify-center text-2xl opacity-50">
💎
</div>
</div>
<p className="text-2xl font-semibold text-neutral-950">
Import a Project
</p>
<p className="text-base text-neutral-500 mt-1.5">
Enter the URL of your Hugging Face Space to import an existing
project.
</p>
</header>
<main className="space-y-4 px-9 pb-9 pt-2">
<div>
<p className="text-sm text-neutral-700 mb-2">
Enter your Hugging Face Space
</p>
<Input
type="text"
placeholder="https://huggingface.com/spaces/username/project"
value={url}
onChange={(e) => setUrl(e.target.value)}
onBlur={(e) => {
const inputUrl = e.target.value.trim();
if (!inputUrl) {
setUrl("");
return;
}
if (!checkIfUrlIsValid(inputUrl)) {
toast.error("Please enter a valid URL.");
return;
}
setUrl(inputUrl);
}}
className="!bg-white !border-neutral-300 !text-neutral-800 !placeholder:text-neutral-400 selection:!bg-blue-100"
/>
</div>
<div>
<p className="text-sm text-neutral-700 mb-2">
Then, let's import it!
</p>
<Button
variant="black"
onClick={handleClick}
className="relative w-full"
>
{isLoading ? (
<>
<Loading
overlay={false}
className="ml-2 size-4 animate-spin"
/>
Fetching your Space...
</>
) : (
<>Import your Space</>
)}
</Button>
</div>
</main>
</DialogContent>
</Dialog>
)}
</>
);
};
|