MediaWiki:Edittools.js
Zur Navigation springen
Zur Suche springen
Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
- Opera: Strg+F5
/*!
* EditTools support
*
* Add a selector, change into true buttons, enable for all text input fields
* If enabled in preferences, the script puts the buttons into the WikiEditor Toolbar
* The special characters to insert are defined at [[MediaWiki:Edittools]].
*/
// <nowiki>
/* global jQuery, mediaWiki */
( function ( $, mw ) {
'use strict';
var oldEdittools,
$currentFocused,
$spec,
$sb,
$toolbar,
EditTools = window.EditTools = {
insertTags: function ( start, peri, end ) {
if ( $currentFocused.length ) {
$currentFocused.textSelection(
'encapsulateSelection', {
pre: start,
peri: peri,
post: end
}
);
}
},
createSelector: function () {
var $sel;
// Only care if there is more than one
if ( $sb.length <= 1 ) { return; }
$sel = $( '<select>' ).on( 'change', this.chooseCharSubset );
$sb.each( function ( i ) {
var id = $( this ).attr( 'id' ).replace( /.([0-9A-F][0-9A-F])/g, '%$1' ).replace( /_/g, ' ' );
$sel.append(
$( '<option value="' + i + '">' ).text( decodeURIComponent( id ) )
);
} );
$spec.prepend( $sel );
this.chooseCharSubset();
// Move old edittools just below
$( '#editpage-copywarn' ).parent().before( $spec.parent() );
},
chooseCharSubset: function () {
var id = $spec.find( 'select' ).val(),
$wanted = $sb.eq( id );
$sb.hide();
EditTools.makeButtons( $wanted );
$wanted.css( 'display', 'inline' );
},
bindOnClick: function ( $button, self ) {
// Copy event
var onclick = self.getAttribute( 'onclick' ), // TODO: outdated? For FF, IE8, Chrome
$self = $( self ),
start = $self.data( 'mw-charinsert-start' ),
end = $self.data( 'mw-charinsert-end' );
if ( !$.isFunction( onclick ) ) {
if ( start || end ) {
// Create new event
onclick = function ( e ) {
e.preventDefault();
EditTools.insertTags( start, '', end );
};
// Shorten button text
if ( start && end ) { $button.text( $self.text().replace( end, '' ) ); }
} else if ( !onclick && $.isFunction( $._data ) ) {
// Fallback hack for backward compatibility
onclick = $._data( self, 'events' ).click;
if ( $.isArray( onclick ) && onclick.length ) {
onclick = onclick[ 0 ].handler;
}
}
}
$button.on( 'click', onclick );
},
makeButtons: function ( $wanted ) {
var $links = $wanted.find( 'a' ),
self = this;
$links.each( function () {
var $button = $( '<button type="button">' )
.text( $( this ).text() );
self.bindOnClick( $button, this );
$( this ).replaceWith( $button ).blur();
} );
$wanted.contents().not( 'button' ).remove();
},
makeToolbarButtons: function () {
var section = [],
self = this;
// Add Edittool section
$toolbar.wikiEditor( 'addToToolbar', {
sections: {
Edittools: {
type: 'booklet',
label: 'Edittools',
pages: {
Edittools1: {
layout: 'characters',
label: 'Edittools2'
}
}
}
}
} );
$sb.eq( 0 ).find( 'a' )
.each( function () {
var $button = $( '<span>' )
.text( $( this ).text() );
self.bindOnClick( $button, this );
section.push( $button );
} );
$( '.page-Edittools1 div' )
.append( section )
.addClass( 'com-editbuttons' );
// Must start after toolbar creation
this.createSelector();
// $( '.mw-editTools' ).remove(); // The full remove is not implicit and there is more as only the standard buttons
},
enableForAllFields: function () {
$currentFocused = $toolbar;
// Apply to dynamically created textboxes as well as normal ones
$( document ).on( 'focus', 'textarea, input:text, .CodeMirror', function () {
if ( $( this ).hasClass( 'CodeMirror' ) ) {
// CodeMirror hooks into #wpTextbox1 for textSelection changes
$currentFocused = $( '#wpTextbox1' );
} else {
$currentFocused = $( this );
}
} );
},
// As elements from ext.wikiEditor are not immediately ready on load.
handleToolbarQueue: function () {
if ( $.fn.wikiEditor ) {
this.makeToolbarButtons();
} else {
$toolbar.on( 'wikiEditor-toolbar-doneInitialSections', function () {
EditTools.makeToolbarButtons();
} );
}
},
setup: function ( $toolbar ) {
mw.loader.load( '//commons.wikimedia.org/?title=MediaWiki:Edittools.css&action=raw&ctype=text/css', 'text/css' );
$sb = $spec.find( 'p.specialbasic' );
// Decide whether to use the toolbar
if ( $toolbar && $toolbar[ 0 ] && !( window.oldEdittools || oldEdittools ) && !$( '#wpUploadDescription' ).length ) {
this.handleToolbarQueue( /* $toolbar*/ );
} else {
this.createSelector();
}
this.enableForAllFields();
// mw.hook( 'wikipage.content' ).add( this.enableForAllFields );
}
};
$( function () {
$spec = $( '#specialchars' );
// Don't do anything if no edittools present.
if ( !$spec.length ) { return; }
mw.loader.using( 'user.options', function () {
// Check user preferences
oldEdittools = mw.user.options.get( 'gadget-OldEdittools' );
$toolbar = $( '#wpTextbox1' );
if ( ( mw.user.options.get( 'usebetatoolbar' ) ||
$.inArray( mw.loader.getState( 'ext.wikiEditor' ), [ 'loading', 'ready', 'loaded' ] ) !== -1 ) &&
!oldEdittools ) {
if ( $toolbar[ 0 ] ) {
EditTools.setup( $toolbar );
} else {
mw.loader.using( 'ext.wikiEditor' ).always( function () {
EditTools.setup( $( '#wpTextbox1' ) );
} );
}
} else {
EditTools.setup();
}
} );
} );
}( jQuery, mediaWiki ) );
// </nowiki>