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
|
"use client";
import { useState, useEffect } from "react";
import { MediaPlayer, MediaProvider } from "@vidstack/react";
import "@vidstack/react/player/styles/default/theme.css";
import "@vidstack/react/player/styles/default/layouts/video.css";
import {
defaultLayoutIcons,
DefaultVideoLayout,
} from "@vidstack/react/player/layouts/default";
import styles from "../styles/buttons.module.css";
import { video_url } from "../data-fetch/request";
import { preFetchVideoLinks } from "./cacher";
const EpisodesButtons = ({ data: data }) => {
const [videoLink, setVideoLink] = useState(null);
const [buttonGroups, setButtonGroups] = useState(null);
const [videoLoading, setVideoLoading] = useState(null);
useEffect(() => {
setButtonGroups(createButtonGroups(0, 50));
}, []);
const groups = createGroups(data.episodes, 50);
async function getVideoURL(epID) {
setVideoLoading(true);
const data = await video_url(epID);
setVideoLink(data.sources[data.sources.length - 2].url);
setVideoLoading(false);
}
function createButtonGroups(start, end) {
try {
document.getElementById("episode-button").style.backgroundColor =
"#1f1f1fd2";
} catch (error) {
console.error(
"ERROR: This error is expected. This is done in order to reset the background color of the buttons. I can't think of a better way than this....so yeah.",
error.message
);
}
return (
<div className={styles.animeButtonContainer}>
{data.episodes &&
data.episodes.slice(start, end).map((item, index) => (
<button
className={styles.dramaButton}
key={index}
id="episode-button"
onClick={(event) => {
event.target.style.backgroundColor =
"var(--soft-purple)";
getVideoURL(item.id);
// store_to_local(
// info.title,
// info.image,
// item.number,
// info.id
// );
}}
>
{item.number}
</button>
))}
</div>
);
}
function handleSelectChange(event) {
const selectedIndex = event.target.selectedIndex;
const selectedGroup = groups[selectedIndex];
if (selectedGroup) {
setButtonGroups(
createButtonGroups(
selectedGroup[0].number - 1,
selectedGroup[selectedGroup.length - 1].number
)
);
preFetchVideoLinks(
data.episodes.slice(
selectedGroup[0].number - 1,
selectedGroup[selectedGroup.length - 1].number
)
);
}
}
return (
<main className={styles.Main}>
{data.episodes && (
<select
onChange={(event) => handleSelectChange(event)}
className={styles.SelectClass}
>
{groups &&
groups.map((item, index) => (
<option key={index}>
{item[0].number} -{" "}
{item[item.length - 1].number}
</option>
))}
</select>
)}
{buttonGroups}
{videoLoading && (
<p style={{ margin: "0.5rem 0 0 0" }}>Loading...</p>
)}
{videoLink && (
<div className={styles.videoPopUp} id="popup">
<div className={styles.video}>
<MediaPlayer
title="dramaPlayer"
src={videoLink}
aspectRatio="16/9"
load="eager"
className={styles.VideoPlayer}
playsInline
id="videoPlayer"
volume={0.8}
>
<MediaProvider />
<DefaultVideoLayout icons={defaultLayoutIcons} />
</MediaPlayer>
<button
className={styles.closeButton}
onClick={() => {
setVideoLink("");
}}
>
Close
</button>
</div>
</div>
)}
</main>
);
};
function createGroups(array, size) {
const groups = [];
for (let i = 0; i < array.length; i += size) {
groups.push(array.slice(i, i + size));
}
return groups;
}
export default EpisodesButtons;
|