mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-04-20 06:08:07 +00:00
138 lines
4.2 KiB
TypeScript
138 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
import { Clipboard, Copy } from "lucide-react";
|
|
import Link from "next/link";
|
|
import * as React from "react";
|
|
import { toast } from "sonner";
|
|
import { Button } from "./button";
|
|
import { Separator } from "./separator";
|
|
|
|
const buttonVariants = cva(
|
|
"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
|
destructive:
|
|
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
|
outline:
|
|
"border border-input bg-background hover:bg-accent hover:border-primary hover:text-accent-foreground",
|
|
secondary:
|
|
"bg-secondary border-secondary text-secondary-foreground hover:bg-secondary/80 hover:border-primary",
|
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
link: "text-primary underline-offset-4 hover:underline",
|
|
},
|
|
size: {
|
|
default: "h-10 px-4 py-2",
|
|
sm: "h-9 rounded-md px-3",
|
|
lg: "h-11 rounded-md px-8",
|
|
icon: "h-10 w-10",
|
|
null: "py-1 px-3 rouded-xs",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
size: "default",
|
|
},
|
|
},
|
|
);
|
|
|
|
const handleCopy = (type: string, value: string) => {
|
|
navigator.clipboard.writeText(value);
|
|
|
|
let amountOfScriptsCopied = localStorage.getItem("amountOfScriptsCopied");
|
|
|
|
if (amountOfScriptsCopied === null) {
|
|
localStorage.setItem("amountOfScriptsCopied", "1");
|
|
} else {
|
|
amountOfScriptsCopied = (parseInt(amountOfScriptsCopied) + 1).toString();
|
|
localStorage.setItem("amountOfScriptsCopied", amountOfScriptsCopied);
|
|
|
|
if (
|
|
parseInt(amountOfScriptsCopied) === 3 ||
|
|
parseInt(amountOfScriptsCopied) === 10 ||
|
|
parseInt(amountOfScriptsCopied) === 25 ||
|
|
parseInt(amountOfScriptsCopied) === 50 ||
|
|
parseInt(amountOfScriptsCopied) === 100
|
|
) {
|
|
setTimeout(() => {
|
|
toast.info(
|
|
<div className="flex flex-col gap-3">
|
|
<p className="lg">
|
|
If you find these scripts useful, please consider starring the
|
|
repository on GitHub. It helps a lot!
|
|
</p>
|
|
<div>
|
|
<Button className="text-white">
|
|
<Link
|
|
href="https://github.com/community-scripts/ProxmoxVE"
|
|
data-umami-event="Star on Github"
|
|
target="_blank"
|
|
>
|
|
Star on GitHub 💫
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</div>,
|
|
{ duration: 8000 },
|
|
);
|
|
}, 500);
|
|
}
|
|
}
|
|
|
|
toast.success(
|
|
<div className="flex items-center gap-2">
|
|
<Clipboard className="h-4 w-4" />
|
|
<span>Copied {type} to clipboard</span>
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
export interface CodeBlockProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
|
VariantProps<typeof buttonVariants> {
|
|
asChild?: boolean;
|
|
code: string;
|
|
}
|
|
|
|
const CodeBlock = React.forwardRef<HTMLDivElement, CodeBlockProps>(
|
|
({ className, variant, size, asChild = false, code }, ref) => {
|
|
const copyToClipboard = () => {
|
|
navigator.clipboard.writeText(code);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
position: "relative",
|
|
marginBottom: "1rem",
|
|
display: "flex",
|
|
gap: "8px",
|
|
}}
|
|
ref={ref}
|
|
>
|
|
<pre
|
|
className={cn(
|
|
buttonVariants({ variant, size, className }),
|
|
" flex flex-row p-4",
|
|
)}
|
|
>
|
|
<p className="flex items-center gap-2">
|
|
{code} <Separator orientation="vertical" />{" "}
|
|
<Copy
|
|
className="cursor-pointer"
|
|
size={16}
|
|
onClick={() => handleCopy("install command", code)}
|
|
/>
|
|
</p>
|
|
</pre>
|
|
</div>
|
|
);
|
|
},
|
|
);
|
|
CodeBlock.displayName = "CodeBlock";
|
|
|
|
export { CodeBlock, buttonVariants };
|