simplify
This commit is contained in:
parent
b7b14f9521
commit
56243891eb
5 changed files with 52 additions and 44 deletions
|
@ -1,19 +0,0 @@
|
|||
function redirect() {
|
||||
const chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ/.test(
|
||||
navigator.userAgent
|
||||
);
|
||||
|
||||
if (navigator.brave) {
|
||||
window.location.replace("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
|
||||
}
|
||||
if (!navigator.brave) {
|
||||
if (!localStorage.getItem("disclaimerAccepted")) {
|
||||
if (chromium && screen.width >= 699) {
|
||||
window.location.replace("/bsod");
|
||||
}
|
||||
if (chromium && screen.width <= 699) {
|
||||
window.location.replace("/mobile-warn");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
const user = "limepotato";
|
||||
const url = `https://lastfm-last-played.biancarosa.com.br/${user}/latest-song`;
|
||||
const song = document.querySelector("#song");
|
||||
fetch(url)
|
||||
.then((response) => response.json())
|
||||
.then((json) => {
|
||||
song.innerHTML = `${json.track.name} - ${json.track.artist["#text"]}`;
|
||||
});
|
|
@ -1,3 +1,12 @@
|
|||
// loads all the functions to be loaded on load, pretty simple, it loads shit on load.
|
||||
function onLoad() {
|
||||
jsEnabled();
|
||||
getSGAState();
|
||||
redirect();
|
||||
checkBoxes();
|
||||
getPlaceholder();
|
||||
}
|
||||
|
||||
// if javascript is enabled, this script will load, enabling all site elements that use javascript, by default these are all hidden.
|
||||
function jsEnabled() {
|
||||
// Get JS required element ids
|
||||
|
@ -12,3 +21,34 @@ function jsEnabled() {
|
|||
sgaButton.style.display = "initial";
|
||||
incrementButton.style.display = "initial";
|
||||
}
|
||||
|
||||
// LastFM stuff
|
||||
const user = "limepotato";
|
||||
const url = `https://lastfm-last-played.biancarosa.com.br/${user}/latest-song`;
|
||||
const song = document.querySelector("#song");
|
||||
fetch(url)
|
||||
.then((response) => response.json())
|
||||
.then((json) => {
|
||||
song.innerHTML = `${json.track.name} - ${json.track.artist["#text"]}`;
|
||||
});
|
||||
|
||||
// Chrome Redirect
|
||||
function redirect() {
|
||||
const chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ/.test(
|
||||
navigator.userAgent
|
||||
);
|
||||
|
||||
if (navigator.brave) {
|
||||
window.location.replace("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
|
||||
}
|
||||
if (!navigator.brave) {
|
||||
if (!localStorage.getItem("disclaimerAccepted")) {
|
||||
if (chromium && screen.width >= 699) {
|
||||
window.location.replace("/bsod");
|
||||
}
|
||||
if (chromium && screen.width <= 699) {
|
||||
window.location.replace("/mobile-warn");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,10 +2,7 @@
|
|||
<!-- optimized -->
|
||||
|
||||
<!-- unoptimized -->
|
||||
<!-- <script is:inline src="/scripts/ntfy.js"></script>-->
|
||||
<script is:inline src="/scripts/lastfm.js"></script>
|
||||
<script is:inline src="/scripts/sound.js"></script>
|
||||
<script is:inline src="/scripts/fuckchrome.js"></script>
|
||||
<script is:inline src="/scripts/sga.js"></script>
|
||||
<script is:inline src="/scripts/ntfy.js"></script>
|
||||
<script is:inline src="/scripts/main.js"></script>
|
|
@ -16,7 +16,7 @@ const { title } = Astro.props;
|
|||
<head>
|
||||
<Head title={title} />
|
||||
</head>
|
||||
<body onload="jsEnabled(), getSGAState(), redirect(), checkBoxes(), getPlaceholder()" id="body">
|
||||
<body onload="onLoad()" id="body">
|
||||
<Header />
|
||||
<section class="content center">
|
||||
<h1 class="title">{title}</h1>
|
||||
|
@ -24,8 +24,6 @@ const { title } = Astro.props;
|
|||
<slot />
|
||||
<Footer />
|
||||
<NormalScripts />
|
||||
|
||||
<!-- <script is:inline src="/scripts/sn.js"></script>-->
|
||||
<audio
|
||||
id="clickSound"
|
||||
src="/assets/sounds/ui/zapsplat_multimedia_button_click_004_68776.mp3">
|
||||
|
|
Loading…
Reference in a new issue