MediaWiki
Gadget-breadcrumbs.js
From Dogcraft Wiki
No edit summary |
m (Added Shelters, reorganised so Bases, Stations and Shelters show up more clearly as Build subcats) |
||
Line 26: | Line 26: | ||
list = "", | list = "", | ||
typeCategories = [ | typeCategories = [ | ||
"Events", | "Events", | ||
"Settlements", | "Settlements", | ||
Line 52: | Line 50: | ||
} | } | ||
if (pageCategories.includes(' | if (pageCategories.includes('Builds')) { | ||
links.push( "Builds" ); | links.push( "Builds" ); | ||
links.push( "Bases" ); | for (var i = 0; i < pageCategories.length; i++) { | ||
switch (pageCategories[i]) { | |||
case 'Bases': | |||
links.push( "Bases" ); | |||
break; | |||
case 'Stations': | |||
links.push( "Stations" ); | |||
break; | |||
case 'Shelters': | |||
links.push( "Shelters" ); | |||
break; | |||
default: | |||
break; | |||
} | |||
} | |||
} | } | ||
else | else |
Revision as of 20:48, 8 August 2021
$(document).ready(function() {
function worldCat( pageCats ) {
var world;
for (var i = 0; i < pageCats.length; i++) {
if ( pageCats[i].indexOf('Survival ') > -1) {
world = pageCats[i] + '';
return world;
}
}
return "";
}
var config = mw.config.get([
"wgIsArticle",
"wgNamespaceNumber",
"wgCategories",
"wgTitle"
]);
if ( config.wgIsArticle && ( config.wgNamespaceNumber == 0 && config.wgTitle !== "Main Page")) {
//var namespace = mw.config.get('wgFormattedNamespaces')[mw.config.get('wgNamespaceNumber')];
var serverInfo = "",
siteContent = "",
type = "",
list = "",
typeCategories = [
"Events",
"Settlements",
"Groups",
"Phenomenon",
"Projects",
"Worlds"
],
pageCategories = config.wgCategories,
links = [],
crumbs = "<a href='/wiki/Main_Page'><span>Main Page</span></a>";
if (pageCategories.includes('Site Content')) {
links.push( "Site Content" );
}
if (pageCategories.includes('Server Information')) {
links.push( "Server Information" );
}
var world = '';
if ( worldCat( pageCategories ) !== "") {
links.push( worldCat( pageCategories ) );
}
if (pageCategories.includes('Builds')) {
links.push( "Builds" );
for (var i = 0; i < pageCategories.length; i++) {
switch (pageCategories[i]) {
case 'Bases':
links.push( "Bases" );
break;
case 'Stations':
links.push( "Stations" );
break;
case 'Shelters':
links.push( "Shelters" );
break;
default:
break;
}
}
}
else
{
var typesOnPage = pageCategories.filter(function(x){ return typeCategories.includes(x) });
if ( typesOnPage.length == 1) {
links.push( typesOnPage[0] + "" );
}
else if (typesOnPage.length > 1) {
console.log('Breadcrumbs: Page has more than one type category');
links.push( typesOnPage[0] + "" );
}
}
if (pageCategories.includes('Lists')) {
links.push( "Lists" );
}
links.forEach( function( elem ) {
crumbs += '<a href="/wiki/Category:' + elem + '">' + '<span>' + elem + '</span>' + '</a>';
});
if( links !== "undefined") {
$('.top .indicators').prepend('<div id="breadcrumbs"></div>');
$('#breadcrumbs').html('' + crumbs + '<span>' + config.wgTitle + '</span>' );
}
else { console.log(' Breadcrumbs: links is undefined '); }
}
});
This page was last modified on 8 August 2021, at 20:48. (3 months ago)