Compare commits

...

3 commits

Author SHA1 Message Date
68a7117a97
allow fullscreen iframe if cannot use custom player
Some checks failed
V3 Preview Deployment / Deploy-Preview (push) Has been cancelled
2025-03-29 20:19:09 +05:00
9e4bf1ac71
feat: allow to drag slider in episode selector 2025-03-29 20:17:22 +05:00
66721c6d6a
chore: update packages 2025-03-29 20:00:07 +05:00
5 changed files with 1103 additions and 291 deletions

View file

@ -67,7 +67,10 @@ export const EpisodeSelector = (props: {
enabled: true,
sensitivity: 4,
}}
scrollbar={true}
scrollbar={{
enabled: true,
draggable: true,
}}
allowTouchMove={true}
style={
{
@ -79,6 +82,7 @@ export const EpisodeSelector = (props: {
<SwiperSlide
key={`episode_${episode.position}`}
style={{ maxWidth: "fit-content" }}
className="pb-2"
>
<Button
color={

View file

@ -314,9 +314,12 @@ export const ReleasePlayer = (props: { id: number }) => {
direction={"horizontal"}
mousewheel={{
enabled: true,
sensitivity: 2,
sensitivity: 4,
}}
scrollbar={{
enabled: true,
draggable: true,
}}
scrollbar={true}
allowTouchMove={true}
style={
{
@ -328,6 +331,7 @@ export const ReleasePlayer = (props: { id: number }) => {
<SwiperSlide
key={`episode_${episode.position}`}
style={{ maxWidth: "fit-content" }}
className="pb-2"
>
<Button
color={

View file

@ -433,7 +433,7 @@ export const ReleasePlayerCustom = (props: {
}
</div>
: <iframe src={playerProps.src} className="w-full aspect-video" />}
: <iframe src={playerProps.src} className="w-full aspect-video" allowFullScreen={true} />}
</div>
<div>

1376
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -16,7 +16,7 @@
"hls-video-element": "^1.5.0",
"markdown-to-jsx": "^7.4.7",
"media-chrome": "^4.8.0",
"next": "^14.2.13",
"next": "^14.2.26",
"next-plausible": "^3.12.1",
"react": "^18",
"react-cropper": "^2.3.3",