blob: 80fff05035bc929d9399740ac5336009a28b17c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
import Profile from "@/components/profile/Profile";
import useLocalState, { useStore } from "@/state/state";
import { useState } from "react";
import type { UserType } from "@/types/nostrill";
import { isValidPatp } from "urbit-ob";
import { ErrorPage } from "@/pages/Error";
import { useParams } from "wouter";
import { decodeNostrKey } from "@/logic/nostr";
import TrillFeed, { Inner } from "@/components/trill/User";
import NostrFeed from "@/components/nostr/User";
function UserLoader() {
const params = useParams();
console.log({ params });
const userString = params.user;
if (!userString) return <ErrorPage msg="no such user" />;
else if (isValidPatp(userString))
return <UserFeed user={{ urbit: userString }} userString={userString} />;
else {
const nostrKey = decodeNostrKey(userString);
if (nostrKey)
return <UserFeed user={{ nostr: nostrKey }} userString={userString} />;
else return <ErrorPage msg="no such user" />;
}
}
function UserFeed({
user,
userString,
}: {
user: UserType;
userString: string;
}) {
const { api, pubkey } = useLocalState((s) => ({
api: s.api,
addProfile: s.addProfile,
addNotification: s.addNotification,
lastFact: s.lastFact,
pubkey: s.pubkey,
}));
const isMe =
"urbit" in user
? user.urbit === api?.airlock.our
: "nostr" in user
? pubkey === user.nostr
: false;
// auto updating on SSE doesn't work if we do shallow
const { following } = useStore();
const userString2 = "urbit" in user ? user.urbit : user.nostr;
const feed = following.get(userString2);
const [isFollowLoading, setIsFollowLoading] = useState(false);
const [isAccessLoading, setIsAccessLoading] = useState(false);
return (
<div id="user-page">
<Profile user={user} userString={userString} isMe={isMe} />
{isMe ? (
<MyFeed our={api!.airlock.our!} />
) : "urbit" in user ? (
<TrillFeed
patp={user.urbit}
feed={feed}
isFollowLoading={isFollowLoading}
setIsFollowLoading={setIsFollowLoading}
isAccessLoading={isAccessLoading}
setIsAccessLoading={setIsAccessLoading}
/>
) : "nostr" in user ? (
<NostrFeed
pubkey={user.nostr}
userString={userString}
feed={feed}
isFollowLoading={isFollowLoading}
setIsFollowLoading={setIsFollowLoading}
isAccessLoading={isAccessLoading}
setIsAccessLoading={setIsAccessLoading}
/>
) : null}
</div>
);
}
export default UserLoader;
function MyFeed({ our }: { our: string }) {
const following = useLocalState((s) => s.following);
const feed = following.get(our);
if (!feed) return <ErrorPage msg="Critical error" />;
return <Inner feed={feed} refetch={() => {}} />;
}
|