MediaWiki:Common.js: Diferență între versiuni
m |
m |
||
Linia 17: | Linia 17: | ||
})(); | })(); | ||
− | function | + | document.addEventListener('DOMContentLoaded', function() { |
− | + | function showLoot(monster) { | |
− | + | var lootList = document.getElementById('loot-list'); | |
− | + | lootList.innerHTML = ''; | |
− | + | ||
− | + | var apiUrl = mw.util.wikiScript('api') + `?action=parse&page=${monster}&prop=wikitext&format=json&origin=*`; | |
− | + | fetch(apiUrl) | |
− | + | .then(response => response.json()) | |
− | + | .then(data => { | |
− | + | var wikitext = data.parse.wikitext['*']; | |
− | + | // Extract the Weapondrops section using regex | |
− | + | 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(error => { | ||
var li = document.createElement('li'); | var li = document.createElement('li'); | ||
− | li.textContent = ' | + | li.textContent = 'Error fetching loot'; |
lootList.appendChild(li); | 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')); | ||
}); | }); | ||
− | } | + | }); |
+ | }); |
Versiunea de la data 22 august 2024 09:43
/* 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=${monster}&prop=wikitext&format=json&origin=*`;
fetch(apiUrl)
.then(response => response.json())
.then(data => {
var wikitext = data.parse.wikitext['*'];
// Extract the Weapondrops section using regex
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(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'));
});
});
});