fix selection bugs
This commit is contained in:
parent
f7773a3f1c
commit
2537532a98
1 changed files with 37 additions and 35 deletions
72
rot.js
72
rot.js
|
@ -117,12 +117,14 @@
|
||||||
console.log("Applying main theme");
|
console.log("Applying main theme");
|
||||||
setMusic(null);
|
setMusic(null);
|
||||||
|
|
||||||
|
//<meta name="pageMusic" content="/assets/music.ogg">
|
||||||
waitUntilSpecial('meta[name="pageMusic"]').then((pageMusic) => {
|
waitUntilSpecial('meta[name="pageMusic"]').then((pageMusic) => {
|
||||||
setMusic(pageMusic.content);
|
setMusic(pageMusic.content);
|
||||||
playMusic();
|
playMusic();
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//<a id="pageMusic" href="/assets/music.ogg"></a>
|
||||||
waitUntilSpecial("#pageMusic").then((pageMusic) => {
|
waitUntilSpecial("#pageMusic").then((pageMusic) => {
|
||||||
setMusic(pageMusic.getAttribute("href"));
|
setMusic(pageMusic.getAttribute("href"));
|
||||||
playMusic();
|
playMusic();
|
||||||
|
@ -134,6 +136,7 @@
|
||||||
console.log("Applying user theme");
|
console.log("Applying user theme");
|
||||||
setMusic(null);
|
setMusic(null);
|
||||||
|
|
||||||
|
//Configure by post
|
||||||
waitUntilSpecial(".pin").then((pinnedPost) => {
|
waitUntilSpecial(".pin").then((pinnedPost) => {
|
||||||
if (pinnedPost.nextElementSibling
|
if (pinnedPost.nextElementSibling
|
||||||
.querySelector(".StatusBody")
|
.querySelector(".StatusBody")
|
||||||
|
@ -143,45 +146,44 @@
|
||||||
.search(/profile theming post/ig) == -1)
|
.search(/profile theming post/ig) == -1)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
let ptp = pinnedPost.nextElementSibling.querySelector(".StatusBody");
|
const ptp = pinnedPost.nextElementSibling.querySelector(".StatusBody");
|
||||||
if (ptp) {
|
if (!ptp)
|
||||||
//Configured by post
|
|
||||||
let musicContainer = ptp.querySelector(".audio-container")
|
|
||||||
if (musicContainer)
|
|
||||||
setMusic(rand(musicContainer.children).src);
|
|
||||||
else
|
|
||||||
setMusic(null);
|
|
||||||
|
|
||||||
let imageContainer = ptp.querySelector(".image-container")
|
|
||||||
if (imageContainer)
|
|
||||||
setImage(rand(imageContainer.getElementsByTagName("img")).src);
|
|
||||||
else
|
|
||||||
setImage(null);
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}, observers);
|
|
||||||
|
|
||||||
|
const musicContainer = ptp.querySelector(".audio-container")
|
||||||
|
if (musicContainer)
|
||||||
|
setMusic(rand(musicContainer.children).src);
|
||||||
|
else
|
||||||
|
setMusic(null);
|
||||||
|
|
||||||
|
const imageContainer = ptp.querySelector(".image-container")
|
||||||
|
if (imageContainer)
|
||||||
|
setImage(rand(imageContainer.getElementsByTagName("img")).src);
|
||||||
|
else
|
||||||
|
setImage(null);
|
||||||
|
|
||||||
|
return musicContainer || imageContainer;
|
||||||
|
});
|
||||||
|
|
||||||
|
//Configure by fields
|
||||||
waitUntilSpecial(".user-profile-field-name").then(() => {
|
waitUntilSpecial(".user-profile-field-name").then(() => {
|
||||||
let fields = [...document.getElementsByClassName("user-profile-field-name")]
|
const fields = [...document.getElementsByClassName("user-profile-field-name")]
|
||||||
if (fields.length != 0) {
|
if (fields.length == 0)
|
||||||
//Configured by fields
|
|
||||||
let musicFields = fields.filter((x) => x.title.toLowerCase().replace(/\s+/g, '') == "music")
|
|
||||||
if (musicFields.length > 0)
|
|
||||||
setMusic(rand(musicFields).nextElementSibling.title);
|
|
||||||
else
|
|
||||||
setMusic(null);
|
|
||||||
|
|
||||||
let imageFields = fields.filter((x) => x.title.toLowerCase().replace(/\s+/g, '') == "image")
|
|
||||||
if (imageFields.length > 0)
|
|
||||||
setImage(rand(imageFields).nextElementSibling.title);
|
|
||||||
else
|
|
||||||
setImage(null);
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
const musicFields = fields.filter((x) => x.title.toLowerCase().replace(/\s+/g, '') == "music")
|
||||||
|
if (musicFields.length > 0)
|
||||||
|
setMusic(rand(musicFields).nextElementSibling.title);
|
||||||
|
else
|
||||||
|
setMusic(null);
|
||||||
|
|
||||||
|
const imageFields = fields.filter((x) => x.title.toLowerCase().replace(/\s+/g, '') == "image")
|
||||||
|
if (imageFields.length > 0)
|
||||||
|
setImage(rand(imageFields).nextElementSibling.title);
|
||||||
|
else
|
||||||
|
setImage(null);
|
||||||
|
|
||||||
|
return musicFields.length > 0 || imageFields.length > 0;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue