Common.js: Difference between revisions
No edit summary |
No edit summary |
||
| Line 150: | Line 150: | ||
try { | try { | ||
var pages = data.query.pages; | var pages = data.query.pages; | ||
var pageId = Object.keys(pages) | var pageId = Object.keys(pages); | ||
if (pageId === "-1") { | if (pageId[0] === "-1") { | ||
$viewport.text("Source list page not found."); | $viewport.text("Source list page not found."); | ||
return; | return; | ||
} | } | ||
var rawWikiText = pages[pageId].revisions[0]['*']; | var rawWikiText = pages[pageId[0]].revisions[0]['*']; | ||
// 2. Isolate individual gallery file entries into a clean array | // 2. Isolate individual gallery file entries into a clean array | ||
| Line 182: | Line 182: | ||
var cleanTitle = "YouTube Short Selection"; | var cleanTitle = "YouTube Short Selection"; | ||
// 4. | // 4. Extract title and clean up the URL to grab exactly 11 video characters | ||
for (var j = 0; j < parts.length; j++) { | for (var j = 0; j < parts.length; j++) { | ||
var part = $.trim(parts[j]); | var part = $.trim(parts[j]); | ||
| Line 189: | Line 189: | ||
var urlStr = part.substring(5).trim(); | var urlStr = part.substring(5).trim(); | ||
// | // Isolate the base text string following the last slash | ||
var lastSlashIdx = urlStr.lastIndexOf('/'); | |||
if (lastSlashIdx !== -1) { | |||
var rawId = urlStr.substring(lastSlashIdx + 1); | |||
// Clean up trailing parameters like ?, #, &, or accidental trailing 's text strings | |||
videoId = rawId.split('?')[0].split('#')[0].split('&')[0].replace("'s", "").trim(); | |||
var | |||
} | } | ||
} else if (part.indexOf('File:') !== 0) { | } else if (part.indexOf('File:') !== 0) { | ||
cleanTitle = part; // Pulls | cleanTitle = part; // Pulls title segment | ||
} | } | ||
} | } | ||
// | // Final safety restriction to protect video format string bounds | ||
videoId = | if (videoId.length > 11) { | ||
videoId = videoId.substring(0, 11); | |||
} | |||
// 5. Inject a native YouTube | // 5. Inject a native YouTube player with exact middle-box proportions (260x225px) | ||
if (videoId && videoId.length === 11) { | if (videoId && videoId.length === 11) { | ||
var embedUrl = "https://youtube.com" + videoId; | var embedUrl = "https://youtube.com" + videoId; | ||
$viewport.html('<iframe width="260" height=" | $viewport.html('<iframe width="260" height="225" src="' + embedUrl + '" frameborder="0" allowfullscreen style="border-radius: 8px; border: none;"></iframe>'); | ||
$titleFrame.text(cleanTitle); | $titleFrame.text(cleanTitle); | ||
} else { | } else { | ||
$viewport.html("<div style='color:#c0392b; padding:10px; font-size:11px;'>ID Parse Mismatch. | $viewport.html("<div style='color:#c0392b; padding:10px; font-size:11px;'>ID Parse Mismatch. Trying another...</div>"); | ||
setTimeout(function() { window.location.reload(); }, | setTimeout(function() { window.location.reload(); }, 800); | ||
} | } | ||
Revision as of 05:46, 20 May 2026
/* Any JavaScript here will be loaded for all users on every page load. */
if (mw.config.get('wgPageName' ) === 'Krishna_says_in_Bhagavad-gita') {
/* switch tooltip texts from content-div to label-div */
const v_labels = Array.from(document.getElementsByClassName("tabs-label"));
const v_content = Array.from(document.getElementsByClassName("tabs-content"));
for (var i = 0; i < v_labels.length; i++) {
v_labels[i].title = v_content[i].title;
v_content[i].title = "";
}
/* adjust wikitables */
var arr = Array.from(document.getElementsByClassName("wikitable"));
for (var t = 0; t < arr.length; t++) {
/* insert THEAD in wikitable */
var thead = document.createElement("thead");
thead.style.display = "block";
var wtbl = arr[t];
wtbl.insertBefore(thead, wtbl.firstChild);
/* move first row of TBODY to THEAD */
thead.appendChild(wtbl.rows[0]);
/* make TBODY scrollable */
var tbody = wtbl.tBodies[0];
tbody.style.display = "block";
tbody.style.overflowY = "auto";
tbody.style.maxHeight = "500px";
for (var r = 0; r < wtbl.rows.length; r++) {
var row = wtbl.rows[r];
/* adjust column widths and hide from-until columns */
row.cells[0].classList = "cw_0";
row.cells[1].classList = "cw_150";
row.cells[2].classList = "cw_500";
/* mark the text */
if (r == 0) continue;
var v_text = row.cells[2].textContent;
var v_html = ""; var v_from = 0;
var marks = JSON.parse(row.cells[0].textContent.replaceAll("O", "[").replaceAll("C", "]"));
for (var m = 0; m < marks.length; m++) {
v_html +=
v_text.substr(v_from,marks[m][0]-v_from) + "<mark>" +
v_text.substr(marks[m][0],marks[m][1]-marks[m][0]+1) + "</mark>";
v_from = marks[m][1]+1;
}
v_html += v_text.substr(v_from);
row.cells[2].innerHTML = v_html;
}
}
}
// install Google Search
// document.write('<script type="text/javascript" src="'
// + 'http://vanipedia.org/w/index.php?title=MediaWiki:GoogleSearch.js'
// + '&action=raw&ctype=text/javascript"></' + 'script>');
// install JQuery
//document.write('<script type="text/javascript" src="'
//+ 'http://vanipedia.org/w/index.php?title=MediaWiki:JQuery.js'
//+ '&action=raw&ctype=text/javascript"></' + 'script>');
// install WikEd toolbar and Vanify
//document.write('<script type="text/javascript" src="'
//+ 'http://vanipedia.org/w/index.php?title=MediaWiki:Vaniquotes.js'
//+ '&action=raw&ctype=text/javascript"></' + 'script>');
// install Replace
//document.write('<script type="text/javascript" src="'
//+ 'http://vanipedia.org/w/index.php?title=MediaWiki:TextboxReplace.js'
//+ '&action=raw&ctype=text/javascript"></' + 'script>');
// install Unify
//document.write('<script type="text/javascript" src="'
//+ 'http://vanipedia.org/w/index.php?title=MediaWiki:Unify.js'
//+ '&action=raw&ctype=text/javascript"></' + 'script>');
// install Vanify
//document.write('<script type="text/javascript" src="'
//+ 'http://vanipedia.org/w/index.php?title=MediaWiki:Vanify.js'
//+ '&action=raw&ctype=text/javascript"></' + 'script>');
// install Vani_suggest for diacritics auto-suggest pulldown on the search bar
//document.write('<script type="text/javascript" src="'
//+ 'http://vanipedia.org/w/index.php?title=MediaWiki:Vani_suggest.js'
//+ '&action=raw&ctype=text/javascript"></' + 'script>');
// install previous/next links for video categories in all languages
//document.write('<script type="text/javascript" src="/navcat/navcat.js"></' + 'script>');
// Buttons
//addOnloadHook(function() {
//if (document.editform) {
//addPortletLink("p-cactions", "javascript:Unify()", "unify", "ca-unify", "Convert Balarama fonts to Unicode", "");
// addPortletLink("p-cactions", "javascript:Vanify()", "vanify", "ca-vanify", "Corrects vani markup", "");
// addPortletLink('p-cactions', 'javascript:format()', 'format', 'ca-format', 'Format article', '');
//addPortletLink('p-cactions', 'javascript:wpTextboxReplace()', 'Replace', 'ca-replace', 'Replaces text in the edit window', 'R');
//}
//});
// end Buttons
// --- VANIPEDIA DARK MODE TOGGLE (Kasya) ---
$(document).ready(function() {
// Create the floating button
var toggleBtn = $('<button id="dark-mode-toggle" title="Toggle Dark Mode" style="position:fixed; bottom:25px; right:25px; z-index:9999; width:45px; height:45px; border-radius:50%; background:#2c3e50; color:#f1c40f; font-size:20px; border:none; box-shadow:0 4px 10px rgba(0,0,0,0.3); cursor:pointer; display:flex; align-items:center; justify-content:center; transition: transform 0.2s;">🌙</button>');
$('body').append(toggleBtn);
// Hover effect for the button
toggleBtn.hover(
function() { $(this).css('transform', 'scale(1.1)'); },
function() { $(this).css('transform', 'scale(1.0)'); }
);
// Check if the user previously selected dark mode
if (localStorage.getItem('vanipedia-theme') === 'dark') {
$('html').addClass('dark-theme');
toggleBtn.text('🔆').css('background', '#f1c40f').css('color', '#2c3e50');
}
// Click event handler
toggleBtn.click(function() {
$('html').toggleClass('dark-theme');
if ($('html').hasClass('dark-theme')) {
localStorage.setItem('vanipedia-theme', 'dark');
toggleBtn.text('🔆').css('background', '#f1c40f').css('color', '#2c3e50');
} else {
localStorage.setItem('vanipedia-theme', 'light');
toggleBtn.text('☽').css('background', '#2c3e50').css('color', '#f1c40f');
}
});
});
// --- Automated Random Short Picker for Vanipedia (Kasya) ---
$(document).ready(function() {
var $widget = $('.vanipedia-random-shorts-widget');
// Only execute if the widget placeholder box exists on the current viewport
if ($widget.length) {
var $viewport = $widget.find('.vani-shorts-viewport');
var $titleFrame = $widget.find('.vani-shorts-title');
// 1. Fetch raw, untouched wiki text directly via native MediaWiki API
new mw.Api().get({
action: 'query',
prop: 'revisions',
titles: 'VanimediaMayapur YouTube SHORTS List',
rvprop: 'content',
format: 'json'
}).done(function(data) {
try {
var pages = data.query.pages;
var pageId = Object.keys(pages);
if (pageId[0] === "-1") {
$viewport.text("Source list page not found.");
return;
}
var rawWikiText = pages[pageId[0]].revisions[0]['*'];
// 2. Isolate individual gallery file entries into a clean array
var lines = rawWikiText.split('\n');
var validShorts = [];
for (var i = 0; i < lines.length; i++) {
var line = $.trim(lines[i]);
if (line.indexOf('File:') === 0 && line.toLowerCase().indexOf('link=') !== -1) {
validShorts.push(line);
}
}
if (validShorts.length === 0) {
$viewport.text("No valid short items recognized in raw layout.");
return;
}
// 3. Select a single list item completely at random
var randomLine = validShorts[Math.floor(Math.random() * validShorts.length)];
var parts = randomLine.split('|');
var videoId = "";
var cleanTitle = "YouTube Short Selection";
// 4. Extract title and clean up the URL to grab exactly 11 video characters
for (var j = 0; j < parts.length; j++) {
var part = $.trim(parts[j]);
if (part.toLowerCase().indexOf('link=') === 0) {
var urlStr = part.substring(5).trim();
// Isolate the base text string following the last slash
var lastSlashIdx = urlStr.lastIndexOf('/');
if (lastSlashIdx !== -1) {
var rawId = urlStr.substring(lastSlashIdx + 1);
// Clean up trailing parameters like ?, #, &, or accidental trailing 's text strings
videoId = rawId.split('?')[0].split('#')[0].split('&')[0].replace("'s", "").trim();
}
} else if (part.indexOf('File:') !== 0) {
cleanTitle = part; // Pulls title segment
}
}
// Final safety restriction to protect video format string bounds
if (videoId.length > 11) {
videoId = videoId.substring(0, 11);
}
// 5. Inject a native YouTube player with exact middle-box proportions (260x225px)
if (videoId && videoId.length === 11) {
var embedUrl = "https://youtube.com" + videoId;
$viewport.html('<iframe width="260" height="225" src="' + embedUrl + '" frameborder="0" allowfullscreen style="border-radius: 8px; border: none;"></iframe>');
$titleFrame.text(cleanTitle);
} else {
$viewport.html("<div style='color:#c0392b; padding:10px; font-size:11px;'>ID Parse Mismatch. Trying another...</div>");
setTimeout(function() { window.location.reload(); }, 800);
}
} catch (err) {
console.error("Shorts parsing exception:", err);
$viewport.text("Failed to unpack database array strings.");
}
}).fail(function() {
$viewport.text("Internal background registry handshake failed.");
});
}
});