User:Euphoria/common.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
Content deleted Content added
edit count
Images
Tags: Mobile edit Mobile web edit
Line 1: Line 1:
(function() {
// Function to get edit count and display it
'use strict';
function getEditCount() {
const apiUrl = 'https://testwiki.wiki/w/api.php?action=query&format=json&list=users&usprop=editcount&ususers=' + mw.config.get('wgTitle');


// Function to check if a page has images
fetch(apiUrl)
async function checkIfPageHasImage(pageTitle) {
.then(response => response.json())
const endpoint = `https://en.wikipedia.org/w/api.php?action=query&titles=${encodeURIComponent(pageTitle)}&prop=images&format=json&origin=*`;
.then(data => {
const editCount = data.query.users[0].editcount;
const response = await fetch(endpoint);
const data = await response.json();
$('#editCountResult').text('Edit count: ' + editCount);
const page = data.query.pages[Object.keys(data.query.pages)[0]];
})
.catch(error => {
return page.hasOwnProperty('images');
}
console.error('Error fetching data:', error);
$('#editCountResult').text('Error fetching edit count.');
});
}


// Main function to find articles without images
// Add a button to trigger the edit count retrieval
async function findArticlesWithoutImages() {
$('#firstHeading').append('<button onclick="getEditCount()">Get Edit Count</button>');
const categoryTitle = document.getElementById('firstHeading').innerText;
const endpoint = `https://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=${encodeURIComponent(categoryTitle)}&cmlimit=max&format=json&origin=*`;
const response = await fetch(endpoint);
const data = await response.json();
const articles = data.query.categorymembers;


for (const article of articles) {
// Add a placeholder for displaying the edit count
const hasImage = await checkIfPageHasImage(article.title);
$('#firstHeading').append('<p id="editCountResult"></p>');
if (!hasImage) {
console.log(`Article without image found: ${article.title}`);
}
}
}

// Add a button to the page
function addButton() {
const button = document.createElement('button');
button.textContent = 'Find Articles Without Images';
button.style.margin = '10px';
button.onclick = findArticlesWithoutImages;

const referenceNode = document.getElementById('mw-content-text');
referenceNode.insertBefore(button, referenceNode.firstChild);
}

// Add the button when the script loads
addButton();

})();

Revision as of 06:22, 23 December 2023

(function() {
    'use strict';

    // Function to check if a page has images
    async function checkIfPageHasImage(pageTitle) {
        const endpoint = `https://en.wikipedia.org/w/api.php?action=query&titles=${encodeURIComponent(pageTitle)}&prop=images&format=json&origin=*`;
        const response = await fetch(endpoint);
        const data = await response.json();
        const page = data.query.pages[Object.keys(data.query.pages)[0]];
        return page.hasOwnProperty('images');
    }

    // Main function to find articles without images
    async function findArticlesWithoutImages() {
        const categoryTitle = document.getElementById('firstHeading').innerText;
        const endpoint = `https://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=${encodeURIComponent(categoryTitle)}&cmlimit=max&format=json&origin=*`;
        const response = await fetch(endpoint);
        const data = await response.json();
        const articles = data.query.categorymembers;

        for (const article of articles) {
            const hasImage = await checkIfPageHasImage(article.title);
            if (!hasImage) {
                console.log(`Article without image found: ${article.title}`);
            }
        }
    }

    // Add a button to the page
    function addButton() {
        const button = document.createElement('button');
        button.textContent = 'Find Articles Without Images';
        button.style.margin = '10px';
        button.onclick = findArticlesWithoutImages;

        const referenceNode = document.getElementById('mw-content-text');
        referenceNode.insertBefore(button, referenceNode.firstChild);
    }

    // Add the button when the script loads
    addButton();

})();