MediaWiki:Gadget-HexConverter.js: Difference between revisions
From OpenGK
No edit summary |
No edit summary |
||
Line 71: | Line 71: | ||
ConverterWidgets.prototype.switchDisplayTypeHandler = function (e) { | ConverterWidgets.prototype.switchDisplayTypeHandler = function (e) { | ||
let handlers = { | let handlers = { | ||
'hex': | 'hex': that.switchDisplayToHex, | ||
'dec': | 'dec': that.switchDisplayToDec, | ||
'ascii': | 'ascii': that.switchDisplayToAscii | ||
} | } | ||
handlers[$(e.target).attr('data-format')]($(e.target)); | handlers[$(e.target).attr('data-format')]($(e.target)); |
Revision as of 04:04, 28 December 2024
/* _____________________________________________________________________________
* | |
* | === WARNING: GLOBAL GADGET FILE === |
* | Changes to this page affect many users. |
* | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. |
* |_____________________________________________________________________________|
*
* Imported from version XXXX as of DATE from [[SCRIPT_SOURCE]]
* SHORT_DESCRIPTION, see [[SCRIPT_HOME_PAGE]]
*/
(function(){
console.log('js hex conv loaded');
var setup = function ( $content ) {
console.log('setup called');
var fields = Array.from( $content.find( '.hex-converter-field' ) );
console.log(fields);
new ConverterWidgets(fields, $content[0]);
}
var ConverterWidgets = function( elements, parent ) {
this.parent = parent;
this.fieldsList = [];
var that = this;
if (elements.length > 1000) {
console.log( "Too many converter widgets on page" );
return;
}
for (var i in elements) {
var field = elements[i];
console.log(field.dataset);
if (!validateInitialHexValue(field.dataset.hexConverterHex))
{
console.log('Invalid hex value supplied: ' + field.dataset.hexConverterHex);
return;
}
let dataHexValue = formatHex(field.dataset.hexConverterHex);
let dataAsciiValue = hexToAscii(dataHexValue);
$(field).replaceWith(function(){
var dynamicField = $('<div class="hex-converter-live"><div class="hex-converter-live-buttons-container"></div></div>');
dynamicField.attr('data-value-dec', 44);
dynamicField.attr('data-value-hex', '0x' + dataHexValue.toUpperCase());
dynamicField.attr('data-value-ascii', dataAsciiValue)
let buttons = [
$('<button>HEX</button>').attr('data-format', 'hex'),
$('<button>DEC</button>').attr('data-format', 'dec'),
$('<button>ASCII</button>').attr('data-format', 'ascii')
];
buttons.forEach(button => {
dynamicField.find('.hex-converter-live-buttons-container').append(button);
button[0].addEventListener('click', that.switchDisplayTypeHandler);
});
dynamicField.append($('<pre>' + dataHexValue + '</pre>'));
return dynamicField;
});
that.fieldsList.push(field);
}
}
ConverterWidgets.prototype.switchDisplayTypeHandler = function (e) {
let handlers = {
'hex': that.switchDisplayToHex,
'dec': that.switchDisplayToDec,
'ascii': that.switchDisplayToAscii
}
handlers[$(e.target).attr('data-format')]($(e.target));
}
ConverterWidgets.prototype.switchDisplayToHex = function (target) {
let parent = target.parent().parent();
parent.find('pre').html(parent.attr('data-value-' + target.attr('data-format')));
}
ConverterWidgets.prototype.switchDisplayToDec = function (target) {
let parent = target.parent().parent();
parent.find('pre').html(hexToDecimal(parent.attr('data-value-hex')));
}
ConverterWidgets.prototype.switchDisplayToAscii = function (target) {
let parent = target.parent().parent();
parent.find('pre').html(parent.attr('data-value-' + target.attr('data-format')));
}
var validateInitialHexValue = function (input) {
input = input.toLowerCase();
if (input.startsWith('0x')){
input = input.substring(2);
}
input.replace(' ', '').toLowerCase();
if (!Boolean(input.match(/[0-9a-f]+$/i))) {
return false;
}
return true;
}
var formatHex = function (input) {
let output = input.match(/(..?)/g).join(' ');
return output.toUpperCase();
}
var hexToDecimal = function (input) { // we have to process it byte at a time or javascript will shit itself
let output = [];
let bytes = input.match(/(..?)/g);
bytes.forEach(byte => {
output.push(parseInt(byte, 16));
});
return output.join(' ');
}
var hexToAscii = function (hexx) {
var hex = hexx.toString();
var str = '';
for (var i = 0; i < hex.length; i += 2)
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
return str;
}
mw.hook( 'wikipage.content' ).add( setup );
})();