aboutsummaryrefslogtreecommitdiff
path: root/components/hero/content.js
diff options
context:
space:
mode:
Diffstat (limited to 'components/hero/content.js')
-rw-r--r--components/hero/content.js182
1 files changed, 167 insertions, 15 deletions
diff --git a/components/hero/content.js b/components/hero/content.js
index 7e2d9ab..24ee942 100644
--- a/components/hero/content.js
+++ b/components/hero/content.js
@@ -1,9 +1,54 @@
import Link from "next/link";
-import React, { useState } from "react";
+import React, { useState, useRef, useEffect } from "react";
import Image from "next/image";
-import { MdChevronLeft, MdChevronRight } from "react-icons/md";
+import { MdChevronRight } from "react-icons/md";
+import {
+ ChevronRightIcon,
+ ArrowRightCircleIcon,
+} from "@heroicons/react/24/outline";
+
+import { ChevronLeftIcon } from "@heroicons/react/20/solid";
+import { ExclamationCircleIcon } from "@heroicons/react/24/solid";
+
+export default function Content({ ids, section, data, og }) {
+ const [startX, setStartX] = useState(null);
+ const [scrollLefts, setScrollLefts] = useState(null);
+ const containerRef = useRef(null);
+
+ const [isDragging, setIsDragging] = useState(false);
+ const [clicked, setClicked] = useState(false);
+
+ useEffect(() => {
+ const click = localStorage.getItem("clicked");
+ if (click) {
+ setClicked(JSON.parse(click));
+ }
+ }, []);
+
+ const handleMouseDown = (e) => {
+ setIsDragging(true);
+ setStartX(e.pageX - containerRef.current.offsetLeft);
+ setScrollLefts(containerRef.current.scrollLeft);
+ };
+
+ const handleMouseUp = () => {
+ setIsDragging(false);
+ };
+
+ const handleMouseMove = (e) => {
+ if (!isDragging) return;
+ e.preventDefault();
+ const x = e.pageX - containerRef.current.offsetLeft;
+ const walk = (x - startX) * 3;
+ containerRef.current.scrollLeft = scrollLeft - walk;
+ };
+
+ const handleClick = (e) => {
+ if (isDragging) {
+ e.preventDefault();
+ }
+ };
-export default function Content({ ids, section, data }) {
const [scrollLeft, setScrollLeft] = useState(false);
const [scrollRight, setScrollRight] = useState(true);
@@ -24,27 +69,59 @@ export default function Content({ ids, section, data }) {
setScrollRight(scrollRight);
};
- // console.log({ left: scrollLeft, right: scrollRight });
+ function handleAlert(e) {
+ if (localStorage.getItem("clicked")) {
+ const existingDataString = localStorage.getItem("clicked");
+ const existingData = JSON.parse(existingDataString);
+
+ existingData[e] = true;
+
+ const updatedDataString = JSON.stringify(existingData);
+
+ localStorage.setItem("clicked", updatedDataString);
+ } else {
+ const newData = {
+ [e]: true,
+ };
+
+ const newDataString = JSON.stringify(newData);
+
+ localStorage.setItem("clicked", newDataString);
+ }
+ }
const array = data;
let filteredData = array?.filter((item) => item !== null);
+ const slicedData =
+ filteredData?.length > 15 ? filteredData?.slice(0, 15) : filteredData;
+
return (
<div>
- <h1 className="px-5 font-karla text-[20px] font-bold">{section}</h1>
+ <div className="flex items-center justify-between lg:justify-normal lg:gap-3 px-5">
+ <h1 className="font-karla text-[20px] font-bold">{section}</h1>
+ <ChevronRightIcon className="w-5 h-5" />
+ </div>
<div className="relative flex items-center lg:gap-2">
- <MdChevronLeft
+ <div
onClick={slideLeft}
- size={35}
- className={`mb-5 cursor-pointer hover:text-action absolute left-0 bg-gradient-to-r from-[#141519] z-40 h-full hover:opacity-100 ${
- scrollLeft ? "visible" : "hidden"
+ className={`flex items-center mb-5 cursor-pointer hover:text-action absolute left-0 bg-gradient-to-r from-[#141519] z-40 h-full hover:opacity-100 ${
+ scrollLeft ? "lg:visible" : "invisible"
}`}
- />
+ >
+ <ChevronLeftIcon className="w-7 h-7 stroke-2" />
+ </div>
<div
id={ids}
- className="scroll flex h-full w-full items-center select-none overflow-x-scroll scroll-smooth whitespace-nowrap overflow-y-hidden scrollbar-hide lg:gap-8 gap-5 p-10 z-30 "
+ className="scroll flex h-full w-full items-center select-none overflow-x-scroll whitespace-nowrap overflow-y-hidden scrollbar-hide lg:gap-8 gap-3 lg:p-10 py-8 px-5 z-30 scroll-smooth"
onScroll={handleScroll}
+ onMouseDown={handleMouseDown}
+ onMouseUp={handleMouseUp}
+ onMouseMove={handleMouseMove}
+ onClick={handleClick}
+ ref={containerRef}
>
- {filteredData?.map((anime) => {
+ {slicedData?.map((anime) => {
+ const progress = og?.find((i) => i.mediaId === anime.id);
return (
<div
key={anime.id}
@@ -52,8 +129,39 @@ export default function Content({ ids, section, data }) {
>
<Link
href={`/anime/${anime.id}`}
- className="hover:scale-105 group relative duration-300 ease-in-out"
+ className="hover:scale-105 hover:shadow-lg group relative duration-300 ease-out"
>
+ {ids === "onGoing" && (
+ <div className="h-[190px] w-[135px] lg:h-[265px] lg:w-[185px] bg-gradient-to-b from-transparent to-black absolute z-40 rounded-md whitespace-normal font-karla group">
+ <div className="flex flex-col items-center h-full justify-end text-center pb-5">
+ <h1 className="line-clamp-1 w-[70%] text-[10px]">
+ {anime.title.romaji || anime.title.english}
+ </h1>
+ {checkProgress(progress) &&
+ !clicked?.hasOwnProperty(anime.id) && (
+ <ExclamationCircleIcon className="w-7 h-7 absolute z-40 -top-3 -right-3" />
+ )}
+ {checkProgress(progress) && (
+ <div
+ onClick={() => handleAlert(anime.id)}
+ className="group-hover:visible invisible absolute top-0 bg-black bg-opacity-20 w-full h-full z-20 text-center"
+ >
+ <h1 className="text-[12px] lg:text-sm pt-28 lg:pt-44 font-bold opacity-100">
+ {checkProgress(progress)}
+ </h1>
+ </div>
+ )}
+ <div className="flex gap-1 text-[13px] lg:text-base">
+ <h1>Episode {anime.nextAiringEpisode.episode} in</h1>
+ <h1 className="font-bold">
+ {convertSecondsToTime(
+ anime?.nextAiringEpisode?.timeUntilAiring
+ )}
+ </h1>
+ </div>
+ </div>
+ </div>
+ )}
<Image
draggable={false}
src={
@@ -72,17 +180,27 @@ export default function Content({ ids, section, data }) {
anime.coverImage?.large ||
"https://cdn.discordapp.com/attachments/986579286397964290/1058415946945003611/gray_pfp.png"
}
- className="z-20 h-[192px] w-[135px] lg:h-[265px] lg:w-[185px] object-cover rounded-md"
+ className="z-20 h-[190px] w-[135px] lg:h-[265px] lg:w-[185px] object-cover rounded-md brightness-90"
/>
</Link>
</div>
);
})}
+ {filteredData.length >= 10 && section !== "Recommendations" && (
+ <div key={section} className="flex ">
+ <div className="h-[190px] w-[135px] lg:h-[265px] lg:w-[185px] object-cover rounded-md border-secondary border-2 flex flex-col gap-2 items-center text-center justify-center text-[#6a6a6a]">
+ <h1 className="whitespace-pre-wrap text-sm">
+ More on {section}
+ </h1>
+ <ArrowRightCircleIcon className="w-5 h-5" />
+ </div>
+ </div>
+ )}
</div>
<MdChevronRight
onClick={slideRight}
size={30}
- className={`mb-5 cursor-pointer hover:text-action absolute right-0 bg-gradient-to-l from-[#141519] z-40 h-full hover:opacity-100 hover:bg-gradient-to-l ${
+ className={`hidden md:block mb-5 cursor-pointer hover:text-action absolute right-0 bg-gradient-to-l from-[#141519] z-40 h-full hover:opacity-100 hover:bg-gradient-to-l ${
scrollRight ? "visible" : "hidden"
}`}
/>
@@ -90,3 +208,37 @@ export default function Content({ ids, section, data }) {
</div>
);
}
+
+function convertSecondsToTime(sec) {
+ let days = Math.floor(sec / (3600 * 24));
+ let hours = Math.floor((sec % (3600 * 24)) / 3600);
+ let minutes = Math.floor((sec % 3600) / 60);
+
+ let time = "";
+
+ if (days > 0) {
+ time += `${days}d `;
+ time += `${hours}h`;
+ } else {
+ time += `${hours}h `;
+ time += `${minutes}m`;
+ }
+
+ return time.trim();
+}
+
+function checkProgress(entry) {
+ const { progress, media } = entry;
+ const { episodes, nextAiringEpisode } = media;
+
+ if (nextAiringEpisode !== null) {
+ const { episode } = nextAiringEpisode;
+
+ if (episode - progress > 1) {
+ const missedEpisodes = episode - progress - 1;
+ return `${missedEpisodes} episode${missedEpisodes > 1 ? "s" : ""} behind`;
+ }
+ }
+
+ return;
+}