more real contnet

This commit is contained in:
zmeyer44 2023-10-15 22:15:49 -04:00
parent 5b5ac1be00
commit 7a6d2c813c
6 changed files with 28 additions and 31 deletions

View File

@ -90,7 +90,7 @@ function Creator({ npub }: { npub: string }) {
filter: {
authors: [pubkey],
kinds: [30023, 9802],
limit: 5,
limit: 10,
},
});
const recentWork = events.map((e) => ({

View File

@ -1,3 +1,4 @@
"use client";
import {
Section,
SectionHeader,
@ -9,7 +10,15 @@ import { RiArrowRightLine } from "react-icons/ri";
import KindCard from "@/components/KindCard";
import { DUMMY_30023 } from "@/constants";
import Link from "next/link";
import useEvents from "@/lib/hooks/useEvents";
import { Event } from "nostr-tools";
export default function LongFormContentSection() {
const { events } = useEvents({
filter: {
kinds: [30023],
limit: 10,
},
});
return (
<Section>
<SectionHeader>
@ -19,27 +28,14 @@ export default function LongFormContentSection() {
</Button>
</SectionHeader>
<SectionContent className="sm:lg-feed-cols relative mx-auto flex flex-col gap-4">
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
</Link>
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
</Link>
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
</Link>
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
</Link>
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
</Link>
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
</Link>
<Link href="/article/ere">
<KindCard {...DUMMY_30023} />
{events.map((e) => {
const event = e.rawEvent() as Event;
return (
<Link key={e.id} href={`/article/${e.tagId}`}>
<KindCard {...event} />
</Link>
);
})}
</SectionContent>
</Section>
);

View File

@ -5,7 +5,6 @@ export const EXPLORE_CREATORS = [
"npub19mduaf5569jx9xz555jcx3v06mvktvtpu0zgk47n4lcpjsz43zzqhj6vzk",
"npub1dc9p7jzjhj86g2uqgltq4qvnpkyfqn9r72kdlddcgyat3j05gnjsgjc8rz",
"npub1qny3tkh0acurzla8x3zy4nhrjz5zd8l9sy9jys09umwng00manysew95gx",
"npub17u5dneh8qjp43ecfxr6u5e9sjamsmxyuekrg2nlxrrk6nj9rsyrqywt4tp",
"npub1l2vyh47mk2p0qlsku7hg0vn29faehy9hy34ygaclpn66ukqp3afqutajft",
];

View File

@ -3,5 +3,5 @@ export const RELAYS = [
"wss://nostr.drss.io",
"wss://nostr.swiss-enigma.ch",
"wss://relay.damus.io",
"wss://nostr.wine",
];

View File

@ -1,3 +1,5 @@
"use client";
import { useState, useEffect } from "react";
import { useNDK } from "@/app/_providers/ndk";
import {

View File

@ -48,7 +48,7 @@ export function getTwoLetters(user: {
if (user.profile.displayName) {
const firstLetter = user.profile.displayName.at(0);
const secondLetter =
user.profile.displayName.split(" ")[1].at(0) ??
user.profile.displayName.split(" ")[1]?.at(0) ??
user.profile.displayName.at(1) ??
"";
return firstLetter + secondLetter;
@ -56,7 +56,7 @@ export function getTwoLetters(user: {
if (user.profile.name) {
const firstLetter = user.profile.name.at(0);
const secondLetter =
user.profile.name.split(" ")[1].at(0) ?? user.profile.name.at(1) ?? "";
user.profile.name.split(" ")[1]?.at(0) ?? user.profile.name.at(1) ?? "";
return firstLetter + secondLetter;
}
}