mirror of
https://github.com/nuttylmao/nutty.gg.git
synced 2026-09-19 04:00:59 -04:00
127 lines
3.7 KiB
JavaScript
127 lines
3.7 KiB
JavaScript
///////////////////
|
|
// PAGE ELEMENTS //
|
|
///////////////////
|
|
|
|
const mainWrapper = document.getElementById('main-wrapper');
|
|
const albumArtContainer = document.getElementById('album-art-container');
|
|
// const songInfoContainer = document.getElementById('song-info-container');
|
|
const albumArtLayer = document.getElementById('album-art-layer');
|
|
const albumArtTransition = document.getElementById('album-art-transition-layer');
|
|
const progressCircle = document.getElementById('progress-pie-circle');
|
|
const vinylContainer = document.getElementById('vinyl-container');
|
|
|
|
///////////////
|
|
// CONSTANTS //
|
|
///////////////
|
|
|
|
const circumference = 157.1;
|
|
|
|
|
|
|
|
|
|
////////////////
|
|
// PAGE SETUP //
|
|
////////////////
|
|
|
|
// Set container width
|
|
if (maxWidth > 0)
|
|
mainWrapper.style.width = `${maxWidth}px`;
|
|
else
|
|
mainWrapper.style.width = `100%`;
|
|
|
|
// Set progress bar visibility
|
|
if (!showProgressBar)
|
|
progressCircle.style.display = 'none';
|
|
|
|
|
|
|
|
////////////////////
|
|
// CORE FUNCTIONS //
|
|
////////////////////
|
|
|
|
async function ChangeTrack(mediaProps) {
|
|
// // Fade in the overlay (shows the new text)
|
|
albumArtLayer.style.opacity = "0";
|
|
|
|
// Wait for fade (0.5s), then swap the real text and hide overlay
|
|
setTimeout(() => {
|
|
|
|
// Extract the image source string (use fallback if Windows has no art)
|
|
const newArtUrl = mediaProps.Thumbnail ?? './images/placeholder.png';
|
|
|
|
// Set the image
|
|
albumArtLayer.style.backgroundImage = `url('${newArtUrl}')`;
|
|
albumArtLayer.style.opacity = "";
|
|
|
|
setTimeout(() => {
|
|
// Set the image
|
|
albumArtTransition.style.backgroundImage = `url('${newArtUrl}')`;
|
|
SetVisibility(true); // Show the overlay for a few seconds if autoHide is enabled
|
|
}, 250);
|
|
}, 250);
|
|
}
|
|
|
|
function SetProgressInfo(timelineProps, currentPositionMs, accentColorPalette, playbackStatus) {
|
|
// Set progressbar
|
|
// Ensure we don't divide by zero or exceed 100%
|
|
const durationMs = timelineProps.EndTime;
|
|
progressPercent = durationMs > 0 ? (currentPositionMs / durationMs) * 100 : 0;
|
|
progressPercent = Math.min(100, Math.max(0, progressPercent));
|
|
if (!useCustomColors)
|
|
document.documentElement.style.setProperty('--accent-color', `${accentColorPalette.LightVibrant}`);
|
|
else
|
|
document.documentElement.style.setProperty('--accent-color', color1);
|
|
|
|
// Calculate the offset.
|
|
// 0% progress = 157.1 offset. 100% progress = 0 offset.
|
|
const offset = circumference - (progressPercent / 100) * circumference;
|
|
progressCircle.style.strokeDashoffset = offset;
|
|
|
|
// Adjust 'Paused' check to match whatever string/value your backend sends
|
|
if (playbackStatus === PlaybackStatus.PAUSED)
|
|
setVinylPaused(true);
|
|
else
|
|
setVinylPaused(false);
|
|
}
|
|
|
|
const vinylAnimation = vinylContainer.animate(
|
|
[
|
|
{ transform: "rotate(0deg)" },
|
|
{ transform: "rotate(360deg)" }
|
|
],
|
|
{
|
|
duration: 10000,
|
|
iterations: Infinity,
|
|
easing: "linear"
|
|
}
|
|
);
|
|
|
|
let animationFrame;
|
|
|
|
function setVinylPaused(shouldPause) {
|
|
cancelAnimationFrame(animationFrame);
|
|
|
|
const from = vinylAnimation.playbackRate;
|
|
const to = shouldPause ? 0 : 1;
|
|
const duration = 700;
|
|
const start = performance.now();
|
|
|
|
vinylAnimation.play();
|
|
|
|
function update(now) {
|
|
const progress = Math.min((now - start) / duration, 1);
|
|
|
|
// Smooth acceleration/deceleration
|
|
const eased = progress * progress * (3 - 2 * progress);
|
|
|
|
vinylAnimation.playbackRate = from + (to - from) * eased;
|
|
|
|
if (progress < 1) {
|
|
animationFrame = requestAnimationFrame(update);
|
|
} else if (shouldPause) {
|
|
vinylAnimation.pause();
|
|
}
|
|
}
|
|
|
|
animationFrame = requestAnimationFrame(update);
|
|
} |