disabled global newsfeed and reply, reaction count

This commit is contained in:
Ren Amamiya 2023-03-02 16:10:59 +07:00
parent 09c7ccc023
commit b4424e7c35
3 changed files with 7 additions and 38 deletions

View File

@ -19,6 +19,7 @@ export default function Reaction({ eventID, eventPubkey }: { eventID: string; ev
const pubkey = currentUser.pubkey;
const privkey = currentUser.privkey;
/*
relayPool.subscribe(
[
{
@ -31,7 +32,7 @@ export default function Reaction({ eventID, eventPubkey }: { eventID: string; ev
relays,
(event: any) => {
if (event.content === '🤙' || event.content === '+') {
//setReaction(reaction + 1);
setReaction(reaction + 1);
}
},
undefined,
@ -39,6 +40,7 @@ export default function Reaction({ eventID, eventPubkey }: { eventID: string; ev
console.log(events, relayURL);
}
);
*/
const handleReaction = (e: any) => {
e.stopPropagation();

View File

@ -2,8 +2,7 @@
import { ChatBubbleIcon } from '@radix-ui/react-icons';
import { useState } from 'react';
export default function Reply({ eventID }: { eventID: string }) {
console.log(eventID);
export default function Reply() {
const [count] = useState(0);
return (

View File

@ -1,50 +1,18 @@
import BaseLayout from '@layouts/baseLayout';
import NewsFeedLayout from '@layouts/newsfeedLayout';
import { Placeholder } from '@components/note/placeholder';
import { Thread } from '@components/thread';
import { hoursAgo } from '@utils/getDate';
import { dateToUnix, useNostrEvents } from 'nostr-react';
import {
JSXElementConstructor,
ReactElement,
ReactFragment,
ReactPortal,
Suspense,
useRef,
} from 'react';
import { JSXElementConstructor, ReactElement, ReactFragment, ReactPortal } from 'react';
export default function Page() {
const now = useRef(new Date());
const { events } = useNostrEvents({
filter: {
until: dateToUnix(now.current),
since: dateToUnix(hoursAgo(1, now.current)),
kinds: [1],
limit: 10,
},
});
return (
<div className="h-full w-full">
<Suspense fallback={<Placeholder />}>
<Thread data={events} />
</Suspense>
<p>Global</p>
</div>
);
}
Page.getLayout = function getLayout(
page:
| string
| number
| boolean
| ReactElement<unknown, string | JSXElementConstructor<unknown>>
| ReactFragment
| ReactPortal
page: string | number | boolean | ReactElement<unknown, string | JSXElementConstructor<unknown>> | ReactFragment | ReactPortal
) {
return (
<BaseLayout>