Header.js 17.2 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 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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
import { getSession, signOut } from "next-auth/react";
import Image from "next/image";
import Link from "next/link";
import React, { useEffect, useRef, useState } from "react";
import { useDispatch, useSelector } from "react-redux";
import { cleanImage } from "../../services/imageHandling";
import { Button, Container, Form, Nav, Navbar } from "react-bootstrap";
import { getCurrentEndUser, loadUser } from "../../redux/actions/userActions";
import { useRouter } from "next/router";
import { getWishlists } from "../../redux/actions/activityAction";
import { Typeahead } from "react-bootstrap-typeahead";
import axios from "axios";
import ActiveLink from "../common/ActiveLink";
import { Skeleton } from "antd";

const Header = () => {
  const [isGridViewOpen, setIsGridViewOpen] = useState(false);
  const { loadedUser } = useSelector(state => state.loadedUser);
  const { endUser, loading } = useSelector(state => state.endUser);
  const [open, setopen] = useState(false);
  const [options, setoptions] = useState([]);
  // console.log("options", options);
  const dispatch = useDispatch();
  // console.log("user", loadedUser);
  const [isSticky, setIsSticky] = useState(false);
  const router = useRouter();
  // const toggleGridViewDropdown = () => {
  //   setIsGridViewOpen(!isGridViewOpen);
  // };
  useEffect(() => {
    const handleScroll = () => {
      // Check if the scroll position is greater than a certain threshold
      const scrollY = window.scrollY || window.pageYOffset;
      setIsSticky(scrollY > 50);
    };

    // Attach the scroll event listener when the component mounts
    window.addEventListener("scroll", handleScroll);

    // Clean up the event listener when the component unmounts
    return () => {
      window.removeEventListener("scroll", handleScroll);
    };
  }, []);
  useEffect(() => {
    dispatch(getCurrentEndUser());
  }, []);

  useEffect(() => {
    if (endUser) dispatch(getWishlists({ endUser: endUser.id }));
  }, [endUser]);

// console.log("endUser", endUser);
  ////
  // const [isGridViewOpen, setIsGridViewOpen] = useState(false);
  const innerBoxRef = useRef(null); // Ref to hold reference to inner-box div
  const logoutBkRef = useRef(null);

  // Function to toggle the dropdown visibility
  const toggleGridViewDropdown = () => {
    setIsGridViewOpen(!isGridViewOpen); // Toggle the state
  };

  // Function to handle click outside
  const handleClickOutside = (event) => {
    if (
      logoutBkRef.current &&
      !logoutBkRef.current.contains(event.target) &&
      innerBoxRef.current &&
      !innerBoxRef.current.contains(event.target)
    ) {
      setIsGridViewOpen(false); // Close if clicked outside
    }
  };

  // Effect to add click event listener when component mounts
  useEffect(() => {
    document.addEventListener('mousedown', handleClickOutside);
    return () => {
      document.removeEventListener('mousedown', handleClickOutside);
    };
  }, []);

  return (
    <header className={`header_wrap ${isSticky ? "stick" : ""}`}>
      {isSticky && <div style={{ height: 76 }} className="bg-transparent"></div>}
      <Navbar expand="lg" className="bg-body-tertiary">
        <Container fluid>
          <Navbar.Brand href="/">
            <span className="image-container">
              <Image loading="lazy" layout="fill" alt="" className="image img-fluid" src="/images/main-logo.svg" />
            </span>
          </Navbar.Brand>
          {loadedUser && loadedUser.id ? (
            <div className="top-btn hide-on-desktop">
              <div className="logout-bk" >
                <a onClick={toggleGridViewDropdown} className="user-icon">
                  <span className="image-container user-pic">
                    <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/user.svg" />
                  </span>
                  <span className="image-container arrow-d">
                    <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/user-arrow-down.svg" />
                  </span>
                </a>
                {/* <p>{loadedUser.phone}</p> */}
                <div ref={logoutBkRef} className={`inner-box ${isGridViewOpen ? "open" : ""}`}>
                  <div className="user-info">
                    <div className="pic">
                      <span className="image-container">
                        <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/user.svg" />
                      </span>
                    </div>
                    <div className="">
                      <div className="name">{endUser.attributes.name}</div>
                      <div className="view-profile">
                        <a href="/user/profile">View Profile</a>
                      </div>
                    </div>
                  </div>
                  <div className="user-item">
                    <ul>
                      <li>
                        <a href="">
                          <span className="image-container">
                            <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/my-booking.svg" />
                          </span>
                          My Enquires
                        </a>
                      </li>
                      <li>
                        <a href="/user/wishlist">
                          <span className="image-container">
                            <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/my-wishlist.svg" />
                          </span>
                          My Wishlist
                        </a>
                      </li>
                      <li>
                        <a href="/gift-card">
                          <span className="image-container">
                            <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/my-gift-card.svg" />
                          </span>
                          My Gift Card
                        </a>
                      </li>
                      <li>
                        <a
                          onClick={async () => {
                            signOut({ redirect: false });
                            await router.push("/");
                            window.location.reload();
                          }}
                        >
                          <span className="image-container">
                            <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/logout.svg" />
                          </span>
                          Log out
                        </a>
                      </li>
                    </ul>
                  </div>
                </div>
              </div>
              {/* <Button
                  onClick={async () => {
                    signOut({ redirect: false });
                    await router.push("/");
                    window.location.reload();
                  }}
                  className="me-3"
                  variant="primary"
                >
                  Log out
                </Button> */}
            </div>
          ) : (
            <div className="top-btn hide-on-desktop asdasd">
              {/* <Button
                onClick={() => {
                  router.push("/signup/user");
                }}
                className="me-3"
                variant="primary"
              >
                Sign Up
              </Button>
              <Button
                onClick={() => {
                  router.push("/login/user");
                }}
                className=""
                variant="primary"
              >
                Log In
              </Button> */}
            </div>
          )}
          <Navbar.Toggle aria-controls="navbarScroll" />
          <Navbar.Collapse id="navbarScroll">
            <Nav className=" my-2 my-lg-0" navbarScroll>
              {/* <ActiveLink href="/user/wishlist" activeClassName="active">
                <a className="nav-link ">Wishlist</a>
              </ActiveLink> */}
              <ActiveLink href="/blog" activeClassName="active">
                <a className="nav-link ">Blogs</a>
              </ActiveLink>
              <ActiveLink href="/gift-card" activeClassName="active ">
                <a className="nav-link gift-card">
                  Gift Card{" "}
                  <span className="image-container">
                    <Image layout="fill" className="image img-fluid" src="/images/icons/gift-card-icon.svg" alt="" />
                  </span>
                </a>
              </ActiveLink>

              {/* <Nav.Link href="/gift-card" className="gift-card">
                Gift Card
                <span className="image-container">
                  <Image layout="fill" className="image img-fluid" src="/images/icons/gift-card-icon.svg" alt="" />
                </span>
              </Nav.Link> */}
            </Nav>
            <Form className="d-flex me-3">
              <div className="header-search">
                <Typeahead
                  open={open}
                  onBlur={() => {
                    setopen(false);
                  }}
                  id="select"
                  placeholder="Search for experiences or categories"
                  onChange={selected => {
                    console.log("selected", selected);
                    // router.push("/listing");
                    if (selected[0]?.label.includes("Experience")) {
                      // console.log("jjja");
                      router.push(`/activities/${selected[0].id}`);
                    }
                    if (selected[0]?.label.includes("Category")) {
                      router.push(`/listing?category=${selected[0].id}`);
                      // dispatch(setActivityFilters({ filters: { category: selected[0].id, subCategories: [] } }));
                    }
                    // Handle selections...
                  }}
                  onInputChange={async e => {
                    console.log(e);
                    if (e.length > 1) {
                      const config = {
                        headers: {
                          "Content-Type": "application/json"
                        }
                      };

                      const res = await axios.post(`${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/experience/get-search-response`, { string: e }, config);
                      console.log("res", res.data);
                      if (res.data.success) {
                        let opts = res.data.data.categories?.map(item => {
                          return { id: item.id, label: `Category - ${item.name}` };
                        });
                        console.log("here", opts);
                        if (opts?.length > 0) {
                          const a = res.data.data.activities?.map(item => {
                            return { id: item.id, label: `Experience - ${item.name}` };
                          });
                          opts = [...opts, ...a];
                        } else {
                          opts = res.data.data.activities?.map(item => {
                            return { id: item.id, label: `Experience - ${item.name}` };
                          });
                        }
                        // console.log("opts", opts);
                        setoptions(opts);
                        setopen(true);
                      }
                    } else {
                      setopen(false);
                    }
                  }}
                  options={options}
                />
                <Button className="search-icon" variant="outline-success">
                  <span className="image-container">
                    <Image layout="fill" alt="" className="image img-fluid" src="/images/icons/search-icon.svg" />
                  </span>
                </Button>
              </div>
            </Form>
            {!loading ? (
              <>
                {loadedUser && loadedUser.id ? (
                  <div className="top-btn hide-on-mobile">
                    <div className="logout-bk">
                      <a onClick={toggleGridViewDropdown} className="user-icon">
                        <span className="image-container user-pic">
                          <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/user.svg" />
                        </span>
                        <span className="image-container arrow-d">
                          <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/user-arrow-down.svg" />
                        </span>
                      </a>
                      {/* <p>{loadedUser.phone}</p> */}
                      <div ref={innerBoxRef} className={`inner-box ${isGridViewOpen ? "open" : ""}`}>
                        <div className="user-info">
                          <div className="pic">
                            <span className="image-container">
                              <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/user.svg" />
                            </span>
                          </div>
                          {endUser && <div className="">
                            <div className="name">{endUser.attributes.name}</div>
                            <div className="view-profile">
                              <a href="/user/profile">View Profile</a>
                            </div>
                          </div>}
                        </div>
                        <div className="user-item">
                          <ul>
                            <li>
                              <a href="/user/my-enquires">
                                <span className="image-container">
                                  <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/my-booking.svg" />
                                </span>
                                My Enquires
                              </a>
                            </li>
                            <li>
                              <a href="/user/wishlist">
                                <span className="image-container">
                                  <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/my-wishlist.svg" />
                                </span>
                                My Wishlist
                              </a>
                            </li>
                            <li>
                              <a href="/gift-card">
                                <span className="image-container">
                                  <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/my-gift-card.svg" />
                                </span>
                                My Gift Card
                              </a>
                            </li>
                            <li>
                              <a
                                onClick={async () => {
                                  signOut({ redirect: false });
                                  await router.push("/");
                                  window.location.reload();
                                }}
                              >
                                <span className="image-container">
                                  <Image layout="fill" priority alt="" className="image img-fluid" src="/images/icons/logout.svg" />
                                </span>
                                Log out
                              </a>
                            </li>
                          </ul>
                        </div>
                      </div>
                    </div>
                    {/* <Button
                  onClick={async () => {
                    signOut({ redirect: false });
                    await router.push("/");
                    window.location.reload();
                  }}
                  className="me-3"
                  variant="primary"
                >
                  Log out
                </Button> */}
                  </div>
                ) : (
                  <div className="top-btn hide-on-mobiles">
                    <Button
                      onClick={() => {
                        router.push("/signup/user");
                      }}
                      className="me-3"
                      variant="primary"
                    >
                      Sign Up
                    </Button>
                    <Button
                      onClick={() => {
                        router.push("/login/user");
                      }}
                      className=""
                      variant="primary"
                    >
                      Log In
                    </Button>
                  </div>
                )}
              </>
            ) : (
              <div className="d-flex align-items-center gap-2">
                {/* <Skeleton.Image active style={{ height: 50, width: 70 }} /> */}
                <Skeleton.Button active style={{ height: 40, width: 190 }} shape={"rounded"} />
              </div>
            )}
          </Navbar.Collapse>
        </Container>
      </Navbar>
    </header>
  );
};

export default Header;