MediaWiki:Common.js: Diferență între versiuni
m |
m |
||
| Linia 23: | Linia 23: | ||
lootList.innerHTML = ''; | lootList.innerHTML = ''; | ||
| − | var apiUrl = | + | var apiUrl = 'https://ro-wiki.metin2.gameforge.com/api.php?action=parse&page=' + encodeURIComponent(monster) + '&prop=wikitext&format=json&origin=*'; |
fetch(apiUrl) | fetch(apiUrl) | ||
| Linia 33: | Linia 33: | ||
}) | }) | ||
.then(function(data) { | .then(function(data) { | ||
| + | console.log('API Data:', data); | ||
var wikitext = data.parse.wikitext['*']; | var wikitext = data.parse.wikitext['*']; | ||
| − | console.log(wikitext); | + | console.log('Wikitext:', wikitext); |
if (wikitext.startsWith('#Redirect')) { | if (wikitext.startsWith('#Redirect')) { | ||
| Linia 40: | Linia 41: | ||
if (targetPageMatch) { | if (targetPageMatch) { | ||
var targetPage = targetPageMatch[1]; | var targetPage = targetPageMatch[1]; | ||
| − | var redirectUrl = | + | var redirectUrl = 'https://ro-wiki.metin2.gameforge.com/api.php?action=parse&page=' + encodeURIComponent(targetPage) + '&prop=wikitext&format=json&origin=*'; |
return fetch(redirectUrl) | return fetch(redirectUrl) | ||
.then(function(response) { | .then(function(response) { | ||
| Linia 71: | Linia 72: | ||
lootList.appendChild(li); | lootList.appendChild(li); | ||
} | } | ||
| − | } | + | }) |
| + | .catch(function(error) { | ||
console.error('Error:', error); | console.error('Error:', error); | ||
}); | }); | ||
Versiunea de la data 22 august 2024 11:45
/* 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();
})();
(function() {
document.addEventListener('DOMContentLoaded', function() {
function showLoot(monster) {
var lootList = document.getElementById('loot-list');
lootList.innerHTML = '';
var apiUrl = 'https://ro-wiki.metin2.gameforge.com/api.php?action=parse&page=' + encodeURIComponent(monster) + '&prop=wikitext&format=json&origin=*';
fetch(apiUrl)
.then(function(response) {
if (!response.ok) {
throw new Error('Network response was not ok: ' + response.statusText);
}
return response.json();
})
.then(function(data) {
console.log('API Data:', data);
var wikitext = data.parse.wikitext['*'];
console.log('Wikitext:', wikitext);
if (wikitext.startsWith('#Redirect')) {
var targetPageMatch = wikitext.match(/\[\[([^\]]+)\]\]/);
if (targetPageMatch) {
var targetPage = targetPageMatch[1];
var redirectUrl = 'https://ro-wiki.metin2.gameforge.com/api.php?action=parse&page=' + encodeURIComponent(targetPage) + '&prop=wikitext&format=json&origin=*';
return fetch(redirectUrl)
.then(function(response) {
if (!response.ok) {
throw new Error('Redirect Network response was not ok: ' + response.statusText);
}
return response.json();
});
}
}
return data;
})
.then(function(data) {
var wikitext = data.parse.wikitext['*'];
var weapondropsMatch = wikitext.match(/\|Weapondrops\s*=\s*([^\n|]*)/);
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) {
console.error('Error:', error);
});
}
var items = document.querySelectorAll('#monster-list li');
items.forEach(function(item) {
item.addEventListener('click', function() {
showLoot(item.getAttribute('data-monster'));
});
});
});
})();