User:Jackmcbarn/parsoidview.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Jackmcbarn/parsoidview. |
$(function(){
'use strict';
var isParsoid = false, elem = $('#mw-content-text')[0], phpHTML = 'Loading HTML from PHP...', parsoidHTML = null;
var portletLink = mw.util.addPortletLink( 'p-tb', '#', 'Enable Parsoid view', 't-parsoid-view-toggle' );
$( portletLink ).click( function ( e ) {
e.preventDefault();
if(isParsoid) {
elem.innerHTML = phpHTML;
isParsoid = false;
portletLink.firstChild.innerHTML = 'Enable Parsoid view';
} else {
if(!parsoidHTML) {
parsoidHTML = 'Loading HTML from Parsoid...';
mw.loader.load('mediawiki.skinning.content.parsoid');
$.ajax({
url: '/api/rest_v1/page/html/' + encodeURIComponent(mw.config.get('wgPageName')) + '/' + mw.config.get('wgRevisionId'),
headers: {
Accept: 'text/html; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/HTML/2.0.0"',
'Api-User-Agent': 'parsoidview (https://en.wikipedia.org/wiki/User:Jackmcbarn/parsoidview.js)'
},
success: function(data) {
var parsoidDom = new DOMParser().parseFromString(data, 'text/html');
parsoidHTML = parsoidDom.body.innerHTML;
if(isParsoid) {
elem.innerHTML = parsoidHTML;
}
}
});
$.get('/w/index.php?action=render&oldid=' + mw.config.get('wgRevisionId'), function(data) {
var phpDom = new DOMParser().parseFromString(data, 'text/html');
$('#toc', phpDom).remove(); // hack: since Parsoid doesn't give us a TOC, ditch PHP's so things are the same on both
phpHTML = phpDom.body.innerHTML;
if(!isParsoid) {
elem.innerHTML = phpHTML;
}
});
$( portletLink ).css('position', 'fixed').css('top', '2em').css('right', 0);
}
elem.innerHTML = parsoidHTML;
isParsoid = true;
portletLink.firstChild.innerHTML = 'Disable Parsoid view';
}
});
});