-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
227 lines (209 loc) · 7.92 KB
/
Copy pathpage.tsx
File metadata and controls
227 lines (209 loc) · 7.92 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
'use client';
import { useState, useEffect, useCallback } from 'react';
import { toast } from 'sonner';
import { useAuth } from '@/lib/auth';
import { friendsApi, friendRequestsApi } from '@/lib/api';
import type { Friend, Follower, FriendRequest } from '@/lib/api';
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
import { FriendItem, RequestCard } from '@/components/dashboard/friend-card';
import { UserSearch } from '@/components/dashboard/user-search';
export default function FriendsPage() {
const { isAuthenticated } = useAuth();
const [friends, setFriends] = useState<Friend[]>([]);
const [followers, setFollowers] = useState<Follower[]>([]);
const [incoming, setIncoming] = useState<FriendRequest[]>([]);
const [outgoing, setOutgoing] = useState<FriendRequest[]>([]);
const [loading, setLoading] = useState(true);
const [actionLoading, setActionLoading] = useState<string | null>(null);
const fetchAll = useCallback(async () => {
setLoading(true);
try {
const [fr, fo, inc, out] = await Promise.allSettled([
friendsApi.list(1, 50),
friendsApi.followers(1, 50),
friendRequestsApi.incoming(1, 50),
friendRequestsApi.outgoing(1, 50),
]);
if (fr.status === 'fulfilled') setFriends(fr.value.data);
if (fo.status === 'fulfilled') setFollowers(fo.value.data);
if (inc.status === 'fulfilled') setIncoming(inc.value.data);
if (out.status === 'fulfilled') setOutgoing(out.value.data);
} finally {
setLoading(false);
}
}, []);
useEffect(() => {
if (isAuthenticated) fetchAll();
}, [isAuthenticated, fetchAll]);
const handleUnfollow = async (id: string) => {
setActionLoading(id);
try {
await friendsApi.unfollow(id);
setFriends((prev) => prev.filter((f) => f.id !== id));
toast.success('Unfollowed');
} catch {
toast.error('Failed to unfollow');
} finally {
setActionLoading(null);
}
};
const handleAccept = async (id: string) => {
setActionLoading(id);
try {
await friendRequestsApi.accept(id);
setIncoming((prev) => prev.filter((r) => r.id !== id));
toast.success('Request accepted');
fetchAll();
} catch {
toast.error('Failed to accept');
} finally {
setActionLoading(null);
}
};
const handleReject = async (id: string) => {
setActionLoading(id);
try {
await friendRequestsApi.reject(id);
setIncoming((prev) => prev.filter((r) => r.id !== id));
} catch {
toast.error('Failed to reject');
} finally {
setActionLoading(null);
}
};
const handleCancel = async (id: string) => {
setActionLoading(id);
try {
await friendRequestsApi.cancel(id);
setOutgoing((prev) => prev.filter((r) => r.id !== id));
} catch {
toast.error('Failed to cancel');
} finally {
setActionLoading(null);
}
};
const existingFriendIds = new Set(friends.map((f) => f.id));
const pendingRequestUserIds = new Set(outgoing.map((r) => r.toUser.id));
return (
<div className="p-6 lg:p-10">
<h1 className="text-display text-xl font-bold mb-8">Friends</h1>
<div className="grid lg:grid-cols-3 gap-6">
<div className="lg:col-span-2">
<Tabs defaultValue="following">
<TabsList className="mb-4">
<TabsTrigger value="following" className="text-xs font-mono">
Following ({friends.length})
</TabsTrigger>
<TabsTrigger value="followers" className="text-xs font-mono">
Followers ({followers.length})
</TabsTrigger>
<TabsTrigger value="requests" className="text-xs font-mono">
Requests
{incoming.length > 0 && (
<span className="ml-1.5 bg-primary text-primary-foreground text-[10px] px-1 leading-4 font-mono">
{incoming.length}
</span>
)}
</TabsTrigger>
</TabsList>
<TabsContent value="following">
<div className="border border-border">
{loading ? (
<div className="p-6 text-center">
<div className="w-4 h-4 border-2 border-primary border-t-transparent animate-spin mx-auto" />
</div>
) : friends.length > 0 ? (
friends.map((f) => (
<FriendItem
key={f.id}
friend={f}
onUnfollow={handleUnfollow}
loading={actionLoading === f.id}
/>
))
) : (
<div className="p-6 text-center">
<p className="text-sm text-muted-foreground">Not following anyone yet</p>
</div>
)}
</div>
</TabsContent>
<TabsContent value="followers">
<div className="border border-border">
{loading ? (
<div className="p-6 text-center">
<div className="w-4 h-4 border-2 border-primary border-t-transparent animate-spin mx-auto" />
</div>
) : followers.length > 0 ? (
followers.map((f) => <FriendItem key={f.id} friend={f} />)
) : (
<div className="p-6 text-center">
<p className="text-sm text-muted-foreground">No followers yet</p>
</div>
)}
</div>
</TabsContent>
<TabsContent value="requests">
<div className="space-y-4">
<div>
<span className="text-[10px] font-mono uppercase tracking-wider text-muted-foreground block mb-2">
Incoming
</span>
<div className="border border-border">
{incoming.length > 0 ? (
incoming.map((r) => (
<RequestCard
key={r.id}
request={r}
type="incoming"
onAccept={handleAccept}
onReject={handleReject}
loading={actionLoading === r.id}
/>
))
) : (
<div className="p-4 text-center">
<p className="text-xs text-muted-foreground">No incoming requests</p>
</div>
)}
</div>
</div>
<div>
<span className="text-[10px] font-mono uppercase tracking-wider text-muted-foreground block mb-2">
Outgoing
</span>
<div className="border border-border">
{outgoing.length > 0 ? (
outgoing.map((r) => (
<RequestCard
key={r.id}
request={r}
type="outgoing"
onCancel={handleCancel}
loading={actionLoading === r.id}
/>
))
) : (
<div className="p-4 text-center">
<p className="text-xs text-muted-foreground">No outgoing requests</p>
</div>
)}
</div>
</div>
</div>
</TabsContent>
</Tabs>
</div>
<div>
<span className="text-[10px] font-mono uppercase tracking-wider text-muted-foreground block mb-3">
Add friends
</span>
<UserSearch
existingFriendIds={existingFriendIds}
pendingRequestUserIds={pendingRequestUserIds}
/>
</div>
</div>
</div>
);
}