-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthButton.js
340 lines (293 loc) · 10.1 KB
/
AuthButton.js
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
"use client";
import React, { useState, useEffect, useContext } from 'react';
import Profile from '@pages/Profile';
import Login from './LoginSignup/Login';
import Signup from './LoginSignup/Signup';
import { useRouter } from 'next/navigation';
import UserProfile from './UserProfile';
import { Context } from '@context/store';
import { useSession } from 'next-auth/react';
const AuthButton = () => {
// State to control the visibility of the authentication modal
const [showAuth, setShowAuth] = useState(false);
// State to toggle between login and signup views
const [isLogin1, setIsLogin1] = useState(true);
// State to manage the profile visibility
const [profile, showProfile] = useState(false);
// State to store the username value for input
let [usernameValue, setusernameValue] = useState('');
// State to manage one-time operations
const [oneTime, setOneTime] = useState('');
// State to control the visibility of the username modal
let [usernameModal, setUsernameModal] = useState(false);
// State to manage the current modal view ('login', 'signup', etc.)
const [currentModal, setCurrentModal] = useState('login');
// State to manage another profile visibility
let [showProfile1, setShowProfile1] = useState(false);
// Context variables for managing user and admin states
let {
setIsAdminShow,
finalUser,
isNotification,
userName,
setFinalUser,
setIsLogin,
setUserGithub,
setUserName,
setUserEmail,
userImage,
setUserImage,
isLogin,
theme,
setIsPopup,
setMsg
} = useContext(Context);
// Router instance for navigation
let router = useRouter();
// Effect to show profile if username is available
useEffect(() => {
if (userName) {
showProfile(true);
}
}, [profile]);
// Handle session and authentication status
let session = useSession();
if (session.status === 'unauthenticated' && !isLogin) {
setUserEmail('');
setUserImage('');
setUserName('');
}
// Function to fetch user data from local storage and server if logged in
async function fetchData1() {
setIsLogin(true);
let session = await JSON.parse(localStorage.getItem('finalUser'));
// Fetch or create account on the server
let response = await fetch("/api/createaccount", {
method: "POST",
body: JSON.stringify({ email: session.email })
});
let data = await response.json();
setFinalUser(data.msg);
// Update local storage with fetched user data
localStorage.setItem('finalUser', JSON.stringify(data.msg));
setIsLogin(true);
}
// Effect to fetch user data if logged in (based on local storage)
useEffect(() => {
if (localStorage.getItem('loggedin')) {
fetchData1();
}
}, []);
// Function to fetch user data from server and handle account setup
async function fetchData() {
let response = await fetch("/api/createaccount", {
method: "POST",
body: JSON.stringify({
email: session.data.user.email,
name: session.data.user.name,
image: session.data.user.image,
banner: 'https://res.cloudinary.com/dwgd3as6k/image/upload/v1721762646/f3wmliwhhqvwlh5yisnw.png'
})
});
response = await fetch("/api/createaccount", {
method: "POST",
body: JSON.stringify({
email: session.data.user.email,
name: session.data.user.name,
image: session.data.user.image,
banner: 'https://res.cloudinary.com/dwgd3as6k/image/upload/v1721762646/f3wmliwhhqvwlh5yisnw.png'
})
});
let data = await response.json();
// Check if username is set, if not, show username modal
if (!data.msg.username) {
localStorage.setItem("userId1", data.msg._id);
setUsernameModal(true);
return;
}
// Check if the user is an admin
if (data.msg.email === process.env.NEXT_PUBLIC_ADMIN_URL) {
setIsAdminShow(true);
}
setFinalUser(data.msg);
localStorage.setItem('finalUser', JSON.stringify(data.msg));
setIsLogin(true);
}
// Effect to fetch user data if authenticated
useEffect(() => {
if (session.status === 'authenticated') {
if (!oneTime) {
setOneTime(true);
fetchData();
setIsLogin1(true);
}
}
}, [session.status, oneTime]);
// Toggle the visibility of the authentication modal
const toggleAuth = () => {
setShowAuth(!showAuth);
setCurrentModal('login');
};
// Switch to the signup view
const switchToSignup = () => {
setIsLogin1(false);
setCurrentModal('signup');
};
// Switch back to the login view
const onBack = () => {
setIsLogin1(true);
setCurrentModal('login');
};
// Switch to the login view
const switchToLogin = () => {
setIsLogin1(true);
setCurrentModal('login');
};
// Handle logout and redirection
async function handleLogout() {
if (session.status === "authenticated") {
setUserEmail('');
setUserImage('');
setUserName('');
router.push('https://www.helpopshub.com/api/auth/signout?csrf=true');
}
setUserEmail('');
setUserImage('');
setUserName('');
window.location.reload();
}
// Close authentication modal
const closeAuth = () => {
if (['login', 'signup'].includes(currentModal)) {
setShowAuth(false);
setIsLogin1(true);
setCurrentModal('login');
}
};
// Show profile modal
function handleProfileShow() {
setShowProfile1(true);
}
// Close profile modal
function closeProfile() {
setShowProfile1(false);
}
// Handle OTP modal display
const handleOTPStart = () => {
setCurrentModal('otp');
};
// Handle profile modal display
const handleProfileStart = () => {
setCurrentModal('profile');
};
// Fetch user data based on username and update profile
async function getUser(name) {
let user = await fetch("/api/getuser", {
method: "POST",
body: JSON.stringify({ username: name })
});
let data = await user.json();
// Check if username is set, if not, show username modal
if (!data.msg.username) {
localStorage.setItem("userId1", data.msg._id);
setUsernameModal(true);
return;
}
// Check if the user is an admin
if (data.msg.email === process.env.NEXT_PUBLIC_ADMIN_URL) {
setIsAdminShow(true);
}
setFinalUser(data.msg);
localStorage.setItem('finalUser', JSON.stringify(data.msg));
setIsLogin(true);
setUsernameModal(false);
}
// Handle profile completion and modal close
const handleProfileComplete = () => {
setShowAuth(false);
setCurrentModal('login');
};
// Check if a username is available and handle account creation
async function handleCheckUsername() {
let response = await fetch('/api/checkusername', {
method: "POST",
body: JSON.stringify({ username: usernameValue,id:finalUser._id})
});
let canCreate = await response.json();
if (!canCreate.success) {
setIsPopup(true);
setMsg("This Username is Not Available");
return;
}
// Update username if available
response = await fetch('/api/checkusername', {
method: "PUT",
body: JSON.stringify({
username: usernameValue,
id: localStorage.getItem('userId1')
})
});
localStorage.removeItem('userId1');
getUser(usernameValue);
return;
}
// Effect to monitor notifications (currently does nothing)
useEffect(() => {
}, [isNotification]);
return (
<>
{!isLogin && userName.length == 0 && <button className={` ${theme ? "bg-gray-100/80 text-black border-none" : "text-white bg-black border-white border"} auth-btn`} onClick={toggleAuth}>Login/Signup</button>}
{isLogin && <div className={`auth-btn relative ${theme ? "bg-gray-100/80 text-black border-none" : "text-white bg-black border-white border"}`} onClick={() => router.push(`/profile?id=${finalUser.username || finalUser._id}`)}>{isNotification && <span className='h-[14px] block rounded-full absolute top-[1%] right-[0px] w-[14px] bg-red-500'></span>}Profile</div>}
{showProfile1 && isLogin &&
<div className="auth-overlay">
<div className="auth-modal" onClick={(e) => e.stopPropagation()}>
<UserProfile onClose={closeProfile} onLogout={handleLogout} />
</div>
</div>
}
{usernameModal &&
<div className="auth-overlay" onClick={['login', 'signup'].includes(currentModal) ? closeAuth : undefined}>
<div className="auth-modal" onClick={(e) => e.stopPropagation()}>
<div className={`bg-[rgba(255, 255, 255, 1)] border-dashed border-[2px] ${theme ? "bg-slate-100 border-black" : "bg-[#0f0c0c] whiteshadow border-white"} p-5 border-rounded1 lg:w-[500px] md:w-[500px] max-sm:h-auto w-[96vw] relative select`}>
<h1 className={`text-center mt-[5px] ${theme ? "text-black" : "text-white"} text-[22px] font-bold max-sm:mt-[20px]`}>Please Enter Username</h1>
<div>
<input
type="text"
onChange={(e) => setusernameValue(e.target.value)}
value={usernameValue}
className={`md:w-[65%] p-[10px] mb-[10px] border-b-2 bg-none background-none text-black md:ml-[70px] max-sm:w-[100%] rounded-none ${theme ? "border-gray-500" : "border-white text-white"} border-[#837b7b] m-auto input-place`}
placeholder="Enter your Username"
/>
</div>
<button
className={`w-[120px] h-[52px] flex justify-center content-center items-center p-2 relative md:left-[100px] bg-[#098CCD] text-white mt-4 rounded-[18px] cursor-pointer md:ml-[40%] gap-[18px] text-[19px] ${theme ? "bg-[#098CCD] border-none" : "bg-[#272525] border-white border whiteshadow"} max-sm:m-[auto] max-sm:mt-[20px] font-semibold`}
onClick={handleCheckUsername}
>
Submit
</button>
</div>
</div>
</div>
}
{showAuth && !userName && (
<div className="auth-overlay" onClick={['login', 'signup'].includes(currentModal) ? closeAuth : undefined}>
<div className="auth-modal" onClick={(e) => e.stopPropagation()}>
{isLogin1 ? (
<Login onClose={closeAuth} onSignupClick={switchToSignup} />
) : (
<Signup
onClose={closeAuth}
onBack={onBack}
onLoginClick={switchToLogin}
onOTPStart={handleOTPStart}
onProfileStart={handleProfileStart}
onProfileComplete={handleProfileComplete}
/>
)}
</div>
</div>
)}
</>
);
};
export default AuthButton;