summaryrefslogtreecommitdiff
path: root/src/components/SmartClipboardButton.tsx
blob: 78f76b5a3bfc77aad3fb7351338f677fce3c22fa (plain)
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
import { useEffect, useState } from "react";
import { ButtonItem, PanelSectionRow } from "@decky/ui";
import { toaster } from "@decky/api";
import { FaCheck, FaClipboard } from "react-icons/fa";

interface SmartClipboardButtonProps {
  command?: string;
  buttonText?: string;
}

export function SmartClipboardButton({
  command = "~/fgmod/fgmod %command%",
  buttonText = "Copy Launch Command",
}: SmartClipboardButtonProps) {
  const [isLoading, setIsLoading] = useState(false);
  const [showSuccess, setShowSuccess] = useState(false);

  useEffect(() => {
    if (!showSuccess) return undefined;
    const timer = setTimeout(() => setShowSuccess(false), 3000);
    return () => clearTimeout(timer);
  }, [showSuccess]);

  const performCopy = async () => {
    if (isLoading || showSuccess) return;

    setIsLoading(true);
    try {
      const tempInput = document.createElement("input");
      tempInput.value = command;
      tempInput.style.position = "absolute";
      tempInput.style.left = "-9999px";
      document.body.appendChild(tempInput);
      tempInput.focus();
      tempInput.select();

      let copySuccess = false;
      try {
        if (document.execCommand("copy")) {
          copySuccess = true;
        }
      } catch (execError) {
        try {
          await navigator.clipboard.writeText(command);
          copySuccess = true;
        } catch (clipboardError) {
          console.error("Clipboard copy failed", execError, clipboardError);
        }
      }

      document.body.removeChild(tempInput);

      if (!copySuccess) {
        toaster.toast({
          title: "Copy Failed",
          body: "Unable to copy to clipboard",
        });
        return;
      }

      setShowSuccess(true);
    } catch (error) {
      toaster.toast({
        title: "Copy Failed",
        body: `Error: ${String(error)}`,
      });
    } finally {
      setIsLoading(false);
    }
  };

  return (
    <PanelSectionRow>
      <ButtonItem layout="below" onClick={performCopy} disabled={isLoading || showSuccess}>
        <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
          {showSuccess ? (
            <FaCheck style={{ color: "#4CAF50" }} />
          ) : isLoading ? (
            <FaClipboard style={{ animation: "pulse 1s ease-in-out infinite", opacity: 0.7 }} />
          ) : (
            <FaClipboard />
          )}
          <div style={{ color: showSuccess ? "#4CAF50" : "inherit", fontWeight: showSuccess ? "bold" : "normal" }}>
            {showSuccess ? "Copied to clipboard" : isLoading ? "Copying..." : buttonText}
          </div>
        </div>
      </ButtonItem>
      <style>{`
        @keyframes pulse {
          0% { opacity: 0.7; }
          50% { opacity: 1; }
          100% { opacity: 0.7; }
        }
      `}</style>
    </PanelSectionRow>
  );
}