User:Artoria2e5/js/addToolbarButtons.js

In today's world, User:Artoria2e5/js/addToolbarButtons.js is a topic that has captured the attention of millions of people around the world. With its multiple facets and implications, User:Artoria2e5/js/addToolbarButtons.js has become a key point of discussion in various fields, from politics to science, culture and society in general. Throughout history, User:Artoria2e5/js/addToolbarButtons.js has played a crucial role in the evolution of humanity, marking important milestones and generating significant changes in the way we see and understand the world around us. In this article, we will explore the different dimensions of User:Artoria2e5/js/addToolbarButtons.js and analyze its impact on our current reality.
/*
 * addToolbarButtons.js
 * version 2013-11-02
 *
 * This function lets you add function-calling buttons
 * to the toolbar above the textarea, 
 * regardless of whether the user is using the old toolbar,
 * or the "enhanced editing" WikiEditor toolbar.
 * (The visual editor is not supported).
 *
 * Home: //en.wikipedia.orghttps://wikifreehand.com/en/User:V111P/js/addToolbarButtons
 * You can use this code under the license CC0
 */

// add a single button or several buttons from the supplied array
// or else add all buttons specified in the array window.toolbarButtonsToAdd
mediaWiki.libs.addToolbarButtons = window.addToolbarButtons = function (props) {
	"use strict";

	if ($.inArray(mw.config.get( 'wgAction' ), ) == -1)
		return; // not source-editing a page

	if (!props || props) {
		var arr = props || window.toolbarButtonsToAdd || ;

		$.each(arr, function (i, val) {
			console.log(val)
			if (typeof val == 'object' && !val)
				mediaWiki.libs.addToolbarButtons(val);
		});

		arr.length = 0;
		return;
	}

	console.log(props)
	var button = {
		id: '',
		tooltip: '',
		section: 'main',
		group: 'insert',
		iconUrl: '//upload.wikimedia.org/wikipedia/commons/'
			+ 'thumb/1/1a/White_pog.svg/22px-White_pog.svg.png'
	}
	$.extend(button, props || {});
	

	function error(msg) {
		if (window.console && console.error)
			console.error('addToolbarButtons.js: ' + msg);
	}

	if (!button.id) {
		error('No button id specified.');
		return;
	}

	if ($('#' + button.id)) {
		error('An element with id ' + button.id + ' already exists on the page.');
		return;
	}

	if (!props.iconUrl && !props.iconUrlClassic)
		button.iconUrlClassic = '//upload.wikimedia.org/wikipedia/commons/e/ec/Button_base.png';

	button.before = (typeof button.before == 'string' ? button.before : '');
	button.between = (typeof button.between == 'string' ? button.between : '');
	button.after = (typeof button.after == 'string' ? button.after : '');
	button.inserts = (button.before + button.between + button.after).length > 0;
	if (!button.callback && !button.inserts) {
		error('Neither a callback function nor characters to insert specified.');
		return;
	}

	// add button to the new, WikiEditor, toolbar
	function customizeBetaToolbar() {
		var tools = {};
		tools = {
			label: button.tooltip,
			type: 'button',
			icon: button.iconUrl,
			action: {
				type: (button.inserts ? 'encapsulate' : 'callback'),
				execute: (button.inserts ? void(0) : button.callback),
				options: (button.inserts ? {
					pre: button.before,
					peri: button.between,
					post: button.after
				} : void(0))
			}
		};
		$('#wpTextbox1').wikiEditor('addToToolbar', {
			'section': button.section,
			'group': button.group,
			'tools': tools
		});
		var btn = $('.tool-button').attr('id', button.id);
		if (button.inserts && button.callback)
			btn.click(button.callback);
	}
	
	function customizeClassicToolbar () {
		// add a button to the classic toolbar
		mw.loader.using('mediawiki.action.edit', function () {
			var tempButtonId = button.id + (!button.inserts ? 'TempButton' : '');
			mw.toolbar.addButton(
				(button.iconUrlClassic || button.iconUrl),
				button.tooltip,
				button.before, button.after, button.between,
				tempButtonId,
				tempButtonId
			);
			if (button.inserts) {
				button.callback && $('#' + button.id).click(button.callback);
			}
			else {
				var $tempButton = $('#' + tempButtonId);
				if ($tempButton) {
					// clone the button to remove added event handlers
					// if not done the selection in the textarea is collapsed
					// before the callback function is called
					var newB = $tempButton.cloneNode();
					newB.id = button.id;
					$tempButton.after(newB).remove();
					$(newB).click(button.callback);
				}
			}
		});
	}
	
	mw.loader.using( 'user.options', function () {
		if ( mw.user.options.get('usebetatoolbar') ) {
			mw.loader.using( 'ext.wikiEditor', function () {
				$( customizeBetaToolbar );
			} );
		} else {
			$( customizeClassicToolbar );
		}
	} );
}

mediaWiki.libs.addToolbarButtons.version = 1000;

try { // $() doesn't work after errors from other scripts, so try directly first:
	mediaWiki.libs.addToolbarButtons();
}
catch (e) { // error - page still loading
	console.error(e)
	$(mediaWiki.libs.addToolbarButtons);
}