2015-03-16 05:00:43 +00:00
|
|
|
( function ( mw, $ ) {
|
2017-06-26 23:37:48 +00:00
|
|
|
var origTextSelection, useCodeMirror, codeMirror, api, originHooksTextarea,
|
2017-10-03 17:46:21 +00:00
|
|
|
wikiEditorToolbarEnabled, enableContentEditable = true;
|
2017-03-21 10:13:18 +00:00
|
|
|
|
2015-11-18 05:34:36 +00:00
|
|
|
if ( mw.config.get( 'wgCodeEditorCurrentLanguage' ) ) { // If the CodeEditor is used then just exit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-16 05:00:43 +00:00
|
|
|
// codeMirror needs a special textselection jQuery function to work, save the current one to restore when
|
|
|
|
// CodeMirror get's disabled.
|
2017-03-21 10:13:18 +00:00
|
|
|
origTextSelection = $.fn.textSelection;
|
2017-09-11 14:43:32 +00:00
|
|
|
|
2017-03-21 13:21:48 +00:00
|
|
|
useCodeMirror = mw.user.options.get( 'usecodemirror' ) > 0;
|
2017-03-21 10:13:18 +00:00
|
|
|
api = new mw.Api();
|
2017-09-11 14:43:32 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
originHooksTextarea = $.valHooks.textarea;
|
2017-09-11 14:43:32 +00:00
|
|
|
// define jQuery hook for searching and replacing text using JS if CodeMirror is enabled, see Bug: T108711
|
|
|
|
$.valHooks.textarea = {
|
|
|
|
get: function ( elem ) {
|
|
|
|
if ( elem.id === 'wpTextbox1' && codeMirror ) {
|
|
|
|
return codeMirror.doc.getValue();
|
|
|
|
} else if ( originHooksTextarea ) {
|
|
|
|
return originHooksTextarea.get( elem );
|
|
|
|
}
|
|
|
|
return elem.value;
|
|
|
|
},
|
|
|
|
set: function ( elem, value ) {
|
|
|
|
if ( elem.id === 'wpTextbox1' && codeMirror ) {
|
|
|
|
return codeMirror.doc.setValue( value );
|
|
|
|
} else if ( originHooksTextarea ) {
|
|
|
|
return originHooksTextarea.set( elem, value );
|
|
|
|
}
|
|
|
|
elem.value = value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-20 22:30:58 +00:00
|
|
|
// The WikiEditor extension exists the WikiEditor beta toolbar is used by the user
|
|
|
|
wikiEditorToolbarEnabled = !!mw.loader.getState( 'ext.wikiEditor' ) &&
|
2017-04-18 07:51:32 +00:00
|
|
|
// This can be the string "0" if the user disabled the preference - Bug T54542#555387
|
2017-04-20 22:30:58 +00:00
|
|
|
mw.user.options.get( 'usebetatoolbar' ) > 0;
|
2017-04-18 07:51:32 +00:00
|
|
|
|
2017-10-03 17:46:21 +00:00
|
|
|
// Disable spellchecking for Firefox users on non-Mac systems (Bug T95104)
|
|
|
|
if ( navigator.userAgent.indexOf( 'Firefox' ) > -1 &&
|
|
|
|
navigator.userAgent.indexOf( 'Mac' ) === -1
|
|
|
|
) {
|
|
|
|
enableContentEditable = false;
|
|
|
|
}
|
|
|
|
|
2017-09-11 16:37:38 +00:00
|
|
|
// T174055: Do not redefine the browser history navigation keys (T175378: for PC only)
|
|
|
|
CodeMirror.keyMap.pcDefault[ 'Alt-Left' ] = false;
|
|
|
|
CodeMirror.keyMap.pcDefault[ 'Alt-Right' ] = false;
|
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
// function for a textselection function for CodeMirror
|
|
|
|
function cmTextSelection( command, options ) {
|
|
|
|
var fn, retval;
|
2014-09-05 09:44:51 +00:00
|
|
|
|
2017-09-04 08:54:26 +00:00
|
|
|
if ( !codeMirror ) {
|
2017-03-21 10:13:18 +00:00
|
|
|
return origTextSelection.call( this, command, options );
|
|
|
|
}
|
2015-03-16 05:00:43 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
fn = {
|
|
|
|
/**
|
|
|
|
* Get the contents of the textarea
|
|
|
|
*
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
getContents: function () {
|
|
|
|
return codeMirror.doc.getValue();
|
|
|
|
},
|
|
|
|
|
|
|
|
setContents: function ( newContents ) {
|
|
|
|
codeMirror.doc.setValue( newContents );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the currently selected text in this textarea. Will focus the textarea
|
|
|
|
* in some browsers (IE/Opera)
|
|
|
|
*
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
getSelection: function () {
|
|
|
|
return codeMirror.doc.getSelection();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts text at the beginning and end of a text selection, optionally
|
|
|
|
* inserting text at the caret when selection is empty.
|
|
|
|
*
|
|
|
|
* @param {Object} options
|
|
|
|
* @return {jQuery}
|
|
|
|
*/
|
|
|
|
encapsulateSelection: function ( options ) {
|
|
|
|
return this.each( function () {
|
|
|
|
var insertText,
|
|
|
|
selText,
|
|
|
|
selectPeri = options.selectPeri,
|
|
|
|
pre = options.pre,
|
|
|
|
post = options.post,
|
|
|
|
startCursor = codeMirror.doc.getCursor( true ),
|
|
|
|
endCursor = codeMirror.doc.getCursor( false );
|
|
|
|
|
|
|
|
if ( options.selectionStart !== undefined ) {
|
|
|
|
// fn[command].call( this, options );
|
|
|
|
fn.setSelection( { start: options.selectionStart, end: options.selectionEnd } ); // not tested
|
|
|
|
}
|
2014-09-05 09:44:51 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
selText = codeMirror.doc.getSelection();
|
|
|
|
if ( !selText ) {
|
|
|
|
selText = options.peri;
|
|
|
|
} else if ( options.replace ) {
|
|
|
|
selectPeri = false;
|
|
|
|
selText = options.peri;
|
|
|
|
} else {
|
|
|
|
selectPeri = false;
|
|
|
|
while ( selText.charAt( selText.length - 1 ) === ' ' ) {
|
|
|
|
// Exclude ending space char
|
|
|
|
selText = selText.substring( 0, selText.length - 1 );
|
|
|
|
post += ' ';
|
|
|
|
}
|
|
|
|
while ( selText.charAt( 0 ) === ' ' ) {
|
|
|
|
// Exclude prepending space char
|
|
|
|
selText = selText.substring( 1, selText.length );
|
|
|
|
pre = ' ' + pre;
|
|
|
|
}
|
|
|
|
}
|
2015-11-24 16:03:00 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
/**
|
|
|
|
* Do the splitlines stuff.
|
|
|
|
*
|
|
|
|
* Wrap each line of the selected text with pre and post
|
|
|
|
*
|
|
|
|
* @param {string} selText
|
|
|
|
* @param {string} pre
|
|
|
|
* @param {string} post
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
function doSplitLines( selText, pre, post ) {
|
|
|
|
var i,
|
|
|
|
insertText = '',
|
|
|
|
selTextArr = selText.split( '\n' );
|
|
|
|
|
|
|
|
for ( i = 0; i < selTextArr.length; i++ ) {
|
|
|
|
insertText += pre + selTextArr[ i ] + post;
|
|
|
|
if ( i !== selTextArr.length - 1 ) {
|
2014-09-05 10:43:05 +00:00
|
|
|
insertText += '\n';
|
|
|
|
}
|
|
|
|
}
|
2017-03-21 10:13:18 +00:00
|
|
|
return insertText;
|
|
|
|
}
|
2014-09-05 10:43:05 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
if ( options.splitlines ) {
|
|
|
|
selectPeri = false;
|
|
|
|
insertText = doSplitLines( selText, pre, post );
|
|
|
|
} else {
|
|
|
|
insertText = pre + selText + post;
|
|
|
|
}
|
2014-09-05 09:44:51 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
if ( options.ownline ) {
|
|
|
|
if ( startCursor.ch !== 0 ) {
|
|
|
|
insertText = '\n' + insertText;
|
|
|
|
pre += '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( codeMirror.doc.getLine( endCursor.line ).length !== endCursor.ch ) {
|
|
|
|
insertText += '\n';
|
|
|
|
post += '\n';
|
2014-09-05 10:43:05 +00:00
|
|
|
}
|
2015-03-16 05:00:43 +00:00
|
|
|
}
|
2017-03-21 10:13:18 +00:00
|
|
|
|
|
|
|
codeMirror.doc.replaceSelection( insertText );
|
|
|
|
|
|
|
|
if ( selectPeri ) {
|
|
|
|
codeMirror.doc.setSelection(
|
2017-04-04 00:15:09 +00:00
|
|
|
codeMirror.doc.posFromIndex( codeMirror.doc.indexFromPos( startCursor ) + pre.length ),
|
|
|
|
codeMirror.doc.posFromIndex( codeMirror.doc.indexFromPos( startCursor ) + pre.length + selText.length )
|
|
|
|
);
|
2015-03-16 05:00:43 +00:00
|
|
|
}
|
2017-03-21 10:13:18 +00:00
|
|
|
} );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the position (in resolution of bytes not necessarily characters)
|
|
|
|
* in a textarea
|
|
|
|
*
|
|
|
|
* @param {Object} options
|
|
|
|
* @return {number}
|
|
|
|
*/
|
|
|
|
getCaretPosition: function ( options ) {
|
|
|
|
var caretPos = codeMirror.doc.indexFromPos( codeMirror.doc.getCursor( true ) ),
|
|
|
|
endPos = codeMirror.doc.indexFromPos( codeMirror.doc.getCursor( false ) );
|
|
|
|
if ( options.startAndEnd ) {
|
|
|
|
return [ caretPos, endPos ];
|
|
|
|
}
|
|
|
|
return caretPos;
|
|
|
|
},
|
|
|
|
|
|
|
|
setSelection: function ( options ) {
|
|
|
|
return this.each( function () {
|
|
|
|
codeMirror.doc.setSelection( codeMirror.doc.posFromIndex( options.start ), codeMirror.doc.posFromIndex( options.end ) );
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll a textarea to the current cursor position. You can set the cursor
|
|
|
|
* position with setSelection()
|
|
|
|
*
|
|
|
|
* @return {jQuery}
|
|
|
|
*/
|
|
|
|
scrollToCaretPosition: function () {
|
|
|
|
return this.each( function () {
|
|
|
|
codeMirror.scrollIntoView( null );
|
|
|
|
} );
|
2015-03-16 05:00:43 +00:00
|
|
|
}
|
2017-03-21 10:13:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
switch ( command ) {
|
|
|
|
// case 'getContents': // no params
|
|
|
|
// case 'setContents': // no params with defaults
|
|
|
|
// case 'getSelection': // no params
|
|
|
|
case 'encapsulateSelection':
|
|
|
|
options = $.extend( {
|
|
|
|
pre: '', // Text to insert before the cursor/selection
|
|
|
|
peri: '', // Text to insert between pre and post and select afterwards
|
|
|
|
post: '', // Text to insert after the cursor/selection
|
|
|
|
ownline: false, // Put the inserted text on a line of its own
|
|
|
|
replace: false, // If there is a selection, replace it with peri instead of leaving it alone
|
|
|
|
selectPeri: true, // Select the peri text if it was inserted (but not if there was a selection and replace==false, or if splitlines==true)
|
|
|
|
splitlines: false, // If multiple lines are selected, encapsulate each line individually
|
|
|
|
selectionStart: undefined, // Position to start selection at
|
|
|
|
selectionEnd: undefined // Position to end selection at. Defaults to start
|
|
|
|
}, options );
|
|
|
|
break;
|
|
|
|
case 'getCaretPosition':
|
|
|
|
options = $.extend( {
|
|
|
|
// Return [start, end] instead of just start
|
|
|
|
startAndEnd: false
|
|
|
|
}, options );
|
|
|
|
// FIXME: We may not need character position-based functions if we insert markers in the right places
|
|
|
|
break;
|
|
|
|
case 'setSelection':
|
|
|
|
options = $.extend( {
|
|
|
|
// Position to start selection at
|
|
|
|
start: undefined,
|
|
|
|
// Position to end selection at. Defaults to start
|
|
|
|
end: undefined,
|
|
|
|
// Element to start selection in (iframe only)
|
|
|
|
startContainer: undefined,
|
|
|
|
// Element to end selection in (iframe only). Defaults to startContainer
|
|
|
|
endContainer: undefined
|
|
|
|
}, options );
|
|
|
|
|
|
|
|
if ( options.end === undefined ) {
|
|
|
|
options.end = options.start;
|
|
|
|
}
|
|
|
|
if ( options.endContainer === undefined ) {
|
|
|
|
options.endContainer = options.startContainer;
|
|
|
|
}
|
|
|
|
// FIXME: We may not need character position-based functions if we insert markers in the right places
|
|
|
|
break;
|
|
|
|
case 'scrollToCaretPosition':
|
|
|
|
options = $.extend( {
|
|
|
|
force: false // Force a scroll even if the caret position is already visible
|
|
|
|
}, options );
|
|
|
|
break;
|
|
|
|
}
|
2014-10-23 06:09:10 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
retval = fn[ command ].call( this, options );
|
2017-03-22 11:47:16 +00:00
|
|
|
if ( command === 'setSelection' ) {
|
|
|
|
codeMirror.focus();
|
|
|
|
}
|
2014-10-23 06:09:10 +00:00
|
|
|
|
2017-03-21 10:13:18 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-03-16 05:00:43 +00:00
|
|
|
/**
|
|
|
|
* Save CodeMirror enabled pref.
|
|
|
|
*
|
2015-11-24 16:03:00 +00:00
|
|
|
* @param {boolean} prefValue True, if CodeMirror should be enabled by default, otherwise false.
|
2015-03-16 05:00:43 +00:00
|
|
|
*/
|
|
|
|
function setCodeEditorPreference( prefValue ) {
|
2017-03-27 08:23:21 +00:00
|
|
|
useCodeMirror = prefValue; // Save state for function updateToolbarIcon()
|
|
|
|
|
2015-10-29 03:15:29 +00:00
|
|
|
if ( mw.user.isAnon() ) { // Skip it for anon users
|
|
|
|
return;
|
|
|
|
}
|
2017-03-21 13:21:48 +00:00
|
|
|
api.saveOption( 'usecodemirror', prefValue ? 1 : 0 );
|
|
|
|
mw.user.options.set( 'usecodemirror', prefValue ? 1 : 0 );
|
2014-10-23 06:09:10 +00:00
|
|
|
}
|
|
|
|
|
2015-03-16 05:00:43 +00:00
|
|
|
/**
|
|
|
|
* Replaces the default textarea with CodeMirror
|
|
|
|
*/
|
2017-04-18 07:51:32 +00:00
|
|
|
function enableCodeMirror() {
|
2017-04-28 13:42:30 +00:00
|
|
|
var config = mw.config.get( 'extCodeMirrorConfig' );
|
2015-03-16 05:00:43 +00:00
|
|
|
|
2017-05-04 20:18:37 +00:00
|
|
|
mw.loader.using( config.pluginModules, function () {
|
2017-04-28 13:42:30 +00:00
|
|
|
var $codeMirror,
|
2017-09-03 16:14:51 +00:00
|
|
|
$textbox1 = $( '#wpTextbox1' ),
|
|
|
|
selectionStart = $textbox1.prop( 'selectionStart' ),
|
|
|
|
selectionEnd = $textbox1.prop( 'selectionEnd' ),
|
|
|
|
scrollTop = $textbox1.scrollTop();
|
|
|
|
|
2017-11-06 22:48:50 +00:00
|
|
|
// If CodeMirror is already loaded or wikEd gadget is enabled, abort. See T178348.
|
|
|
|
// FIXME: Would be good to replace the wikEd check with something more generic.
|
|
|
|
if ( codeMirror || window.wikEd !== undefined ) {
|
2017-09-03 16:14:51 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-04-28 13:42:30 +00:00
|
|
|
|
|
|
|
codeMirror = CodeMirror.fromTextArea( $textbox1[ 0 ], {
|
|
|
|
mwConfig: config,
|
|
|
|
// styleActiveLine: true, // disabled since Bug: T162204, maybe should be optional
|
|
|
|
lineWrapping: true,
|
|
|
|
readOnly: $textbox1[ 0 ].readOnly,
|
|
|
|
// select mediawiki as text input mode
|
|
|
|
mode: 'text/mediawiki',
|
|
|
|
extraKeys: {
|
2017-08-24 17:58:13 +00:00
|
|
|
Tab: false,
|
2017-09-04 09:36:34 +00:00
|
|
|
// T174514: Move the cursor at the beginning/end of the current wrapped line
|
|
|
|
Home: 'goLineLeft',
|
2017-09-11 16:37:38 +00:00
|
|
|
End: 'goLineRight'
|
2017-09-05 19:33:41 +00:00
|
|
|
},
|
2017-10-03 17:46:21 +00:00
|
|
|
inputStyle: enableContentEditable ? 'contenteditable' : 'textarea',
|
|
|
|
spellcheck: enableContentEditable,
|
2017-09-05 19:33:41 +00:00
|
|
|
viewportMargin: Infinity
|
2017-04-28 13:42:30 +00:00
|
|
|
} );
|
2017-09-05 19:33:41 +00:00
|
|
|
|
2017-04-28 13:42:30 +00:00
|
|
|
$codeMirror = $( codeMirror.getWrapperElement() );
|
2017-03-21 13:21:48 +00:00
|
|
|
|
2017-11-06 23:42:05 +00:00
|
|
|
$codeMirror.resizable( {
|
|
|
|
handles: 'se',
|
|
|
|
resize: function ( event, ui ) {
|
|
|
|
ui.size.width = ui.originalSize.width;
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2017-09-03 16:14:51 +00:00
|
|
|
codeMirror.doc.setSelection( codeMirror.doc.posFromIndex( selectionEnd ), codeMirror.doc.posFromIndex( selectionStart ) );
|
|
|
|
codeMirror.scrollTo( null, scrollTop );
|
|
|
|
|
2017-04-28 13:42:30 +00:00
|
|
|
// HACK: <textarea> font size varies by browser (chrome/FF/IE)
|
|
|
|
$codeMirror.css( {
|
|
|
|
'font-size': $textbox1.css( 'font-size' ),
|
|
|
|
'line-height': $textbox1.css( 'line-height' )
|
|
|
|
} );
|
|
|
|
|
2017-09-09 12:31:24 +00:00
|
|
|
// use direction and language of the original textbox
|
|
|
|
$codeMirror.attr( {
|
|
|
|
dir: $textbox1.attr( 'dir' ),
|
|
|
|
lang: $textbox1.attr( 'lang' )
|
|
|
|
} );
|
|
|
|
|
2017-04-28 13:42:30 +00:00
|
|
|
if ( !wikiEditorToolbarEnabled ) {
|
|
|
|
$codeMirror.addClass( 'mw-codeMirror-classicToolbar' );
|
|
|
|
}
|
2014-10-23 06:09:10 +00:00
|
|
|
|
2017-04-28 13:42:30 +00:00
|
|
|
// set the height of the textarea
|
|
|
|
codeMirror.setSize( null, $textbox1.height() );
|
|
|
|
// Overwrite default textselection of WikiEditor to work with CodeMirror, too
|
|
|
|
$.fn.textSelection = cmTextSelection;
|
|
|
|
} );
|
2014-10-23 06:09:10 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 14:43:32 +00:00
|
|
|
/**
|
|
|
|
* Updates CodeMirror button on the toolbar according to the current state (on/off)
|
|
|
|
*/
|
|
|
|
function updateToolbarButton() {
|
|
|
|
$( '#mw-editbutton-codemirror' )
|
|
|
|
.toggleClass( 'mw-editbutton-codemirror-on', !!useCodeMirror )
|
|
|
|
.toggleClass( 'mw-editbutton-codemirror-off', !useCodeMirror );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enables or disables CodeMirror
|
|
|
|
*/
|
|
|
|
function switchCodeMirror() {
|
|
|
|
var selectionObj,
|
|
|
|
selectionStart,
|
|
|
|
selectionEnd,
|
|
|
|
scrollTop,
|
|
|
|
hasFocus,
|
|
|
|
$textbox1 = $( '#wpTextbox1' );
|
|
|
|
|
|
|
|
if ( codeMirror ) {
|
|
|
|
scrollTop = codeMirror.getScrollInfo().top;
|
|
|
|
selectionObj = codeMirror.doc.listSelections()[ 0 ];
|
|
|
|
selectionStart = codeMirror.doc.indexFromPos( selectionObj.head );
|
|
|
|
selectionEnd = codeMirror.doc.indexFromPos( selectionObj.anchor );
|
|
|
|
hasFocus = codeMirror.hasFocus();
|
|
|
|
setCodeEditorPreference( false );
|
|
|
|
codeMirror.toTextArea();
|
|
|
|
codeMirror = null;
|
|
|
|
$.fn.textSelection = origTextSelection;
|
|
|
|
if ( hasFocus ) {
|
|
|
|
$textbox1.focus();
|
|
|
|
}
|
|
|
|
$textbox1.prop( 'selectionStart', selectionStart );
|
|
|
|
$textbox1.prop( 'selectionEnd', selectionEnd );
|
|
|
|
$textbox1.scrollTop( scrollTop );
|
|
|
|
} else {
|
|
|
|
enableCodeMirror();
|
|
|
|
setCodeEditorPreference( true );
|
|
|
|
}
|
|
|
|
updateToolbarButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the CodeMirror button to WikiEditor
|
|
|
|
*/
|
|
|
|
function addCodeMirrorToWikiEditor() {
|
|
|
|
var $codeMirrorButton;
|
|
|
|
|
|
|
|
$( '#wpTextbox1' ).wikiEditor(
|
|
|
|
'addToToolbar',
|
|
|
|
{
|
|
|
|
section: 'main',
|
|
|
|
groups: {
|
|
|
|
codemirror: {
|
|
|
|
tools: {
|
|
|
|
CodeMirror: {
|
|
|
|
label: mw.msg( 'codemirror-toggle-label' ),
|
|
|
|
type: 'button',
|
|
|
|
action: {
|
|
|
|
type: 'callback',
|
|
|
|
execute: function () {
|
|
|
|
switchCodeMirror();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$codeMirrorButton = $( '#wpTextbox1' ).data( 'wikiEditor-context' ).modules.toolbar.$toolbar.find( 'a.tool[rel=CodeMirror]' );
|
|
|
|
$codeMirrorButton.attr( 'id', 'mw-editbutton-codemirror' );
|
|
|
|
|
|
|
|
updateToolbarButton();
|
|
|
|
}
|
|
|
|
|
2017-11-06 22:25:26 +00:00
|
|
|
/**
|
|
|
|
* Adds CodeMirror button to the toolbar
|
|
|
|
*/
|
|
|
|
function addToolbarButton() {
|
|
|
|
// Check if the user is using the enhanced editing toolbar (supplied by the
|
|
|
|
// WikiEditor extension) or the default editing toolbar (supplied by core).
|
|
|
|
if ( wikiEditorToolbarEnabled ) {
|
|
|
|
// They are using the enhanced editing toolbar.
|
|
|
|
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
|
|
|
|
// Add CodeMirror button to the enhanced editing toolbar.
|
|
|
|
$( addCodeMirrorToWikiEditor );
|
|
|
|
} );
|
|
|
|
} else {
|
|
|
|
// They are using the default editing toolbar.
|
|
|
|
mw.loader.using( 'mediawiki.toolbar', function () {
|
|
|
|
// Add CodeMirror button to the default editing toolbar.
|
|
|
|
mw.toolbar.addButton( {
|
|
|
|
speedTip: mw.msg( 'codemirror-toggle-label' ),
|
|
|
|
imageId: 'mw-editbutton-codemirror',
|
|
|
|
onClick: function () {
|
|
|
|
switchCodeMirror();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
// We don't know when button will be added, wait until the document is ready to update it
|
|
|
|
$( function () {
|
|
|
|
updateToolbarButton();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 23:37:48 +00:00
|
|
|
/**
|
|
|
|
* Add a popup for first time users (T165003)
|
2017-07-20 14:28:40 +00:00
|
|
|
*
|
|
|
|
* If popup hasn't been shown before, show popup and add a localStorage entry.
|
|
|
|
* check it before showing popup in future.
|
|
|
|
*/
|
|
|
|
function handlePopup() {
|
2017-09-11 02:23:22 +00:00
|
|
|
var yesButton, noButton, $labelText, $label, $content, popup;
|
2017-07-20 14:28:40 +00:00
|
|
|
|
2017-08-03 22:55:16 +00:00
|
|
|
// If CodeMirror button doesn't exist, don't show popup
|
|
|
|
if ( !$( '#mw-editbutton-codemirror' ).length ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-20 14:28:40 +00:00
|
|
|
// If popup has previously been dismissed, don't show again.
|
|
|
|
if ( mw.storage.get( 'codemirror-try-popup' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mw.storage.set( 'codemirror-try-popup', 1 );
|
|
|
|
|
|
|
|
yesButton = new OO.ui.ButtonWidget( {
|
|
|
|
label: mw.msg( 'codemirror-popup-btn-yes' ),
|
|
|
|
flags: [ 'primary', 'progressive' ]
|
|
|
|
} );
|
|
|
|
noButton = new OO.ui.ButtonWidget( {
|
|
|
|
label: mw.msg( 'codemirror-popup-btn-no' ),
|
|
|
|
flags: [ 'destructive' ]
|
|
|
|
} );
|
2017-09-11 02:23:22 +00:00
|
|
|
$labelText = $( '<span>' ).text( mw.msg( 'codemirror-popup-label' ) );
|
|
|
|
$label = $( '<span>' )
|
|
|
|
.addClass( 'codemirror-popup-label' )
|
|
|
|
.append( '{ ', $labelText, ' }' );
|
2017-07-20 14:28:40 +00:00
|
|
|
$content =
|
2017-07-20 14:15:49 +00:00
|
|
|
$( '<div>' ).addClass( 'codemirror-popup-div' ).append(
|
|
|
|
$( '<div>' ).addClass( 'codemirror-popup-text' ).text( mw.msg( 'codemirror-popup-desc' ) ),
|
2017-07-20 14:28:40 +00:00
|
|
|
yesButton.$element,
|
|
|
|
noButton.$element
|
2017-07-20 14:15:49 +00:00
|
|
|
);
|
|
|
|
|
2017-06-26 23:37:48 +00:00
|
|
|
popup = new OO.ui.PopupWidget( {
|
2017-07-20 14:28:40 +00:00
|
|
|
head: true,
|
2017-09-11 02:23:22 +00:00
|
|
|
label: $label,
|
2017-07-20 14:28:40 +00:00
|
|
|
classes: [ 'codemirror-popup' ],
|
2017-07-20 14:15:49 +00:00
|
|
|
$content: $content,
|
2017-06-26 23:37:48 +00:00
|
|
|
$floatableContainer: $( '#mw-editbutton-codemirror' ),
|
2017-07-20 14:28:40 +00:00
|
|
|
padded: true,
|
|
|
|
width: 300
|
2017-06-26 23:37:48 +00:00
|
|
|
} );
|
|
|
|
// Add our popup to the body, it will find its correct position using $floatableContainer
|
|
|
|
$( 'body' ).append( popup.$element );
|
|
|
|
|
2017-07-20 14:28:40 +00:00
|
|
|
// Events
|
|
|
|
yesButton.on( 'click', function () {
|
|
|
|
if ( !codeMirror ) {
|
|
|
|
switchCodeMirror();
|
|
|
|
}
|
|
|
|
popup.toggle( false );
|
|
|
|
} );
|
|
|
|
noButton.on( 'click', function () {
|
|
|
|
if ( codeMirror ) {
|
|
|
|
switchCodeMirror();
|
|
|
|
}
|
|
|
|
popup.toggle( false );
|
|
|
|
} );
|
|
|
|
|
2017-06-26 23:37:48 +00:00
|
|
|
// To display the popup, toggle the visibility to 'true'
|
|
|
|
popup.toggle( true );
|
|
|
|
}
|
|
|
|
|
2017-07-10 21:16:36 +00:00
|
|
|
// If view is in edit mode, add the button to the toolbar.
|
2017-08-25 14:13:23 +00:00
|
|
|
if ( $( '#wpTextbox1' ).length ) {
|
2017-11-06 22:25:26 +00:00
|
|
|
addToolbarButton();
|
2017-07-20 14:28:40 +00:00
|
|
|
|
|
|
|
// Don't show popup if CM already enabled
|
|
|
|
if ( !useCodeMirror ) {
|
|
|
|
// Wait for DOM before loading our popup
|
|
|
|
$( function () {
|
2017-09-11 06:26:39 +00:00
|
|
|
setTimeout( handlePopup, 500 );
|
2017-07-20 14:28:40 +00:00
|
|
|
} );
|
|
|
|
}
|
2015-03-16 05:00:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// enable CodeMirror
|
2017-03-21 13:21:48 +00:00
|
|
|
if ( useCodeMirror ) {
|
2017-04-18 07:51:32 +00:00
|
|
|
if ( wikiEditorToolbarEnabled ) {
|
|
|
|
$( '#wpTextbox1' ).on( 'wikiEditor-toolbar-doneInitialSections', enableCodeMirror.bind( this ) );
|
2017-03-21 13:21:48 +00:00
|
|
|
} else {
|
2017-04-18 07:51:32 +00:00
|
|
|
enableCodeMirror();
|
2017-03-21 13:21:48 +00:00
|
|
|
}
|
2014-10-23 06:09:10 +00:00
|
|
|
}
|
2017-06-26 23:37:48 +00:00
|
|
|
|
2017-09-11 04:47:39 +00:00
|
|
|
// Synchronize textarea with CodeMirror before leaving
|
|
|
|
window.addEventListener( 'beforeunload', function () {
|
|
|
|
if ( codeMirror ) {
|
|
|
|
codeMirror.save();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2015-03-16 05:00:43 +00:00
|
|
|
}( mediaWiki, jQuery ) );
|