MediaWiki:Common.js: Difference between revisions

From Weegeepie Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Tag: Reverted
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
    // YouTube API configuration
    const apiKey = 'AIzaSyA4iL2YEMH7m1vNZPkAhCKpPcEd-A0VIA4'; // Replace with your YouTube Data API key
    const channelId = 'UChratm8_g--6XGqSAz7KF8g'; // Replace with your channel's ID
    const apiURL = `https://www.googleapis.com/youtube/v3/search?key=${apiKey}&channelId=${channelId}&part=snippet,id&order=date&maxResults=1`;


setTimeout(500);
    // Fetch the latest video
    $.getJSON(apiURL, function(data) {
        if (data.items && data.items.length > 0) {
            const videoId = data.items[0].id.videoId;
            const videoUrl = `https://www.youtube.com/watch?v=${videoId}`;


function isMobile() {
            // Append the link dynamically
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
            $('#ca-talk').append(
}
                $('<a/>')
 
                    .addClass('hover-community-header-wrapper')
if (!isMobile()) {
                    .append($('<div/>')
 
                        .addClass('wgp-ep-msg')
/* Taken from MD wiki lol */
                        .text('Click here to view the latest episode!')
$('#ca-talk').append(
                    )
    $('<a/>').addClass('hover-community-header-wrapper')
                    .attr('href', videoUrl)
        .append($('<div/>')
            );
            .addClass('wgp-ep-msg')
        } else {
            .text('Click here to view the latest episode!')
            console.error('No videos found for the channel.');
        )
        }
        .attr('href', 'https://www.youtube.com/watch?v=9driCvToAOA&t=0s')
    }).fail(function(jqXHR, textStatus, errorThrown) {
);
        console.error('YouTube API request failed:', textStatus, errorThrown);
 
     });
}
 
var toc, toggleLink;
try {
  toc = document.getElementById('toc').getElementsByTagName('ul')[0];
  toggleLink = document.getElementById('toctogglecheckbox');
  // if (tocIsHidden()) {
  toggleToc();
  // }
} catch (error) {
  console.log('erred', error);
}
function tocIsHidden () {
    return !toc || !toggleLink || window.getComputedStyle(toc).display !== 'block';
}
 
function toggleToc() {
  var hidden = tocIsHidden();
  if (hidden && document.cookie.indexOf('hidetoc=0') > -1) {
    toggleLink.click();
    // changeText(toggleLink, tocShowText);
    // toc.style.display = 'none';
  } else if (!hidden && document.cookie.indexOf('hidetoc=1') > -1) {
    toggleLink.click();
    // changeText(toggleLink, tocHideText);
     // toc.style.display = 'block';
  }
}
toggleLink && toggleLink.addEventListener('click', function () {
  var isHidden = tocIsHidden();
  document.cookie = isHidden
    ? "hidetoc=1"
    : "hidetoc=0";
});
});

Revision as of 18:09, 10 December 2024

$(document).ready(function() {
    // YouTube API configuration
    const apiKey = 'AIzaSyA4iL2YEMH7m1vNZPkAhCKpPcEd-A0VIA4'; // Replace with your YouTube Data API key
    const channelId = 'UChratm8_g--6XGqSAz7KF8g'; // Replace with your channel's ID
    const apiURL = `https://www.googleapis.com/youtube/v3/search?key=${apiKey}&channelId=${channelId}&part=snippet,id&order=date&maxResults=1`;

    // Fetch the latest video
    $.getJSON(apiURL, function(data) {
        if (data.items && data.items.length > 0) {
            const videoId = data.items[0].id.videoId;
            const videoUrl = `https://www.youtube.com/watch?v=${videoId}`;

            // Append the link dynamically
            $('#ca-talk').append(
                $('<a/>')
                    .addClass('hover-community-header-wrapper')
                    .append($('<div/>')
                        .addClass('wgp-ep-msg')
                        .text('Click here to view the latest episode!')
                    )
                    .attr('href', videoUrl)
            );
        } else {
            console.error('No videos found for the channel.');
        }
    }).fail(function(jqXHR, textStatus, errorThrown) {
        console.error('YouTube API request failed:', textStatus, errorThrown);
    });
});