-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
203 lines (176 loc) · 5.36 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
function xhrError() {
console.error(this.statusText);
}
function loadBeatsaverAndInject(url, callback /*, opt_arg1, opt_arg2, ... */) {
let xhr = new XMLHttpRequest();
xhr.onload = callback;
xhr.onerror = xhrError;
xhr.open("GET", url, true);
xhr.send(null);
}
/**
* Check for a classname existing in a list of elements.
* @param {HTMLCollection} elementArr
* @param {string} className
*/
function checkForChildrenHaveClassname(elementArr, className) {
for (const element of elementArr) {
if (element.classList.contains(className)) return true
}
return false
}
function hasInjected() {
return checkForChildrenHaveClassname(
document.querySelector(".column > .card.map-card").children,
"scoreSaverExtension",
)
}
const innerHtml = (key) => `
<style>
.saberSaverButton {
background-image: linear-gradient(to left,#fa152d,#9c49c7 54%,#137bf6);
color: white;
font-weight: 600;
width: fit-content;
text-align: center;
display: block;
margin: auto;
border-style: none;
padding: 9.75px;
padding-top: 6px;
}
.saberSaverButton:hover {
color: #eeeeee;
}
/* Tooltip container */
.tooltip {
position: relative;
/*border-bottom: 1px dotted black; !* If you want dots under the hoverable text *!*/
font-size: small;
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
height: fit-content;
background-color: #555;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text */
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
/* Fade in tooltip */
opacity: 0;
transition: opacity 0.3s;
}
/* Tooltip arrow */
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
.scoreSaverExtension-parent {
display: flex;
flex-direction: row;
align-items: center;
}
.scoreSaverExtension-img {
vertical-align: middle;
}
.scoreSaverExtension-p {
vertical-align: middle;
display: inline;
}
</style>
<div class="scoreSaverExtension-parent">
<a href="beatsaver://${key}" class="button tooltip saberSaverButton umami--click--download-button-${key}">
<p class="scoreSaverExtension-p">One Click Install</p>
 
<img class="scoreSaverExtension-img" src="${chrome.runtime.getURL('download-icon.svg')}" alt="Download Button" title="Download Button">
<span class="tooltiptext">${chrome.i18n.getMessage("button_text")}</span>
</a>
</div>
`
function showButton() {
let key = JSON.parse(this.responseText).id
console.log(key)
let downloadButtonElement = document.createElement('div');
downloadButtonElement.innerHTML = innerHtml(key);
// Prep the card
let card = document
.querySelector(".column > .card.map-card")
.cloneNode(true)
// Remove all inner elements in the card
let card_inner = card.firstChild
while (card_inner.firstChild) {
card_inner.removeChild(card_inner.firstChild);
}
// Remove any other elements on the card's parent
while (card.childNodes.length !== 1) {
card.removeChild(card.lastChild)
}
// Add our garbage to the card
card_inner.appendChild(downloadButtonElement)
// If this exists, just fail out since we don't need to do extra work
if (hasInjected()) return
// Tag this so we can check for it later
card.classList.add("scoreSaverExtension")
// Metrics!
fetch("https://umami.cobular.com/api/collect", {
method: "POST",
mode: "cors",
headers: new Headers({
"content-type": "application/json"
}),
body: JSON.stringify({
payload: {
website: "3f56052c-27bd-4235-a8f4-ad333331b91c",
url: (new URL(window.location)).pathname,
referrer: window.document.referrer,
hostname: window.location.hostname,
language: window.navigator.language,
screen: `${window.screen.width}x${window.screen.height}`,
},
type: "pageview"
}
)
}).then(value => console.log(value)).catch(reason => console.error(reason))
// Finally, add it do the document again.
document.querySelector(".column > .card.map-card").append(card)
}
// Hacky bullshit this needs to be better
let injection_lock = false
setInterval(function () {
const url = new URL(window.location)
if (url.pathname.startsWith("/leaderboard/")) {
// Is a leaderboard page, should inject the content
// Have we already injected?
if (!hasInjected()) {
let hash_element = document.querySelector("div.content > strong")
if (hash_element !== undefined && hash_element !== null) {
console.log("injection happening")
if (!injection_lock) {
injection_lock = true
let song_hash = hash_element.textContent.trim();
loadBeatsaverAndInject(`https://api.beatsaver.com/maps/hash/${song_hash}`, showButton)
injection_lock = false
}
}
}
}
}, 100)