blob: dec4ab54bb6f166e2b869b3db5ff5d15f92b115d (
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
import PostList from "@/components/feed/PostList";
import useLocalState from "@/state/state";
import spinner from "@/assets/triangles.svg";
import { useState } from "react";
import { eventsToFc } from "@/logic/nostrill";
import Icon from "@/components/Icon";
import toast from "react-hot-toast";
import { Contact, RefreshCw } from "lucide-react";
export default function Nostr() {
const { nostrFeed, api, relays } = useLocalState((s) => ({
nostrFeed: s.nostrFeed,
api: s.api,
relays: s.relays,
}));
const [isSyncing, setIsSyncing] = useState(false);
const feed = eventsToFc(nostrFeed);
const refetch = () => feed;
const handleResync = async () => {
if (!api) return;
setIsSyncing(true);
try {
await api.syncRelays();
toast.success("Nostr feed sync initiated");
} catch (error) {
toast.error("Failed to sync Nostr feed");
console.error("Sync error:", error);
} finally {
setIsSyncing(false);
}
};
async function fetchProfiles() {
if (!api) return;
setIsSyncing(true);
try {
await api.syncRelays();
toast.success("Nostr feed sync initiated");
} catch (error) {
toast.error("Failed to sync Nostr feed");
console.error("Sync error:", error);
} finally {
setIsSyncing(false);
}
}
if (Object.keys(relays).length === 0)
return (
<div className="nostr-empty-state">
<div className="empty-content">
<Icon name="nostr" size={48} color="textMuted" />
<h3>No Nostr Relays Set Up</h3>
<p>
You haven't set any Nostr Relays to sync data from. You can do so in
the Settings page.
</p>
<p>
If you don't know of any, we recommend the following public relays:
</p>
<ul>
<li>wss://nos.lol</li>
<li>wss://relay.damus.io</li>
</ul>
</div>
</div>
);
// Show empty state with resync option when no feed data
if (!feed || !feed.feed || Object.keys(feed.feed).length === 0) {
return (
<div className="nostr-empty-state">
<div className="empty-content">
<Icon name="nostr" size={48} color="textMuted" />
<h3>No Nostr Posts</h3>
<p>
Your Nostr feed appears to be empty. Try syncing with your relays to
fetch the latest posts.
</p>
<button
onClick={handleResync}
disabled={isSyncing}
className="resync-btn"
>
{isSyncing ? (
<>
<img src={spinner} alt="Loading" className="btn-spinner" />
Syncing...
</>
) : (
<>
<Icon name="settings" size={16} />
Sync Relays
</>
)}
</button>
</div>
</div>
);
}
// Show feed with resync button in header
return (
<div className="nostr-feed">
<div className="nostr-header">
<div className="feed-info">
<h4>Nostr Feed</h4>
<span className="post-count">
{Object.keys(feed.feed).length} posts
</span>
</div>
<div className="flex gap-4">
<button
className="btn-small"
onClick={fetchProfiles}
title="Fetch user profiles"
>
<Contact />
</button>
<button
onClick={handleResync}
disabled={isSyncing}
className="btn-small"
title="Sync with Nostr relays"
>
{isSyncing ? (
<img src={spinner} alt="Loading" className="btn-spinner-small" />
) : (
<RefreshCw />
)}
</button>
</div>
</div>
<PostList data={feed} refetch={refetch} />
</div>
);
}
|