mirror of
https://github.com/purrgrammer/grimoire.git
synced 2026-04-11 16:07:15 +02:00
feat: add copy button for NIP markdown (#26)
* feat: add copy button for NIP markdown - Add copy button to WindowToolbar for regular NIPs (appId: "nip") - Button appears in window toolbar next to edit button - Uses Copy/CopyCheck icons from lucide-react - Fetches NIP content via useNip hook - Shows toast notification on successful copy - Add copy button to CommunityNIPDetailRenderer for community NIPs (kind 30817) - Button appears in header next to title - Copies event.content (markdown) to clipboard - Uses same Copy/CopyCheck icon pattern - Shows toast notification on successful copy Both implementations use the existing useCopy hook for state management and maintain consistent styling with other toolbar buttons. * refactor: use Button component and remove misleading shortcuts - Replace native button elements with Button component from shadcn/ui - Use variant="ghost" and size="icon" for consistent styling - Apply h-8 w-8 classes for uniform button sizing - Remove manual className styling in favor of component variants - Remove misleading keyboard shortcut hints from button titles - Changed "Edit command (Cmd+E)" to "Edit command" - Changed "Close window (Cmd+W)" to "Close window" - These shortcuts don't actually work, so they were misleading - Clean up imports and formatting - Format lucide-react imports across multiple lines - Add Button component import - Run prettier for consistent code style * refactor: use link variant and remove size class overrides - Change all Button components from variant="ghost" to variant="link" - Remove className="h-8 w-8" overrides to use default Button sizing - Maintains size="icon" for proper icon button behavior - Applies to WindowToolbar and CommunityNIPDetailRenderer * style: add muted color to window toolbar icon buttons - Add className="text-muted-foreground" to all Button components in WindowToolbar - Improves visual contrast for toolbar buttons - Applies to Edit, Copy NIP, More actions, and Close window buttons --------- Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
import { X, Pencil, MoreVertical, WandSparkles } from "lucide-react";
|
||||
import {
|
||||
X,
|
||||
Pencil,
|
||||
MoreVertical,
|
||||
WandSparkles,
|
||||
Copy,
|
||||
CopyCheck,
|
||||
} from "lucide-react";
|
||||
import { useSetAtom } from "jotai";
|
||||
import { useState } from "react";
|
||||
import { WindowInstance } from "@/types/app";
|
||||
@@ -10,9 +17,12 @@ import {
|
||||
DropdownMenuItem,
|
||||
DropdownMenuTrigger,
|
||||
} from "@/components/ui/dropdown-menu";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { SpellDialog } from "@/components/nostr/SpellDialog";
|
||||
import { reconstructCommand as reconstructReqCommand } from "@/lib/spell-conversion";
|
||||
import { toast } from "sonner";
|
||||
import { useCopy } from "@/hooks/useCopy";
|
||||
import { useNip } from "@/hooks/useNip";
|
||||
|
||||
interface WindowToolbarProps {
|
||||
window?: WindowInstance;
|
||||
@@ -58,6 +68,22 @@ export function WindowToolbar({
|
||||
setShowSpellDialog(true);
|
||||
};
|
||||
|
||||
// Copy functionality for NIPs
|
||||
const { copy, copied } = useCopy();
|
||||
const isNipWindow = window?.appId === "nip";
|
||||
|
||||
// Fetch NIP content for regular NIPs
|
||||
const { content: nipContent } = useNip(
|
||||
isNipWindow && window?.props?.number ? window.props.number : "",
|
||||
);
|
||||
|
||||
const handleCopyNip = () => {
|
||||
if (!window || !nipContent) return;
|
||||
|
||||
copy(nipContent);
|
||||
toast.success("NIP markdown copied to clipboard");
|
||||
};
|
||||
|
||||
// Check if this is a REQ window for spell creation
|
||||
const isReqWindow = window?.appId === "req";
|
||||
|
||||
@@ -78,27 +104,46 @@ export function WindowToolbar({
|
||||
<>
|
||||
{window && (
|
||||
<>
|
||||
{/* Edit button with keyboard shortcut hint */}
|
||||
<button
|
||||
className="p-1 rounded text-muted-foreground hover:text-foreground hover:bg-muted/50 transition-colors"
|
||||
{/* Edit button */}
|
||||
<Button
|
||||
variant="link"
|
||||
size="icon"
|
||||
className="text-muted-foreground"
|
||||
onClick={handleEdit}
|
||||
title="Edit command (Cmd+E)"
|
||||
title="Edit command"
|
||||
aria-label="Edit command"
|
||||
>
|
||||
<Pencil className="size-4" />
|
||||
</button>
|
||||
</Button>
|
||||
|
||||
{/* Copy button for NIPs */}
|
||||
{isNipWindow && (
|
||||
<Button
|
||||
variant="link"
|
||||
size="icon"
|
||||
className="text-muted-foreground"
|
||||
onClick={handleCopyNip}
|
||||
title="Copy NIP markdown"
|
||||
aria-label="Copy NIP markdown"
|
||||
disabled={!nipContent}
|
||||
>
|
||||
{copied ? <CopyCheck /> : <Copy />}
|
||||
</Button>
|
||||
)}
|
||||
|
||||
{/* More actions menu - only for REQ windows for now */}
|
||||
{isReqWindow && (
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<button
|
||||
className="p-1 rounded text-muted-foreground hover:text-foreground hover:bg-muted/50 transition-colors"
|
||||
<Button
|
||||
variant="link"
|
||||
size="icon"
|
||||
className="text-muted-foreground"
|
||||
title="More actions"
|
||||
aria-label="More actions"
|
||||
>
|
||||
<MoreVertical className="size-4" />
|
||||
</button>
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuItem onClick={handleTurnIntoSpell}>
|
||||
@@ -124,14 +169,16 @@ export function WindowToolbar({
|
||||
</>
|
||||
)}
|
||||
{onClose && (
|
||||
<button
|
||||
className="p-1 rounded text-muted-foreground hover:text-foreground hover:bg-muted/50 transition-colors"
|
||||
<Button
|
||||
variant="link"
|
||||
size="icon"
|
||||
className="text-muted-foreground"
|
||||
onClick={onClose}
|
||||
title="Close window (Cmd+W)"
|
||||
title="Close window"
|
||||
aria-label="Close window"
|
||||
>
|
||||
<X className="size-4" />
|
||||
</button>
|
||||
</Button>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
import { useMemo } from "react";
|
||||
import { Copy, CopyCheck } from "lucide-react";
|
||||
import { getTagValue } from "applesauce-core/helpers";
|
||||
import { UserName } from "../UserName";
|
||||
import { MarkdownContent } from "../MarkdownContent";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { useCopy } from "@/hooks/useCopy";
|
||||
import { toast } from "sonner";
|
||||
import type { NostrEvent } from "@/types/nostr";
|
||||
|
||||
/**
|
||||
@@ -29,12 +33,30 @@ export function CommunityNIPDetailRenderer({ event }: { event: NostrEvent }) {
|
||||
},
|
||||
);
|
||||
|
||||
// Copy functionality
|
||||
const { copy, copied } = useCopy();
|
||||
const handleCopy = () => {
|
||||
copy(event.content);
|
||||
toast.success("Community NIP markdown copied to clipboard");
|
||||
};
|
||||
|
||||
return (
|
||||
<div dir="auto" className="flex flex-col gap-6 p-6 max-w-3xl mx-auto">
|
||||
{/* NIP Header */}
|
||||
<header className="flex flex-col gap-4 border-b border-border pb-6">
|
||||
{/* Title */}
|
||||
<h1 className="text-3xl font-bold">{title}</h1>
|
||||
{/* Title with Copy Button */}
|
||||
<div className="flex items-start justify-between gap-4">
|
||||
<h1 className="text-3xl font-bold">{title}</h1>
|
||||
<Button
|
||||
variant="link"
|
||||
size="icon"
|
||||
onClick={handleCopy}
|
||||
title="Copy NIP markdown"
|
||||
aria-label="Copy NIP markdown"
|
||||
>
|
||||
{copied ? <CopyCheck /> : <Copy />}
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
{/* Metadata */}
|
||||
<div className="flex items-center gap-4 text-sm text-muted-foreground">
|
||||
|
||||
Reference in New Issue
Block a user