mediawiki-extensions-CodeEd.../modules/ext.codeEditor.geshi.js
Derk-Jan Hartman d0ec3d6982 Fix JSHint for CodeEditor
Change-Id: Iaf5c1fde6e002ea31eeef88f1963090e14784a7a
2014-03-17 00:28:35 +01:00

166 lines
4.4 KiB
JavaScript

/**
* This is experimental and does not yet actually save anything back.
* Has to be manually enabled.
* Needs some code de-dup with the full-page JS/CSS page editing.
*/
/*global require, ace */
(function ( $, mw ) {
$( function () {
var $sources, setupEditor, openEditor;
$sources = $( '.mw-geshi' );
if ( $sources.length > 0 ) {
setupEditor = function ( $div ) {
var $link, $edit;
$link = $( '<a>' )
.text( mediaWiki.msg( 'editsection' ) )
.attr( 'href', '#' )
.attr( 'title', 'Edit this code section' )
.click( function ( event ) {
openEditor( $div );
event.preventDefault();
} );
$edit = $( '<span>' )
.addClass( 'mw-editsection' )
.append( '<span class="mw-editsection-bracket">[</span>' )
.append( $link )
.append( '<span class="mw-editsection-bracket">]</span>' );
$div.prepend( $edit );
};
openEditor = function ( $div ) {
var $main, geshiLang, matches, $label, $langDropDown, $xcontainer, codeEditor;
$main = $div.find( 'div' );
geshiLang = null;
matches = /(?:^| )source-([a-z0-9_-]+)/.exec( $main.attr( 'class' ) );
if ( matches ) {
geshiLang = matches[1];
}
mediaWiki.loader.using( 'ext.codeEditor.ace.modes', function () {
var map, canon, $container, $save, $cancel, $controls, setLanguage, closeEditor;
// @fixme de-duplicate
map = {
c: 'c_cpp',
cpp: 'c_cpp',
clojure: 'clojure',
csharp: 'csharp',
css: 'css',
coffeescript: 'coffee',
groovy: 'groovy',
html4strict: 'html',
html5: 'html',
java: 'java',
java5: 'java',
javascript: 'javascript',
jquery: 'javascript',
json: 'json',
ocaml: 'ocaml',
perl: 'perl',
php: 'php',
python: 'python',
ruby: 'ruby',
scala: 'scala',
xml: 'xml'
};
// Disable some annoying commands
canon = require( 'pilot/canon' );
canon.removeCommand( 'replace' ); // ctrl+R
canon.removeCommand( 'transposeletters' ); // ctrl+T
canon.removeCommand( 'gotoline' ); // ctrl+L
$container = $( '<div>' )
.attr( 'style', 'top: 32px; left: 0px; right: 0px; bottom: 0px; border: 1px solid gray; position: absolute;' )
.text( $main.text() ); // quick hack :D
$label = $( '<label>' ).text( 'Source language: ' );
$langDropDown = $( '<select>' );
$.each( map, function ( geshiLang ) {
$( '<option>' )
.text( geshiLang )
.val( geshiLang )
.appendTo( $langDropDown );
} );
$langDropDown
.val( geshiLang )
.appendTo( $label )
.change( function ( ) {
setLanguage( $( this ).val() );
} );
$save = $( '<button>' )
.text( mediaWiki.msg( 'savearticle' ) )
.click( function ( ) {
// horrible hack ;)
var src, tag;
src = codeEditor.getSession().getValue();
tag = '<source lang="' + geshiLang + '">' + src + '</source>';
$.ajax( mw.config.get( 'wgScriptPath' ) + '/api' + mw.config.get( 'wgScriptExtension' ), {
data: {
action: 'parse',
text: tag,
format: 'json'
},
type: 'POST',
success: function ( data ) {
var $html = $( data.parse.text['*'] );
$div.replaceWith( $html );
setupEditor( $html );
closeEditor();
event.preventDefault();
}
} );
} );
$cancel = $( '<button>' )
.text( 'Close' ).click( function ( event ) {
$xcontainer.remove();
$div.css( 'display', 'block' );
event.preventDefault();
} );
$controls = $( '<div>' )
.append( $label )
.append( $save )
.append( $cancel );
$xcontainer = $( '<div style="position: relative"></div>' )
.append( $controls )
.append( $container );
$xcontainer.width( $main.width() )
.height( $main.height() * 1.1 + 64 + 32 );
$div.css( 'display', 'none' );
$xcontainer.insertAfter( $div );
codeEditor = ace.edit( $container[0] );
setLanguage = function ( lang ) {
geshiLang = lang;
var aceLang = map[geshiLang],
AceLangMode = require( 'ace/mode/' + aceLang ).Mode;
codeEditor.getSession().setMode( new AceLangMode() );
};
setLanguage( geshiLang );
closeEditor = function () {
$xcontainer.remove();
$div.css( 'display', 'block' );
};
} );
};
$sources.each( function ( i, div ) {
var $div = $( div );
setupEditor( $div );
} );
}
});
})( jQuery, mediaWiki );