Code Refactoring and Error Handling

This commit is contained in:
2025-06-30 02:58:28 +05:30
parent ae44e79a15
commit 1fac2fd8af
3 changed files with 57 additions and 17 deletions

9
hg.css
View File

@@ -326,3 +326,12 @@ canvas {
right: 0; right: 0;
margin-right: 5px; margin-right: 5px;
} }
.ERRORS {
position: absolute;
bottom: 0;
z-index: 999;
color: #ffff;
left: 0;
margin-left: 5px;
}

View File

@@ -119,6 +119,7 @@
</div> </div>
<div id="codef-canvas"></div> <div id="codef-canvas"></div>
<div class="OVR hidden"></div> <div class="OVR hidden"></div>
<div class="ERRORS hidden"></div>
<input id="file-upload" type="file" accept="application/json" /> <input id="file-upload" type="file" accept="application/json" />
<!-- <script src="libs/codef_core.js"></script> <!-- <script src="libs/codef_core.js"></script>
<script src="libs/codef_starfield.js"></script> <script src="libs/codef_starfield.js"></script>

View File

@@ -9,6 +9,7 @@
let refreshBtn = document.querySelector(".refresh"); let refreshBtn = document.querySelector(".refresh");
let ovr = document.querySelector(".OVR"); let ovr = document.querySelector(".OVR");
let fullScreenBtn = document.querySelector(".fullscreen"); let fullScreenBtn = document.querySelector(".fullscreen");
let errorEl = document.querySelector(".ERRORS");
const modalEl = document.getElementById("intro-modal"); const modalEl = document.getElementById("intro-modal");
// const uploadInfoEl = document.getElementById("upload-info"); // const uploadInfoEl = document.getElementById("upload-info");
const fileUploadEl = document.getElementById("file-upload"); const fileUploadEl = document.getElementById("file-upload");
@@ -19,7 +20,6 @@
const synthwaveColor = 0xff2975; const synthwaveColor = 0xff2975;
openDialog(); openDialog();
getMusic();
listenUploadFileChange(); listenUploadFileChange();
function initDynamicTooltips() { function initDynamicTooltips() {
@@ -96,10 +96,12 @@
}; };
} }
document.getElementById("initButton")?.addEventListener("click", () => { document.getElementById("initButton")?.addEventListener("click", async () => {
var hydra = new Hydra({ detectAudio: false }); var hydra = new Hydra({ detectAudio: false });
modalEl.classList.remove("open"); modalEl.classList.remove("open");
playMusic(); getMusic().then(() => {
playMusic();
});
initHydra(); initHydra();
initControls(); initControls();
}); });
@@ -130,10 +132,10 @@
case "f": case "f":
toggleFullScreen(); toggleFullScreen();
break; break;
case "h": case "h":
toggleControls(); toggleControls();
break; break;
case 'x': case "x":
toggleEverything(); toggleEverything();
} }
}); });
@@ -177,14 +179,22 @@
} }
async function getMusic() { async function getMusic() {
const res = await fetch( try {
`https://retrowave.ru/api/v1/tracks?limit=10&cursor=${cursor}` const res = await fetch(
).then((res) => res.json()); `https://retrowave.ru/api/v1/tracks?limit=10&cursor=${cursor}`
const { ).then((res) => res.json());
body: { tracks, cursor: currentCursor }, const {
} = res; body: { tracks, cursor: currentCursor },
cursor = currentCursor; } = res;
currentTracks = tracks; cursor = currentCursor;
currentTracks = tracks;
} catch (error) {
console.error("Error fetching music:", error);
showErrors(
"Failed to fetch music. Please check your internet connection or try again later."
);
throw error; // rethrow the error to be caught in the catch block below
}
} }
function initPlayer() {} function initPlayer() {}
@@ -242,7 +252,7 @@
titleEl.innerText = trackDetails.title; titleEl.innerText = trackDetails.title;
document.title = `Now Playing... ${trackDetails.title}`; document.title = `Now Playing... ${trackDetails.title}`;
coverArtEl.style.backgroundImage = `url("${retroWaveRu}${trackDetails.artworkUrl}")`; coverArtEl.style.backgroundImage = `url("${retroWaveRu}${trackDetails.artworkUrl}")`;
ovr.innerHTML = `${trackDetails.title}` ovr.innerHTML = `${trackDetails.title}`;
} }
function getHistory() { function getHistory() {
@@ -310,9 +320,17 @@ https://retrowave.ru/${musicData.streamUrl}
}); });
} }
function toggleFullScreen() { async function toggleFullScreen() {
if (!document.fullscreenElement) { if (!document.fullscreenElement) {
document.documentElement.requestFullscreen(); try {
await document.documentElement.requestFullscreen();
} catch (error) {
console.error("Error attempting to enable full-screen mode:", error);
showErrors(
"Failed to enter full-screen mode. Please check your browser settings." +
error
);
}
} else { } else {
if (document.exitFullscreen) { if (document.exitFullscreen) {
document.exitFullscreen(); document.exitFullscreen();
@@ -323,7 +341,7 @@ https://retrowave.ru/${musicData.streamUrl}
function toggleControls() { function toggleControls() {
const toggleableElements = document.querySelectorAll(".toggleable"); const toggleableElements = document.querySelectorAll(".toggleable");
toggleableElements.forEach((el) => { toggleableElements.forEach((el) => {
el.classList.toggle("hidden"); el.classList.toggle("hidden");
}); });
} }
@@ -332,6 +350,15 @@ https://retrowave.ru/${musicData.streamUrl}
ovr.classList.toggle("hidden"); ovr.classList.toggle("hidden");
} }
function showErrors(error) {
errorEl.classList.remove("hidden");
errorEl.innerText = error;
setTimeout(() => {
errorEl.innerText = "";
errorEl.classList.add("hidden");
}, 10000);
}
// function initCodef() { // function initCodef() {
// const width = window.innerWidth; // const width = window.innerWidth;
// const height = window.innerHeight; // const height = window.innerHeight;
@@ -371,6 +398,9 @@ https://retrowave.ru/${musicData.streamUrl}
.out(); .out();
} catch (error) { } catch (error) {
console.error("Hydra initialization failed:", error); console.error("Hydra initialization failed:", error);
showErrors(
"Hydra initialization failed. Please check your browser compatibility or try again later."
);
} }
} }
})(); })();