mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-07 22:16:46 +02:00
85 lines
3.0 KiB
TypeScript
85 lines
3.0 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import { useNostr, useNostrEvents, useProfile } from "nostr-react";
|
|
import {
|
|
nip19,
|
|
} from "nostr-tools";
|
|
import {
|
|
Card,
|
|
CardHeader,
|
|
CardTitle,
|
|
SmallCardContent,
|
|
} from "@/components/ui/card"
|
|
import Image from 'next/image';
|
|
import Link from 'next/link';
|
|
import { Avatar } from './ui/avatar';
|
|
import { AvatarImage } from '@radix-ui/react-avatar';
|
|
|
|
interface TrendingImageProps {
|
|
eventId: string;
|
|
pubkey: string;
|
|
}
|
|
|
|
const TrendingImage: React.FC<TrendingImageProps> = ({ eventId, pubkey }) => {
|
|
const { data: userData } = useProfile({
|
|
pubkey,
|
|
});
|
|
|
|
const { events } = useNostrEvents({
|
|
filter: {
|
|
kinds: [1],
|
|
ids: [eventId]
|
|
},
|
|
});
|
|
|
|
const npubShortened = useMemo(() => {
|
|
let encoded = nip19.npubEncode(pubkey);
|
|
let parts = encoded.split('npub');
|
|
return 'npub' + parts[1].slice(0, 4) + ':' + parts[1].slice(-3);
|
|
}, [pubkey]);
|
|
|
|
let text = events && events.length > 0 ? events[0].content : '';
|
|
const createdAt = events && events.length > 0 ? new Date(events[0].created_at * 1000) : new Date();
|
|
const title = userData?.username || userData?.display_name || userData?.name || userData?.npub || npubShortened;
|
|
text = text.replaceAll('\n', ' ');
|
|
const imageSrc = text.match(/https?:\/\/[^ ]*\.(png|jpg|gif|jpeg)/g);
|
|
const textWithoutImage = text.replace(/https?:\/\/.*\.(?:png|jpg|gif|jpeg)/g, '');
|
|
const hrefProfile = `/profile/${nip19.npubEncode(pubkey)}`;
|
|
const hrefNote = `/note/${nip19.noteEncode(eventId)}`;
|
|
const profileImageSrc = userData?.picture || "https://robohash.org/" + pubkey;
|
|
|
|
return (
|
|
<>
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>
|
|
<div style={{ display: 'flex', alignItems: 'center' }}>
|
|
<Avatar>
|
|
<AvatarImage src={profileImageSrc} />
|
|
</Avatar>
|
|
<span className='break-all' style={{ marginLeft: '10px' }}>{title}</span>
|
|
</div>
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<SmallCardContent>
|
|
<div className='p-2'>
|
|
<div className='d-flex justify-content-center align-items-center'>
|
|
{imageSrc && imageSrc.length > 0 && (
|
|
<div style={{ position: 'relative', width: '100%', height: '100%', overflow: 'hidden' }}>
|
|
<Link href={hrefNote}>
|
|
<img src={imageSrc[0]} className='rounded lg:rounded-lg' style={{ width: '100%', height: '100%', objectFit: 'cover' }} alt={text} />
|
|
</Link>
|
|
</div>
|
|
// <img src={imageSrc[0]} style={{ maxWidth: '100%', maxHeight: '100vh', objectFit: 'cover', margin: 'auto' }} alt={text} />
|
|
// <div style={{ position: 'relative', width: '100%', maxHeight: '100vh' }}>
|
|
// <Image src={imageSrc[0]} alt={text} layout='fill' objectFit='contain' />
|
|
// </div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</SmallCardContent>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default TrendingImage; |