-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.js
388 lines (371 loc) · 16.6 KB
/
Header.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
"use client";
import Link from "next/link";
import { useEffect, useState, useContext } from "react";
import "@stylesheets/header.css";
import Image from 'next/image';
//Importing TogleSwitch Component
import ToggleSwitch from "./ToggleSwitch";
//Importing AuthButton component
import AuthButton from "./AuthButton";
import { usePathname } from "next/navigation";
//Importing FontAwesome for Icons
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import {
faHeart,
faUserCircle,
faUserLarge,
faPen,
} from "@fortawesome/free-solid-svg-icons";
import { Context } from "@context/store";
import { useRouter } from "next/navigation";
const Header = () => {
const pathname = usePathname(); // Get current path
const isAdmin = pathname && pathname.startsWith("/admin"); // Check if path starts with '/admin'
const isBlogs = pathname && pathname.startsWith("/blogs"); // Check if path starts with '/blogs'
const isProfile = pathname && pathname.startsWith("/profile"); // Check if path starts with '/profile'
const isCreateBlog = pathname && pathname.startsWith("/createblog"); // Check if path starts with '/createblog'
const isDevopsForum = pathname && pathname.startsWith("/devopsforum");
const isPremium = pathname && pathname.startsWith("/infrawise");
const isCreateForum = pathname && pathname.startsWith("/createforum");
let { theme, isAdminShow, isLogin, setIsPopup, setMsg, setSearchedBlog } =
useContext(Context);
// State to manage mobile menu toggle
const [isActive, setIsActive] = useState(false);
// to set the status of show navbar or not
const [show, setShow] = useState(true);
let router = useRouter();
let lastScrollTop = 0; // to keep the position of lastscroll
useEffect(() => {
const handleScroll = () => {
const scrollTop = window.scrollY || document.documentElement.scrollTop;
if (scrollTop > lastScrollTop) {
setShow(false);
} else {
setShow(true);
}
lastScrollTop = scrollTop <= 0 ? 0 : scrollTop; // For negative scrolling
};
window.addEventListener("scroll", handleScroll);
return () => {
window.removeEventListener("scroll", handleScroll);
};
}, []);
// Effect to load VanillaTilt library for logo animation
useEffect(() => {
const script = document.createElement("script");
script.src =
"https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.7.0/vanilla-tilt.min.js";
script.onload = () => {
// Initialize VanillaTilt on .logo elements
VanillaTilt.init(document.querySelectorAll(".logo"), {
max: 25,
speed: 400,
});
};
document.body.appendChild(script);
}, []);
// Function to toggle mobile menu visibility
const toggleMenu = () => {
setIsActive(!isActive);
};
// Effect to close mobile menu on window resize if screen width > 1024px
useEffect(() => {
const handleResize = () => {
if (window.innerWidth > 1024) {
setIsActive(false);
}
};
window.addEventListener("resize", handleResize);
return () => {
window.removeEventListener("resize", handleResize);
};
}, []);
function handleValidate() {
if (!isLogin) {
setIsPopup(true);
setMsg("Please login First ");
return;
}
router.push("/createblog");
}
const handleSearchChange = (e) => {
setSearchedBlog(e.target.value);
};
return (
<div>
<header
className={`w-screen ${
theme ? "bg-transparent" : "transition-all bg-transparent"
} z-50 fixed top-0 transition-all overflow-hidden py-2 ${
show ? "top-0" : "top-[-550px]"
} ${isAdmin ? "hidden" : "block"} ${
isBlogs || isCreateBlog || isProfile || isDevopsForum || isCreateForum
? "hidden"
: "block"
} `}
>
<nav className="flex justify-between flex-wrap items-center w-[90%] my-5 mx-auto">
{/* Logo with VanillaTilt animation */}
<Link href="/">
<div data-tilt data-tilt-scale="1.1">
<img
src="HelpOps-H Fevicon.webp"
alt="Logo"
className="w-20 h-20 top-2 max-[400px]:relative max-[400px]:left-36"
draggable="false"
/>
</div>
</Link>
<div className="flex min-w-[70%] gap-[50px] justify-between max-xl:min-w-0 max-xl:justify-center items-center">
{/* Main navigation links */}
<ul
className={`${
theme
? "bg-white shadow-gray-300"
: "bg-[#393838] shadow-[#000000a6]"
} ${isPremium?"opacity-0":""} list-none flex gap-5 py-2 px-5 nav_links rounded-3xl flex-wrap justify-center shadow-md justify-self-end max-xl:hidden transition-colors duration-500`}
>
<li
className={`${
theme ? "text-black" : "text-white"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left transition-colors duration-500`}
>
<Link href="/">Home</Link>
</li>
<li
className={`${
theme ? "text-black" : "text-white"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left transition-colors duration-500`}
>
<Link href="/about">About</Link>
</li>
<li
className={`${
theme ? "text-black" : "text-white"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left transition-colors duration-500`}
>
<Link href="/team">Team</Link>
</li>
<li
className={`${
theme ? "text-black" : "text-white"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left transition-colors duration-500`}
>
<Link href="/contact">Contact</Link>
</li>
</ul>
{/* Navigation actions (sponsor button and toggle switch) */}
<div className={`${isPremium?"hidden":""} flex items-center gap-2 `}>
{(isAdminShow ? (
<a href="https://www.helpopshub.com/admin" target="_blank">
<button
className={`${
theme
? "bg-gray-100/80 text-black hover:border-[1px] hover:border-whitesmoke"
: "bg-gray-100/80 text-black hover:bg-transparent hover:border-[1px] hover:border-white"
} rounded-2xl shadow-md shadow-black/20 text-xl cursor-pointer text-center transition-transform duration-500 ease-in-out w-30 p-2 hover:transform hover:translate-x-2.5 mr-5 max-[400px]:hidden`}
style={{ fontFamily: "ubuntu" }}
>
Admin
</button>
</a>
) : (
<a href="https://github.com/sponsors/mdazfar2">
<button
className={`${
theme
? "bg-gray-100/80 text-black hover:border-[1px] hover:border-whitesmoke"
: "bg-[#000] text-white hover:bg-transparent hover:border-[1px] hover:border-white"
} rounded-2xl shadow-md shadow-black/20 text-xl cursor-pointer text-center transition-transform duration-500 ease-in-out w-30 p-2 hover:transform hover:translate-x-2.5 mr-5 max-[400px]:hidden`}
style={{ fontFamily: "ubuntu" }}
>
<FontAwesomeIcon icon={faHeart} id="heart" width={25} />
Sponsor
</button>
</a>
))}
<div className="block max-xl:hidden">
<AuthButton />
</div>
<div className="relative flex justify-center items-center flex-row w-[70px] h-[35px] m-0 max-[400px]:fixed max-[400px]:top-12 max-[400px]:left-5">
<ToggleSwitch />
</div>
</div>
</div>
{/* Hamburger menu icon for mobile */}
<div
className={`hamburger ${isActive ? "open" : ""} ${isPremium?"hidden":""}`}
id="hamburger"
onClick={toggleMenu}
>
<div
className={`${
theme ? "bg-[#333]" : "bg-white"
} w-[25px] h-[3px] my-[4px] transition duration-400`}
></div>
<div
className={`${
theme ? "bg-[#333]" : "bg-white"
} w-[25px] h-[3px] my-[4px] transition duration-400`}
></div>
<div
className={`${
theme ? "bg-[#333]" : "bg-white"
} w-[25px] h-[3px] my-[4px] transition duration-400`}
></div>
</div>
</nav>
{/* Mobile menu links */}
<ul
className={`${
isActive
? `nav_links_mobile list-none flex p-10 flex-col items-center gap-5 navAnimate ease-in-out duration-200 justify-center overflow-hidden ${
theme ? "bg-gray-200" : "bg-[#2b2b2b]"
}`
: "hidden"
}`}
id="nav-links1"
>
<li
className={`${
theme
? "text-black after:bg-[#6eb6b95f]"
: "text-white after:bg-[#ffffff5f]"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left`}
>
<Link href="/" onClick={() => setIsActive(false)}>
Home
</Link>
</li>
<li
className={`${
theme
? "text-black after:bg-[#6eb6b95f]"
: "text-white after:bg-[#ffffff5f]"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left`}
>
<Link href="/about" onClick={() => setIsActive(false)}>
About
</Link>
</li>
<li
className={`${
theme
? "text-black after:bg-[#6eb6b95f]"
: "text-white after:bg-[#ffffff5f]"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left`}
>
<Link href="/team" onClick={() => setIsActive(false)}>
Team
</Link>
</li>
<li
className={`${
theme
? "text-black after:bg-[#6eb6b95f]"
: "text-white after:bg-[#ffffff5f]"
} text-xl font-normal px-4 py-2 relative after:content-[''] after:absolute after:w-full after:transform after:scale-x-0 after:h-[3px] after:bottom-1 after:left-0 after:bg-[#63b5c3] after:origin-bottom-right after:transition-transform after:duration-200 hover:after:scale-x-100 hover:after:origin-bottom-left`}
>
<Link href="/contact" onClick={() => setIsActive(false)}>
Contact
</Link>
</li>
<li>
<div className="auth-mobile flex gap-1">
<a href="https://github.com/sponsors/mdazfar2" target="_blank">
<button
className={`${
theme
? "bg-gray-100/80 text-black hover:border-[1px] hover:border-whitesmoke"
: "bg-[#000] text-white hover:bg-transparent hover:border-[1px] hover:border-white"
} rounded-2xl shadow-md shadow-black/20 text-xl cursor-pointer text-center transition-transform duration-500 ease-in-out w-30 p-2 hover:transform hover:translate-x-2.5 mr-5 min-[400px]:hidden`}
style={{ fontFamily: "ubuntu" }}
>
<FontAwesomeIcon icon={faHeart} id="heart" width={25} />
Sponsor
</button>
</a>
<AuthButton />
</div>
</li>
</ul>
</header>
<header
className={`w-screen ${
theme
? "bg-gray-100 text-black"
: "transition-all text-white bg-[#1e1d1d]"
} z-50 fixed top-0 transition-all overflow-hidden ${
show ? "top-0" : "top-[-550px]"
} ${isAdmin ? "hidden" : "block"} ${
isBlogs || isCreateBlog || isProfile || isDevopsForum || isCreateForum
? "block"
: "hidden"
}`}
>
<nav className="flex justify-between items-center w-[95%] my-5 mx-auto">
<div className="flex items-center gap-4">
<Link href="/" className="flex items-center">
<div data-tilt data-tilt-scale="1.1">
<Image
src="/HelpOps-H Fevicon.webp" // Use the correct path to the image
alt="Logo"
width={48} // Equivalent to `w-12` in Tailwind (12 * 4px = 48px)
height={48} // Equivalent to `h-12` in Tailwind (12 * 4px = 48px)
className="relative max-w-full max-h-full" // Apply custom styles and responsiveness
draggable="false" // To prevent dragging
/>
</div>
<div className="text-2xl max-md:text-xl max-sm:text-lg max-[475px]:text-base max-[445px]:text-[14px]">
elpOps Hub
</div>
</Link>
</div>
{!isCreateBlog && !isProfile && !isDevopsForum && !isCreateForum && (
<div
className={`flex-grow lg:max-w-[300px] max-lg:max-w-[230px] max-sm:max-w-[220px] max-[445px]:max-w-[100px] max-[400px]:hidden ${
theme ? "" : "text-black"
}`}
>
<input
type="text"
placeholder="Search"
onChange={handleSearchChange} // Update global searchBlog value
className="p-2 border rounded-md w-full max-w-md"
/>
</div>
)}
<div
className={`${
theme ? "text-gray-600" : "transition-all text-gray-300"
} flex items-center lg:gap-10 lg:font-bold max-lg:gap-4`}
>
{!isCreateBlog && !isDevopsForum && !isCreateForum && (
<div
onClick={handleValidate}
className="flex cursor-pointer items-center gap-2"
>
<div className="max-md:w-10 max-md:h-10 max-md:rounded-full max-md:bg-gray-200 max-md:flex max-md:items-center max-md:justify-center ">
<FontAwesomeIcon
icon={faPen}
className={`max-md:w-5 max-md:h-5 ${
theme ? "max-md:text-[#555]" : "max-md:text-[#333]"
}`}
/>
</div>
<span className="max-md:hidden">Create Blog</span>
</div>
)}
<div className="block max-md:hidden">
<AuthButton />
</div>
<div className="relative flex justify-center items-center flex-row w-[70px] h-[35px] m-0">
<ToggleSwitch />
</div>
</div>
</nav>
</header>
</div>
);
};
export default Header;