mirror of
https://gitbruv.vercel.app/api/git/bruv/gitbruv.git
synced 2025-12-20 23:24:09 +01:00
fix
This commit is contained in:
parent
2483a758c8
commit
698cf2bcd9
4 changed files with 27 additions and 48 deletions
|
|
@ -4,24 +4,14 @@ import { useState } from "react";
|
|||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Check, Copy, ChevronDown } from "lucide-react";
|
||||
import {
|
||||
DropdownMenu,
|
||||
DropdownMenuContent,
|
||||
DropdownMenuItem,
|
||||
DropdownMenuTrigger,
|
||||
} from "@/components/ui/dropdown-menu";
|
||||
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "@/components/ui/dropdown-menu";
|
||||
import { getPublicServerUrl } from "@/lib/utils";
|
||||
|
||||
export function CloneUrl({
|
||||
username,
|
||||
repoName,
|
||||
}: {
|
||||
username: string;
|
||||
repoName: string;
|
||||
}) {
|
||||
export function CloneUrl({ username, repoName }: { username: string; repoName: string }) {
|
||||
const [copied, setCopied] = useState(false);
|
||||
const [protocol, setProtocol] = useState<"https" | "ssh">("https");
|
||||
|
||||
const baseUrl = process.env.NEXT_PUBLIC_APP_URL || "http://localhost:3000";
|
||||
const baseUrl = getPublicServerUrl();
|
||||
const httpsUrl = `${baseUrl}/api/git/${username}/${repoName}.git`;
|
||||
const sshUrl = `git@gitbruv.local:${username}/${repoName}.git`;
|
||||
|
||||
|
|
@ -43,34 +33,16 @@ export function CloneUrl({
|
|||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent>
|
||||
<DropdownMenuItem onClick={() => setProtocol("https")}>
|
||||
HTTPS
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => setProtocol("ssh")}>
|
||||
SSH
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => setProtocol("https")}>HTTPS</DropdownMenuItem>
|
||||
<DropdownMenuItem onClick={() => setProtocol("ssh")}>SSH</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
<div className="relative flex-1 min-w-[280px]">
|
||||
<Input
|
||||
value={url}
|
||||
readOnly
|
||||
className="pr-10 font-mono text-xs bg-muted"
|
||||
/>
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="icon"
|
||||
className="absolute right-1 top-1/2 -translate-y-1/2 h-7 w-7"
|
||||
onClick={copyToClipboard}
|
||||
>
|
||||
{copied ? (
|
||||
<Check className="h-3.5 w-3.5 text-primary" />
|
||||
) : (
|
||||
<Copy className="h-3.5 w-3.5" />
|
||||
)}
|
||||
<Input value={url} readOnly className="pr-10 font-mono text-xs bg-muted" />
|
||||
<Button variant="ghost" size="icon" className="absolute right-1 top-1/2 -translate-y-1/2 h-7 w-7" onClick={copyToClipboard}>
|
||||
{copied ? <Check className="h-3.5 w-3.5 text-primary" /> : <Copy className="h-3.5 w-3.5" />}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue