File size: 6,451 Bytes
d092f57 | 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 | "use client"
import { FC, ReactNode, useState } from "react"
import { MediaElement, MediaOption, Subtitle } from "../../lib/types"
import DropUp from "../action/DropUp"
import InputRadio from "../input/InputRadio"
import ControlButton from "../input/ControlButton"
import IconCC from "../icon/IconCC"
import IconClose from "../icon/IconClose"
import IconCog from "../icon/IconCog"
import IconChevron from "../icon/IconChevron"
import IconSettings from "../icon/IconSettings"
import classNames from "classnames"
import Button from "../action/Button"
import IconLoop from "../icon/IconLoop"
import IconShare from "components/icon/IconShare"
import Link from "next/link"
import IconNewTab from "components/icon/IconNewTab"
import { useRouter } from 'next/navigation'
interface Props {
roomId: string
playing: MediaElement
currentSrc: MediaOption
setCurrentSrc: (src: MediaOption) => void
currentSub: Subtitle
setCurrentSub: (sub: Subtitle) => void
loop: boolean
setLoop: (loop: boolean) => void
interaction: (touch: boolean) => void
playbackRate: number
setPlaybackRate: (playbackRate: number) => void
menuOpen: boolean
setMenuOpen: (open: boolean) => void
}
interface Tab {
icon: ReactNode
title: ReactNode
content: ReactNode
}
const PlayerMenu: FC<Props> = ({
roomId,
playing,
currentSrc,
setCurrentSrc,
currentSub,
setCurrentSub,
loop,
setLoop,
interaction,
playbackRate,
setPlaybackRate,
menuOpen,
setMenuOpen,
}) => {
const [tab, setTab] = useState(-1)
const router = useRouter()
const tabs: Tab[] = [
{
icon: <IconSettings />,
title: "Playback rate",
content: (
<InputRadio
value={playbackRate.toString()}
options={[
"3",
"2",
"1.75",
"1.5",
"1.25",
"1",
"0.75",
"0.5",
"0.25",
]}
setValue={(rate) => setPlaybackRate(parseFloat(rate))}
interaction={interaction}
/>
),
},
{
icon: <IconLoop />,
title: "Loop",
content: (
<Button tooltip={"Click to toggle loop"} onClick={() => setLoop(!loop)}>
{loop ? "Disable loop" : "Enable loop"}
</Button>
),
},
{
icon: <IconShare />,
title: "Open embed",
content: (
<div className="flex flex-col">
<Button tooltip="Switch to full player" className="action flex flex-row gap-1 p-2" onClick={() => {
router.push("/room/" + roomId)
}}>
<IconNewTab />
<span>
Switch to full player
</span>
</Button>
<Button tooltip="Switch to embed player" className="action flex flex-row gap-1 p-2" onClick={() => {
router.push("/embed/" + roomId)
}}>
<IconNewTab />
<span>
Switch to embed player
</span>
</Button>
<Link href={"/room/" + roomId} target="_blank" className="action flex flex-row gap-1 p-2">
<IconNewTab />
<span>
Open full player in new tab
</span>
</Link>
<Link href={"/embed/" + roomId} target="_blank" className="action flex flex-row gap-1 p-2">
<IconNewTab />
<span>
Open embed player in new tab
</span>
</Link>
</div>
)
}
]
if (playing.src.length > 1) {
tabs.push({
icon: <IconSettings />,
title: "Resolution",
content: (
<InputRadio
value={currentSrc.resolution}
options={playing.src.map((option) => option.resolution)}
setValue={(resolution) => {
const newSrc = playing.src.find(
(src) => src.resolution === resolution
)
if (newSrc) {
setCurrentSrc(newSrc)
} else {
console.error(
"Impossible resolution",
resolution,
"not found in",
playing
)
}
}}
interaction={interaction}
/>
),
})
}
if (playing.sub.length > 1) {
tabs.push({
icon: <IconCC />,
title: "Subtitle",
content: (
<InputRadio
value={currentSub.lang}
options={playing.sub.map((sub) => sub.lang)}
setValue={(lang) => {
const newSub = playing.sub.find((sub) => sub.lang === lang)
if (newSub) {
setCurrentSub(newSub)
} else {
console.error("Impossible sub", newSub, "not found in", playing)
}
}}
interaction={interaction}
/>
),
})
}
const displayIcon = (icon: ReactNode, className: string = "") => {
return <div className={classNames("w-8", className)}>{icon}</div>
}
return (
<DropUp
tooltip={"settings"}
className={"-left-[180px] bg-dark-900/90"}
open={menuOpen}
menuChange={setMenuOpen}
interaction={interaction}
buttonContent={<IconCog />}
>
<div className={"w-[240px]"}>
<div className={"flex no-wrap items-center flex-row"}>
{tab >= 0 && (
<>
<ControlButton
tooltip={"Go back"}
onClick={() => setTab(-1)}
interaction={interaction}
>
<IconChevron direction={"left"} />
</ControlButton>
{displayIcon(tabs[tab].icon, "ml-1")}
<div className={"px-1"}>{tabs[tab].title}</div>
</>
)}
<ControlButton
tooltip={"Close menu"}
className={"ml-auto"}
onClick={() => setMenuOpen(false)}
interaction={interaction}
>
<IconClose />
</ControlButton>
</div>
{tab < 0 &&
tabs.map((t, index) => (
<ControlButton
tooltip={"Adjust " + t.title}
key={t.title + "-" + index}
onClick={() => setTab(index)}
interaction={interaction}
className={"flex flex-row items-center"}
>
{displayIcon(t.icon)}
{t.title}
</ControlButton>
))}
{tab >= 0 && tabs[tab].content}
</div>
</DropUp>
)
}
export default PlayerMenu
|