123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782 |
- <script setup lang="ts">
- import { computed, onBeforeUnmount, onMounted, ref } from "vue";
- import Toast from "toasters";
- import { useYoutubePlayer } from "@/composables/useYoutubePlayer";
- import { useStationStore } from "@/stores/station";
- import aw from "@/aw";
- const props = defineProps<{
- song: {
- mediaSource: string;
- title: string;
- artists: string[];
- duration: number;
- };
- }>();
- const {
- player: youtubePlayer,
- updatePlayer: youtubeUpdatePlayer,
- loadVideoById: youtubeLoadVideoById,
- playVideo: youtubePlayVideo,
- pauseVideo: youtubePauseVideo,
- stopVideo: youtubeStopVideo,
- setPlaybackRate: youtubeSetPlaybackRate
- } = useYoutubePlayer();
- const { updateMediaModalPlayingAudio } = useStationStore();
- const interval = ref(null);
- const canvasWidth = ref(760);
- const volumeSliderValue = ref(20);
- const durationCanvas = ref(null);
- const duration = ref(props.song.duration);
- const activityWatchMediaDataInterval = ref(null);
- const activityWatchMediaLastStatus = ref("");
- const activityWatchMediaLastStartDuration = ref(0);
- const playerElement = ref(null);
- const youtubeId = computed(() => props.song.mediaSource.split(":")[1]);
- const seekTo = position => {
- youtubePlayVideo();
- youtubePlayer.value.player.seekTo(position);
- };
- const settings = type => {
- switch (type) {
- case "stop":
- youtubeStopVideo();
- youtubePauseVideo();
- break;
- case "pause":
- youtubePauseVideo();
- break;
- case "play":
- youtubePlayVideo();
- break;
- case "skipToLast10Secs":
- seekTo(Number(youtubePlayer.value.duration) - 10);
- break;
- default:
- break;
- }
- };
- const play = () => {
- if (
- youtubePlayer.value.player.getVideoData().video_id !== youtubeId.value
- ) {
- duration.value = -1;
- youtubeLoadVideoById(youtubeId.value);
- }
- settings("play");
- };
- const changeVolume = () => {
- const { volume } = youtubePlayer.value;
- localStorage.setItem("volume", `${volume}`);
- youtubePlayer.value.player.setVolume(volume);
- if (volume > 0) {
- youtubePlayer.value.player.unMute();
- youtubePlayer.value.muted = false;
- }
- };
- const toggleMute = () => {
- const previousVolume = parseFloat(localStorage.getItem("volume"));
- const volume =
- youtubePlayer.value.player.getVolume() <= 0 ? previousVolume : 0;
- youtubePlayer.value.muted = !youtubePlayer.value.muted;
- volumeSliderValue.value = volume;
- youtubePlayer.value.player.setVolume(volume);
- if (!youtubePlayer.value.muted)
- localStorage.setItem("volume", volume.toString());
- };
- const drawCanvas = () => {
- const canvasElement = durationCanvas.value;
- if (!canvasElement) return;
- const ctx = canvasElement.getContext("2d");
- const videoDuration = Number(youtubePlayer.value.duration);
- const _duration = Number(duration.value);
- const afterDuration = videoDuration - _duration;
- canvasWidth.value = Math.min(document.body.clientWidth - 40, 760);
- const width = canvasWidth.value;
- const currentTime =
- youtubePlayer.value.player && youtubePlayer.value.player.getCurrentTime
- ? youtubePlayer.value.player.getCurrentTime()
- : 0;
- const widthDuration = (_duration / videoDuration) * width;
- const widthAfterDuration = (afterDuration / videoDuration) * width;
- const widthCurrentTime = (currentTime / videoDuration) * width;
- const durationColor = "#03A9F4";
- const afterDurationColor = "#41E841";
- const currentDurationColor = "#3b25e8";
- ctx.fillStyle = durationColor;
- ctx.fillRect(0, 0, widthDuration, 20);
- ctx.fillStyle = afterDurationColor;
- ctx.fillRect(widthDuration, 0, widthAfterDuration, 20);
- ctx.fillStyle = currentDurationColor;
- ctx.fillRect(widthCurrentTime, 0, 1, 20);
- };
- const setTrackPosition = event => {
- seekTo(
- Number(
- Number(youtubePlayer.value.player.getDuration()) *
- ((event.pageX - event.target.getBoundingClientRect().left) /
- canvasWidth.value)
- )
- );
- };
- const sendActivityWatchMediaData = () => {
- if (
- !youtubePlayer.value.paused &&
- youtubePlayer.value.player.getPlayerState() ===
- window.YT.PlayerState.PLAYING
- ) {
- if (activityWatchMediaLastStatus.value !== "playing") {
- activityWatchMediaLastStatus.value = "playing";
- activityWatchMediaLastStartDuration.value = Math.floor(
- Number(youtubePlayer.value.currentTime)
- );
- }
- const videoData = {
- title: props.song.title,
- artists: props.song.artists?.join(", ") || "",
- mediaSource: props.song.mediaSource,
- muted: youtubePlayer.value.muted,
- volume: youtubePlayer.value.volume,
- startedDuration:
- activityWatchMediaLastStartDuration.value <= 0
- ? 0
- : activityWatchMediaLastStartDuration.value,
- source: `viewMedia#${props.song.mediaSource}`,
- hostname: window.location.hostname,
- playerState: Object.keys(window.YT.PlayerState).find(
- key =>
- window.YT.PlayerState[key] ===
- youtubePlayer.value.player.getPlayerState()
- ),
- playbackRate: youtubePlayer.value.playbackRate
- };
- aw.sendMediaData(videoData);
- } else {
- activityWatchMediaLastStatus.value = "not_playing";
- }
- };
- onMounted(() => {
- interval.value = setInterval(() => {
- if (
- duration.value !== -1 &&
- youtubePlayer.value.paused === false &&
- youtubePlayer.value.playerReady &&
- (youtubePlayer.value.player.getCurrentTime() > duration.value ||
- (youtubePlayer.value.player.getCurrentTime() > 0 &&
- youtubePlayer.value.player.getCurrentTime() >=
- youtubePlayer.value.player.getDuration()))
- ) {
- youtubeStopVideo();
- youtubePauseVideo();
- drawCanvas();
- }
- if (
- youtubePlayer.value.playerReady &&
- youtubePlayer.value.player.getVideoData &&
- youtubePlayer.value.player.getVideoData() &&
- youtubePlayer.value.player.getVideoData().video_id ===
- youtubeId.value
- ) {
- const currentTime = youtubePlayer.value.player.getCurrentTime();
- if (currentTime !== undefined)
- youtubePlayer.value.currentTime = currentTime.toFixed(3);
- if (youtubePlayer.value.duration.indexOf(".000") !== -1) {
- const duration = youtubePlayer.value.player.getDuration();
- if (duration !== undefined) {
- if (
- `${youtubePlayer.value.duration}` ===
- `${Number(duration.value).toFixed(3)}`
- )
- duration.value = duration.toFixed(3);
- youtubePlayer.value.duration = duration.toFixed(3);
- if (youtubePlayer.value.duration.indexOf(".000") !== -1)
- youtubePlayer.value.videoNote = "(~)";
- else youtubePlayer.value.videoNote = "";
- drawCanvas();
- }
- }
- }
- if (youtubePlayer.value.paused === false) drawCanvas();
- }, 200);
- activityWatchMediaDataInterval.value = setInterval(() => {
- sendActivityWatchMediaData();
- }, 1000);
- if (window.YT && window.YT.Player) {
- youtubePlayer.value.player = new window.YT.Player(playerElement.value, {
- height: 298,
- width: 530,
- videoId: youtubeId.value,
- host: "https://www.youtube-nocookie.com",
- playerVars: {
- controls: 0,
- iv_load_policy: 3,
- rel: 0,
- showinfo: 0,
- autoplay: 0
- },
- events: {
- onReady: () => {
- let volume = parseFloat(localStorage.getItem("volume"));
- volume = typeof volume === "number" ? volume : 20;
- youtubePlayer.value.player.setVolume(volume);
- if (volume > 0) youtubePlayer.value.player.unMute();
- youtubePlayer.value.playerReady = true;
- youtubePlayer.value.player.cueVideoById(youtubeId.value);
- youtubeSetPlaybackRate();
- drawCanvas();
- },
- onStateChange: event => {
- drawCanvas();
- if (event.data === 1) {
- youtubePlayer.value.paused = false;
- updateMediaModalPlayingAudio(true);
- const youtubeDuration =
- youtubePlayer.value.player.getDuration();
- const newYoutubeVideoDuration =
- youtubeDuration.toFixed(3);
- if (
- youtubePlayer.value.duration.indexOf(".000") !==
- -1 &&
- `${youtubePlayer.value.duration}` !==
- `${newYoutubeVideoDuration}`
- ) {
- const songDurationNumber = Number(duration.value);
- const songDurationNumber2 =
- Number(duration.value) + 1;
- const songDurationNumber3 =
- Number(duration.value) - 1;
- const fixedSongDuration =
- songDurationNumber.toFixed(3);
- const fixedSongDuration2 =
- songDurationNumber2.toFixed(3);
- const fixedSongDuration3 =
- songDurationNumber3.toFixed(3);
- if (
- `${youtubePlayer.value.duration}` ===
- `${Number(duration.value).toFixed(3)}` &&
- (fixedSongDuration ===
- youtubePlayer.value.duration ||
- fixedSongDuration2 ===
- youtubePlayer.value.duration ||
- fixedSongDuration3 ===
- youtubePlayer.value.duration)
- )
- duration.value = newYoutubeVideoDuration;
- youtubePlayer.value.duration =
- newYoutubeVideoDuration;
- if (
- youtubePlayer.value.duration.indexOf(".000") !==
- -1
- )
- youtubePlayer.value.videoNote = "(~)";
- else youtubePlayer.value.videoNote = "";
- }
- if (duration.value === -1)
- duration.value = Number(
- youtubePlayer.value.duration
- );
- if (duration.value > youtubeDuration + 1) {
- youtubeStopVideo();
- youtubePauseVideo();
- return new Toast(
- "Video can't play. Specified duration is bigger than the YouTube song duration."
- );
- }
- if (duration.value <= 0) {
- youtubeStopVideo();
- youtubePauseVideo();
- return new Toast(
- "Video can't play. Specified duration has to be more than 0 seconds."
- );
- }
- youtubeSetPlaybackRate();
- } else if (event.data === 2) {
- youtubePlayer.value.paused = true;
- updateMediaModalPlayingAudio(false);
- }
- return false;
- }
- }
- });
- } else {
- youtubeUpdatePlayer({
- error: true,
- errorMessage: "Player could not be loaded."
- });
- }
- let volume = parseFloat(localStorage.getItem("volume"));
- volume = typeof volume === "number" && !Number.isNaN(volume) ? volume : 20;
- localStorage.setItem("volume", volume.toString());
- youtubeUpdatePlayer({ volume });
- });
- onBeforeUnmount(() => {
- clearInterval(interval.value);
- youtubeStopVideo();
- youtubePauseVideo();
- updateMediaModalPlayingAudio(false);
- youtubePlayer.value.duration = "0.000";
- youtubePlayer.value.currentTime = 0;
- youtubePlayer.value.playerReady = false;
- youtubePlayer.value.videoNote = "";
- clearInterval(activityWatchMediaDataInterval.value);
- });
- </script>
- <template>
- <div class="player-section">
- <div class="player-container">
- <div ref="playerElement"></div>
- </div>
- <div v-show="youtubePlayer.error" class="player-error">
- <h2>{{ youtubePlayer.errorMessage }}</h2>
- </div>
- <canvas
- ref="durationCanvas"
- class="duration-canvas"
- v-show="!youtubePlayer.error"
- height="20"
- :width="canvasWidth"
- @click="setTrackPosition($event)"
- />
- <div class="player-footer">
- <div class="player-footer-left">
- <button
- class="button is-primary"
- @click="play()"
- @keyup.enter="play()"
- v-if="youtubePlayer.paused"
- content="Resume Playback"
- v-tippy
- >
- <i class="material-icons">play_arrow</i>
- </button>
- <button
- class="button is-primary"
- @click="settings('pause')"
- @keyup.enter="settings('pause')"
- v-else
- content="Pause Playback"
- v-tippy
- >
- <i class="material-icons">pause</i>
- </button>
- <button
- class="button is-danger"
- @click.exact="settings('stop')"
- @click.shift="settings('hardStop')"
- @keyup.enter.exact="settings('stop')"
- @keyup.shift.enter="settings('hardStop')"
- content="Stop Playback"
- v-tippy
- >
- <i class="material-icons">stop</i>
- </button>
- <tippy
- class="playerRateDropdown"
- :touch="true"
- :interactive="true"
- placement="bottom"
- theme="dropdown"
- ref="dropdown"
- trigger="click"
- append-to="parent"
- @show="
- () => {
- youtubePlayer.showRateDropdown = true;
- }
- "
- @hide="
- () => {
- youtubePlayer.showRateDropdown = false;
- }
- "
- >
- <div
- ref="trigger"
- class="control has-addons"
- content="Set Playback Rate"
- v-tippy
- >
- <button class="button is-primary">
- <i class="material-icons">fast_forward</i>
- </button>
- <button class="button dropdown-toggle">
- <i class="material-icons">
- {{
- youtubePlayer.showRateDropdown
- ? "expand_more"
- : "expand_less"
- }}
- </i>
- </button>
- </div>
- <template #content>
- <div class="nav-dropdown-items">
- <button
- class="nav-item button"
- :class="{
- active: youtubePlayer.playbackRate === 0.5
- }"
- title="0.5x"
- @click="youtubeSetPlaybackRate(0.5)"
- >
- <p>0.5x</p>
- </button>
- <button
- class="nav-item button"
- :class="{
- active: youtubePlayer.playbackRate === 1
- }"
- title="1x"
- @click="youtubeSetPlaybackRate(1)"
- >
- <p>1x</p>
- </button>
- <button
- class="nav-item button"
- :class="{
- active: youtubePlayer.playbackRate === 2
- }"
- title="2x"
- @click="youtubeSetPlaybackRate(2)"
- >
- <p>2x</p>
- </button>
- </div>
- </template>
- </tippy>
- </div>
- <div class="player-footer-center">
- <span>
- <span>
- {{ youtubePlayer.currentTime }}
- </span>
- /
- <span>
- {{ youtubePlayer.duration }}
- {{ youtubePlayer.videoNote }}
- </span>
- </span>
- </div>
- <div class="player-footer-right">
- <p id="volume-control">
- <i
- class="material-icons"
- @click="toggleMute()"
- :content="`${youtubePlayer.muted ? 'Unmute' : 'Mute'}`"
- v-tippy
- >{{
- youtubePlayer.muted
- ? "volume_mute"
- : youtubePlayer.volume >= 50
- ? "volume_up"
- : "volume_down"
- }}</i
- >
- <input
- v-model="youtubePlayer.volume"
- type="range"
- min="0"
- max="100"
- class="volume-slider active"
- @change="changeVolume()"
- @input="changeVolume()"
- />
- </p>
- </div>
- </div>
- </div>
- </template>
- <style lang="less" scoped>
- .night-mode {
- .player-section {
- background-color: var(--dark-grey-3) !important;
- border: 0 !important;
- .duration-canvas {
- background-color: var(--dark-grey-2) !important;
- }
- }
- }
- .player-section {
- display: flex;
- flex-direction: column;
- margin: 10px auto 0 auto;
- border: 1px solid var(--light-grey-3);
- border-radius: @border-radius;
- overflow: hidden;
- .player-container {
- position: relative;
- padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
- height: 0;
- overflow: hidden;
- :deep(iframe) {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- min-height: 200px;
- }
- }
- .duration-canvas {
- background-color: var(--light-grey-2);
- }
- .player-error {
- display: flex;
- height: 428px;
- align-items: center;
- * {
- margin: 0;
- flex: 1;
- font-size: 30px;
- text-align: center;
- }
- }
- .player-footer {
- display: flex;
- justify-content: space-between;
- height: 54px;
- padding-left: 10px;
- padding-right: 10px;
- > * {
- width: 33.3%;
- display: flex;
- align-items: center;
- }
- .player-footer-left {
- flex: 1;
- & > .button:not(:first-child) {
- margin-left: 5px;
- }
- & > .playerRateDropdown {
- margin-left: 5px;
- margin-bottom: unset !important;
- .control.has-addons {
- margin-bottom: unset !important;
- & > .button {
- font-size: 24px;
- }
- }
- }
- :deep(.tippy-box[data-theme~="dropdown"]) {
- max-width: 100px !important;
- .nav-dropdown-items .nav-item {
- justify-content: center !important;
- border-radius: @border-radius !important;
- &.active {
- background-color: var(--primary-color);
- color: var(--white);
- }
- }
- }
- }
- .player-footer-center {
- justify-content: center;
- align-items: center;
- flex: 2;
- font-size: 18px;
- font-weight: 400;
- width: 200px;
- margin: 0 5px;
- img {
- height: 21px;
- margin-right: 12px;
- filter: invert(26%) sepia(54%) saturate(6317%) hue-rotate(2deg)
- brightness(92%) contrast(115%);
- }
- }
- .player-footer-right {
- justify-content: right;
- flex: 1;
- #volume-control {
- margin: 3px;
- margin-top: 0;
- display: flex;
- align-items: center;
- cursor: pointer;
- .volume-slider {
- width: 100%;
- padding: 0 15px;
- background: transparent;
- min-width: 100px;
- }
- input[type="range"] {
- -webkit-appearance: none;
- margin: 7.3px 0;
- }
- input[type="range"]:focus {
- outline: none;
- }
- input[type="range"]::-webkit-slider-runnable-track {
- width: 100%;
- height: 5.2px;
- cursor: pointer;
- box-shadow: 0;
- background: var(--light-grey-3);
- border-radius: @border-radius;
- border: 0;
- }
- input[type="range"]::-webkit-slider-thumb {
- box-shadow: 0;
- border: 0;
- height: 19px;
- width: 19px;
- border-radius: 100%;
- background: var(--primary-color);
- cursor: pointer;
- -webkit-appearance: none;
- margin-top: -6.5px;
- }
- input[type="range"]::-moz-range-track {
- width: 100%;
- height: 5.2px;
- cursor: pointer;
- box-shadow: 0;
- background: var(--light-grey-3);
- border-radius: @border-radius;
- border: 0;
- }
- input[type="range"]::-moz-range-thumb {
- box-shadow: 0;
- border: 0;
- height: 19px;
- width: 19px;
- border-radius: 100%;
- background: var(--primary-color);
- cursor: pointer;
- -webkit-appearance: none;
- margin-top: -6.5px;
- }
- input[type="range"]::-ms-track {
- width: 100%;
- height: 5.2px;
- cursor: pointer;
- box-shadow: 0;
- background: var(--light-grey-3);
- border-radius: @border-radius;
- }
- input[type="range"]::-ms-fill-lower {
- background: var(--light-grey-3);
- border: 0;
- border-radius: 0;
- box-shadow: 0;
- }
- input[type="range"]::-ms-fill-upper {
- background: var(--light-grey-3);
- border: 0;
- border-radius: 0;
- box-shadow: 0;
- }
- input[type="range"]::-ms-thumb {
- box-shadow: 0;
- border: 0;
- height: 15px;
- width: 15px;
- border-radius: 100%;
- background: var(--primary-color);
- cursor: pointer;
- -webkit-appearance: none;
- margin-top: 1.5px;
- }
- }
- }
- }
- }
- </style>
|