23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
import { getGroupMetadataFromEvent } from '@/lib/event-metadata'
|
|
import { cn } from '@/lib/utils'
|
|
import { Event } from 'nostr-tools'
|
|
import { useMemo } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
export default function GroupMetadataPreview({
|
|
event,
|
|
className
|
|
}: {
|
|
event: Event
|
|
className?: string
|
|
}) {
|
|
const { t } = useTranslation()
|
|
const metadata = useMemo(() => getGroupMetadataFromEvent(event), [event])
|
|
|
|
return (
|
|
<div className={cn('pointer-events-none', className)}>
|
|
[{t('Group')}] <span className="italic pr-0.5">{metadata.name}</span>
|
|
</div>
|
|
)
|
|
}
|