import Link from 'next/link' import Image from 'next/image' import { useNostrAuth } from '@/hooks/useNostrAuth' import { useAuthorPresentation } from '@/hooks/useAuthorPresentation' import { useEffect, useState } from 'react' import { t } from '@/lib/i18n' import type { Article } from '@/types/nostr' const buttonClassName = 'px-4 py-2 bg-neon-cyan/20 hover:bg-neon-cyan/30 text-neon-cyan rounded-lg text-sm font-medium transition-all border border-neon-cyan/50 hover:shadow-glow-cyan' function CreateAuthorPageLink() { return ( {t('nav.createAuthorPage')} ) } function AuthorProfileLink({ presentation, profile }: { presentation: Article; profile: { name?: string; picture?: string } | null }) { // Extract author name from presentation title or profile // Title format: "Présentation de " or just use profile name let authorName = presentation.title.replace(/^Présentation de /, '').trim() if (!authorName || authorName === 'Présentation') { authorName = profile?.name || t('common.author') } // Extract picture from presentation (bannerUrl or from JSON metadata) or profile const picture = presentation.bannerUrl || profile?.picture return ( {picture ? (
{authorName}
) : (
{authorName.charAt(0).toUpperCase()}
)} {authorName} ) } export function ConditionalPublishButton() { const { connected, pubkey, profile } = useNostrAuth() const { checkPresentationExists } = useAuthorPresentation(pubkey ?? null) const [presentation, setPresentation] = useState
(null) useEffect(() => { const check = async () => { if (!connected || !pubkey) { setPresentation(null) return } // Check for presentation asynchronously, but don't show loading state const pres = await checkPresentationExists() setPresentation(pres) } void check() }, [connected, pubkey, checkPresentationExists]) if (!connected || !pubkey) { return } // If presentation exists, show author profile link with image/fallback if (presentation) { return } // Otherwise, show create author page button immediately (no loading state) return }