MediaWiki:Common.js: Difference between revisions

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
Line 15: Line 15:


var apiEndpoint = "https://commons.tsadra.org/api.php";
var apiEndpoint = "https://commons.tsadra.org/api.php";
var params = "action=ask&query=%5B%5BModification%20date%3A%3A%7C%5D%5D%7C%3FModification%20date%7Csort%3DModification%20date%7Corder%3Ddesc%26format%3Djsonfm";
var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=jsonfm";


/**
/**
* Send the request to get the images
* The function to wrap the result
*/
*/
fetch(apiEndpoint + "?" + params + "&origin=*")
var callback = function (response) {
    .then(function(response){return response.json();})
var pages = response.query.random; // Process the output to get the titles
    .then(function(response) {
Object.keys(pages).forEach(function(key) {
          var allimages = response.query.allimages; // Process the output to get the image names
console.log(pages[key].title);
          Object.keys(allimages).forEach(function(key) {
});
              console.log(allimages[key].name);
};
          });
 
    });
var scriptTag = document.createElement("script"); // Dynamically create a "script" tag
scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string
 
document.getElementById("ApiTest").append(scriptTag); // Add the script tag to the document

Revision as of 18:16, 16 December 2022

// Discover page anchors
$('.fp-arrowUp').click(function(){
    $.fn.fullpage.moveSectionUp();
});
$('.fp-arrowDown').click(function(){
    $.fn.fullpage.moveSectionDown();
});




// API Tests

var apiEndpoint = "https://commons.tsadra.org/api.php";
var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=jsonfm";

/**
* The function to wrap the result
*/
var callback = function (response) {
	var pages = response.query.random; // Process the output to get the titles
	Object.keys(pages).forEach(function(key) {
		console.log(pages[key].title);
	});
};

var scriptTag = document.createElement("script"); // Dynamically create a "script" tag
scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string

document.getElementById("ApiTest").append(scriptTag); // Add the script tag to the document