MediaWiki:Common.js

From creative crowd wiki
Revision as of 15:42, 8 December 2022 by Manetta (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

// Any JavaScript here will be loaded for all 
// users on every page load. 

console.log('hello from common.js')

// rename 'Discussion' tab or context menu button 
// to 'CSS' in the 'Pdf' namespace.

const 
	url      = window.location.href,
	NS       = 'Pdf',                 // content namespace
	cssNS    = NS + 'CSS',            // css namespace
    pageName = mw.config.get("wgPageName").split(":")[1]
    
if (url.includes(NS + ':')) {
	console.log('this page is in namespace', NS)
	
	const talkAnchor = document.querySelector('#ca-talk a')
	const talkLink = talkAnchor.href
	talkAnchor.innerText = 'CSS!'
	
	// adding more buttonshttp://51.195.117.20:5555/
	const pageViews  = document.querySelector('#p-views ul')
	
	// wiki2print
	// const wiki2printButton  = document.createElement('li')
	// wiki2printButton.classList.add('collapsible', 'mw-list-item')
	// wiki2printButton.id = 'ca-wiki2print'
	// wiki2printButton.innerHTML = '<a href="http://51.195.117.20:5555/" target="_blank">wiki2print</a>'
	// pageViews.appendChild(wiki2printButton)
	
	// HTML
	const htmlButton  = document.createElement('li')
	htmlButton.classList.add('collapsible', 'mw-list-item')
	htmlButton.id = 'ca-wiki2print'
	htmlButton.innerHTML = '<a href="http://51.195.117.20:5555/html/' + pageName + '" target="_blank">HTML</a>'
	pageViews.appendChild(htmlButton)

	// PDF
	const pdfButton  = document.createElement('li')
	pdfButton.classList.add('collapsible', 'mw-list-item')
	pdfButton.id = 'ca-wiki2print'
	pdfButton.innerHTML = '<a href="http://51.195.117.20:5555/pdf/' + pageName + '" target="_blank">PDF</a>'
	pageViews.appendChild(pdfButton)

	// UPDATE
	const updateButton  = document.createElement('li')
	updateButton.classList.add('collapsible', 'mw-list-item')
	updateButton.id = 'ca-wiki2print'
	updateButton.innerHTML = '<a href="http://51.195.117.20:5555/update/' + pageName + '" target="_blank">update</a>'
	pageViews.appendChild(updateButton)

	// FULL UPDATE
	const fullupdateButton  = document.createElement('li')
	fullupdateButton.classList.add('collapsible', 'mw-list-item')
	fullupdateButton.id = 'ca-wiki2print'
	fullupdateButton.innerHTML = '<a href="http://51.195.117.20:5555/update/' + pageName + '?full=true" target="_blank">full update</a>'
	pageViews.appendChild(fullupdateButton)

} else if (url.includes(cssNS + ':')) {
	console.log('this page is in namespace', cssNS)
	
	const contentAnchor = document.querySelector('#ca-nstab-pdf a')
	const contentLink = contentAnchor.href
	
	contentAnchor.innerText = 'Content'
	
	
	// HTML
	const htmlButton  = document.createElement('li')
	htmlButton.classList.add('collapsible', 'mw-list-item')
	htmlButton.id = 'ca-wiki2print'
	htmlButton.innerHTML = '<a href="http://51.195.117.20:5555/html/' + pageName + '" target="_blank">HTML</a>'
	pageViews.appendChild(htmlButton)

	// PDF
	const pdfButton  = document.createElement('li')
	pdfButton.classList.add('collapsible', 'mw-list-item')
	pdfButton.id = 'ca-wiki2print'
	pdfButton.innerHTML = '<a href="http://51.195.117.20:5555/pdf/' + pageName + '" target="_blank">PDF</a>'
	pageViews.appendChild(pdfButton)

	// UPDATE
	const updateButton  = document.createElement('li')
	updateButton.classList.add('collapsible', 'mw-list-item')
	updateButton.id = 'ca-wiki2print'
	updateButton.innerHTML = '<a href="http://51.195.117.20:5555/update/' + pageName + '" target="_blank">update</a>'
	pageViews.appendChild(updateButton)

	// FULL UPDATE
	const fullupdateButton  = document.createElement('li')
	fullupdateButton.classList.add('collapsible', 'mw-list-item')
	fullupdateButton.id = 'ca-wiki2print'
	fullupdateButton.innerHTML = '<a href="http://51.195.117.20:5555/update/' + pageName + '?full=true" target="_blank">full update</a>'
	pageViews.appendChild(fullupdateButton)
		
}