202 lines
5.9 KiB
TypeScript
202 lines
5.9 KiB
TypeScript
'use client';
|
|
|
|
import { RelayContext } from '@components/relaysProvider';
|
|
|
|
import { dateToUnix, hoursAgo } from '@utils/getDate';
|
|
import {
|
|
countTotalChannels,
|
|
countTotalNotes,
|
|
createChannel,
|
|
createChat,
|
|
createNote,
|
|
getActiveAccount,
|
|
getPlebs,
|
|
} from '@utils/storage';
|
|
import { getParentID } from '@utils/transform';
|
|
|
|
import LumeSymbol from '@assets/icons/Lume';
|
|
|
|
import useLocalStorage, { writeStorage } from '@rehooks/local-storage';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useCallback, useContext, useEffect, useRef } from 'react';
|
|
|
|
export default function Page() {
|
|
const router = useRouter();
|
|
|
|
const [pool, relays]: any = useContext(RelayContext);
|
|
const [lastLogin] = useLocalStorage('lastLogin', new Date());
|
|
|
|
const now = useRef(new Date());
|
|
const timeout = useRef(null);
|
|
const unsubscribe = useRef(null);
|
|
|
|
const fetchData = useCallback(
|
|
async (account: { id: number; pubkey: string; chats: string[] }, tags: any) => {
|
|
const notes = await countTotalNotes();
|
|
const channels = await countTotalChannels();
|
|
const chats = account.chats?.length || 0;
|
|
const follows = JSON.parse(tags);
|
|
|
|
const query = [];
|
|
let since: number;
|
|
|
|
// kind 1 (notes) query
|
|
if (notes.total === 0) {
|
|
since = dateToUnix(hoursAgo(24, now.current));
|
|
} else {
|
|
since = dateToUnix(new Date(lastLogin));
|
|
}
|
|
query.push({
|
|
kinds: [1, 6],
|
|
authors: follows,
|
|
since: since,
|
|
until: dateToUnix(now.current),
|
|
});
|
|
// kind 4 (chats) query
|
|
if (chats === 0) {
|
|
query.push({
|
|
kinds: [4],
|
|
'#p': [account.pubkey],
|
|
since: 0,
|
|
until: dateToUnix(now.current),
|
|
});
|
|
}
|
|
// kind 40 (channels) query
|
|
if (channels.total === 0) {
|
|
query.push({
|
|
kinds: [40],
|
|
since: 0,
|
|
until: dateToUnix(now.current),
|
|
});
|
|
}
|
|
// subscribe relays
|
|
unsubscribe.current = pool.subscribe(
|
|
query,
|
|
relays,
|
|
(event: { kind: number; tags: string[]; id: string; pubkey: string; content: string; created_at: number }) => {
|
|
switch (event.kind) {
|
|
// short text note
|
|
case 1:
|
|
const parentID = getParentID(event.tags, event.id);
|
|
// insert event to local database
|
|
createNote(
|
|
event.id,
|
|
account.id,
|
|
event.pubkey,
|
|
event.kind,
|
|
event.tags,
|
|
event.content,
|
|
event.created_at,
|
|
parentID
|
|
);
|
|
break;
|
|
// chat
|
|
case 4:
|
|
if (event.pubkey !== account.pubkey) {
|
|
createChat(account.id, event.pubkey, event.created_at);
|
|
}
|
|
break;
|
|
// repost
|
|
case 6:
|
|
createNote(
|
|
event.id,
|
|
account.id,
|
|
event.pubkey,
|
|
event.kind,
|
|
event.tags,
|
|
event.content,
|
|
event.created_at,
|
|
''
|
|
);
|
|
break;
|
|
// channel
|
|
case 40:
|
|
createChannel(event.id, event.content, event.created_at);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
},
|
|
undefined,
|
|
() => {
|
|
timeout.current = setTimeout(() => router.replace('/nostr/newsfeed/following'), 5000);
|
|
},
|
|
{
|
|
unsubscribeOnEose: true,
|
|
logAllEvents: false,
|
|
}
|
|
);
|
|
},
|
|
[router, pool, relays, lastLogin]
|
|
);
|
|
|
|
useEffect(() => {
|
|
getPlebs()
|
|
.then((res) => {
|
|
if (res) {
|
|
writeStorage('plebs', res);
|
|
}
|
|
})
|
|
.catch(console.error);
|
|
|
|
getActiveAccount()
|
|
.then((res: any) => {
|
|
if (res) {
|
|
const account = res;
|
|
// update local storage
|
|
writeStorage('account', account);
|
|
// fetch data
|
|
fetchData(account, account.follows);
|
|
} else {
|
|
router.replace('/onboarding');
|
|
}
|
|
})
|
|
.catch(console.error);
|
|
|
|
return () => {
|
|
if (unsubscribe.current) {
|
|
unsubscribe.current();
|
|
}
|
|
clearTimeout(timeout.current);
|
|
};
|
|
}, [fetchData, router]);
|
|
|
|
return (
|
|
<div className="h-screen w-screen bg-zinc-50 text-zinc-900 dark:bg-black dark:text-white">
|
|
<div className="relative h-full overflow-hidden">
|
|
{/* dragging area */}
|
|
<div data-tauri-drag-region className="absolute left-0 top-0 z-20 h-16 w-full bg-transparent" />
|
|
{/* end dragging area */}
|
|
<div className="relative flex h-full flex-col items-center justify-center">
|
|
<div className="flex flex-col items-center gap-2">
|
|
<LumeSymbol className="h-16 w-16 text-black dark:text-white" />
|
|
<div className="text-center">
|
|
<h3 className="text-lg font-semibold leading-tight text-zinc-900 dark:text-zinc-100">
|
|
Here's an interesting fact:
|
|
</h3>
|
|
<p className="font-medium text-zinc-300 dark:text-zinc-600">
|
|
Bitcoin and Nostr can be used by anyone, and no one can stop you!
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="absolute bottom-16 left-1/2 -translate-x-1/2 transform">
|
|
<svg
|
|
className="h-5 w-5 animate-spin text-black dark:text-white"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
|
<path
|
|
className="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|