Difference between revisions of "MediaWiki:Common.js"

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
Line 14: Line 14:
 
// API Tests
 
// API Tests
  
var apiEndpoint = "https://commons.tsadra.org/api.php";
+
var apiEndpoint = "https://commons.wikimedia.org/w/api.php";
var params = "action=query&list=random&rnlimit=3&format=json";
+
var params = "action=query&list=allimages&ailimit=3&format=json";
  
 
/**
 
/**
* The function to wrap the result
+
* Send the request to get the images
*/
+
*/
var callback = function (response) {
+
fetch(apiEndpoint + "?" + params + "&origin=*")
var pages = response.query.random; // Process the output to get the titles
+
    .then(function(response){return response.json();})
Object.keys(pages).forEach(function(key) {
+
    .then(function(response) {
console.log(pages[key].title);
+
          var allimages = response.query.allimages; // Process the output to get the image names
});
+
          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:05, 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.wikimedia.org/w/api.php";
var params = "action=query&list=allimages&ailimit=3&format=json";

/**
 * Send the request to get the images
 */
fetch(apiEndpoint + "?" + params + "&origin=*")
    .then(function(response){return response.json();})
    .then(function(response) {
          var allimages = response.query.allimages; // Process the output to get the image names
          Object.keys(allimages).forEach(function(key) {
               console.log(allimages[key].name);
          });
     });