- Map Justine tokens to shadcn CSS variables (--vibn-* aliases) - Switch fonts to Inter + Lora via next/font (IBM Plex Mono for code) - Base typography: body Inter, h1–h3 Lora; marketing hero + wordmark serif - Project shell and global chrome use semantic colors - Replace Outfit/Newsreader references across TSX inline styles Made-with: Cursor
101 lines
3.5 KiB
TypeScript
101 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import { toast } from "sonner";
|
|
import { SetupHeader, FieldLabel, TextInput, PrimaryButton, type SetupProps } from "./setup-shared";
|
|
|
|
export function CodeImportSetup({ workspace, onClose, onBack }: SetupProps) {
|
|
const router = useRouter();
|
|
const [name, setName] = useState("");
|
|
const [repoUrl, setRepoUrl] = useState("");
|
|
const [pat, setPat] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const isValidUrl = repoUrl.trim().startsWith("http");
|
|
const canCreate = name.trim().length > 0 && isValidUrl;
|
|
|
|
const handleCreate = async () => {
|
|
if (!canCreate) return;
|
|
setLoading(true);
|
|
try {
|
|
const res = await fetch("/api/projects/create", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({
|
|
projectName: name.trim(),
|
|
projectType: "web-app",
|
|
slug: name.toLowerCase().replace(/[^a-z0-9]+/g, "-"),
|
|
product: { name: name.trim() },
|
|
creationMode: "code-import",
|
|
sourceData: { repoUrl: repoUrl.trim(), pat: pat.trim() || undefined },
|
|
}),
|
|
});
|
|
if (!res.ok) {
|
|
const err = await res.json();
|
|
toast.error(err.error || "Failed to create project");
|
|
return;
|
|
}
|
|
const data = await res.json();
|
|
onClose();
|
|
router.push(`/${workspace}/project/${data.projectId}/overview`);
|
|
} catch {
|
|
toast.error("Something went wrong");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div style={{ padding: "32px 36px 36px" }}>
|
|
<SetupHeader
|
|
icon="⌘" label="Import Code" tagline="Already have a repo"
|
|
accent="#1a3a5c" onBack={onBack} onClose={onClose}
|
|
/>
|
|
|
|
<FieldLabel>Project name</FieldLabel>
|
|
<TextInput
|
|
value={name}
|
|
onChange={setName}
|
|
placeholder="What is this project called?"
|
|
autoFocus
|
|
/>
|
|
|
|
<FieldLabel>Repository URL</FieldLabel>
|
|
<TextInput
|
|
value={repoUrl}
|
|
onChange={setRepoUrl}
|
|
placeholder="https://github.com/yourorg/your-repo"
|
|
/>
|
|
|
|
<FieldLabel>
|
|
Personal Access Token{" "}
|
|
<span style={{ color: "#b5b0a6", fontWeight: 400 }}>(required for private repos)</span>
|
|
</FieldLabel>
|
|
<input
|
|
type="password"
|
|
value={pat}
|
|
onChange={e => setPat(e.target.value)}
|
|
placeholder="ghp_… or similar"
|
|
style={{
|
|
width: "100%", padding: "11px 14px", marginBottom: 20,
|
|
borderRadius: 8, border: "1px solid #e0dcd4",
|
|
background: "#faf8f5", fontSize: "0.9rem",
|
|
fontFamily: "var(--font-inter), ui-sans-serif, sans-serif", color: "#1a1a1a",
|
|
outline: "none", boxSizing: "border-box",
|
|
}}
|
|
onFocus={e => (e.currentTarget.style.borderColor = "#1a1a1a")}
|
|
onBlur={e => (e.currentTarget.style.borderColor = "#e0dcd4")}
|
|
/>
|
|
|
|
<div style={{ fontSize: "0.75rem", color: "#a09a90", marginBottom: 20, lineHeight: 1.5, padding: "12px 14px", background: "#faf8f5", borderRadius: 8, border: "1px solid #f0ece4" }}>
|
|
Vibn will clone your repo, read key files, and build a full architecture map — tech stack, routes, database, auth, and third-party integrations. Tokens are used only for cloning and are not stored.
|
|
</div>
|
|
|
|
<PrimaryButton onClick={handleCreate} disabled={!canCreate} loading={loading}>
|
|
Import & map →
|
|
</PrimaryButton>
|
|
</div>
|
|
);
|
|
}
|