MediaWiki:Common.js: Diferență între versiuni
m |
m |
||
| Linia 21: | Linia 21: | ||
function showLoot(monster) { | function showLoot(monster) { | ||
var lootList = document.getElementById('loot-list'); | var lootList = document.getElementById('loot-list'); | ||
| − | lootList.innerHTML = ''; | + | lootList.innerHTML = ''; |
| − | |||
var apiUrl = mw.util.wikiScript('api') + '?action=parse&page=' + encodeURIComponent(monster) + '&prop=wikitext&format=json&origin=*'; | var apiUrl = mw.util.wikiScript('api') + '?action=parse&page=' + encodeURIComponent(monster) + '&prop=wikitext&format=json&origin=*'; | ||
fetch(apiUrl) | fetch(apiUrl) | ||
| − | .then(response | + | .then(function(response) { |
| − | .then(data | + | return response.json(); |
| + | }) | ||
| + | .then(function(data) { | ||
var wikitext = data.parse.wikitext['*']; | var wikitext = data.parse.wikitext['*']; | ||
var weapondropsMatch = wikitext.match(/\|Weapondrops\s*=\s*(.*?)(\n|$)/s); | var weapondropsMatch = wikitext.match(/\|Weapondrops\s*=\s*(.*?)(\n|$)/s); | ||
| Linia 49: | Linia 50: | ||
} | } | ||
}) | }) | ||
| − | .catch(error | + | .catch(function(error) { |
var li = document.createElement('li'); | var li = document.createElement('li'); | ||
li.textContent = 'Error fetching loot'; | li.textContent = 'Error fetching loot'; | ||
Versiunea de la data 22 august 2024 09:50
/* Any JavaScript here will be loaded for all users on every page load. */
(function () {
var req = new XMLHttpRequest();
req.addEventListener('load', function (ev) {
if (this.status >= 200 && this.status < 300) {
var data = JSON.parse(this.responseText);
if (data.hasOwnProperty('version')) {
var gdpr = document.createElement("script");
gdpr.src = "https://s3-static.geo.gfsrv.net/cookiebanner/" + data.version + "/cookie.min.js";
document.head.appendChild(gdpr);
}
}
});
req.open('GET', "https://s3-static.geo.gfsrv.net/cookiebanner/version.json");
req.send();
})();
document.addEventListener('DOMContentLoaded', function() {
function showLoot(monster) {
var lootList = document.getElementById('loot-list');
lootList.innerHTML = '';
var apiUrl = mw.util.wikiScript('api') + '?action=parse&page=' + encodeURIComponent(monster) + '&prop=wikitext&format=json&origin=*';
fetch(apiUrl)
.then(function(response) {
return response.json();
})
.then(function(data) {
var wikitext = data.parse.wikitext['*'];
var weapondropsMatch = wikitext.match(/\|Weapondrops\s*=\s*(.*?)(\n|$)/s);
if (weapondropsMatch) {
var weapondrops = weapondropsMatch[1].trim();
var lootItems = weapondrops.split('::');
lootItems.forEach(function(item) {
if (item.trim()) {
var li = document.createElement('li');
li.textContent = item.trim();
lootList.appendChild(li);
}
});
} else {
var li = document.createElement('li');
li.textContent = 'No weapon drops found';
lootList.appendChild(li);
}
})
.catch(function(error) {
var li = document.createElement('li');
li.textContent = 'Error fetching loot';
lootList.appendChild(li);
console.error('Error:', error);
});
}
var items = document.querySelectorAll('#monster-list li');
items.forEach(function(item) {
item.addEventListener('click', function() {
showLoot(item.getAttribute('data-monster'));
});
});
});