mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-28 10:11:45 +00:00
2f1cf65233
* Add config option $wgDiscussionToolsUseVisualEditor (default false). * Add new modules ext.discussionTools.ReplyWidgetPlain and ...ReplyWidgetVisual, replacing ...ReplyWidget. Load only one of them depending on the config. TODO: * Also add the visual mode of VisualEditor, this only uses NWE now. There is already code to support saving from it, but no mode switcher tool Co-Authored-By: Ed Sanders <esanders@wikimedia.org> Co-Authored-By: Bartosz Dziewoński <matma.rex@gmail.com> Change-Id: I9b6db865d51baf400fb715dc7aa68ccd8cdd4905
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
var controller = require( 'ext.discussionTools.controller' ),
|
|
modifier = require( 'ext.discussionTools.modifier' );
|
|
|
|
/**
|
|
* DiscussionTools ReplyWidgetPlain class
|
|
*
|
|
* @class mw.dt.ReplyWidgetPlain
|
|
* @extends mw.dt.ReplyWidget
|
|
* @constructor
|
|
* @param {Object} comment Parsed comment object
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
function ReplyWidgetPlain( comment, config ) {
|
|
// Parent constructor
|
|
ReplyWidgetPlain.super.call( this, comment, config );
|
|
|
|
this.mode = 'source';
|
|
|
|
// Events
|
|
this.replyBodyWidget.connect( this, { change: this.onInputChangeThrottled } );
|
|
}
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ReplyWidgetPlain, require( 'ext.discussionTools.ReplyWidget' ) );
|
|
|
|
/* Methods */
|
|
|
|
ReplyWidgetPlain.prototype.createReplyBodyWidget = function ( config ) {
|
|
return new OO.ui.MultilineTextInputWidget( $.extend( {
|
|
rows: 3,
|
|
autosize: true,
|
|
// The following classes can be used here:
|
|
// * mw-editfont-monospace
|
|
// * mw-editfont-sans-serif
|
|
// * mw-editfont-serif
|
|
classes: [ 'mw-editfont-' + mw.user.options.get( 'editfont' ) ]
|
|
}, config ) );
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.focus = function () {
|
|
this.replyBodyWidget.focus();
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.clear = function () {
|
|
this.replyBodyWidget.setValue( '' );
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.isEmpty = function () {
|
|
return !this.replyBodyWidget.getValue().trim();
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.onKeyDown = function ( e ) {
|
|
// Parent method
|
|
ReplyWidgetPlain.super.prototype.onKeyDown.call( this, e );
|
|
|
|
if ( e.which === OO.ui.Keys.ENTER && ( e.ctrlKey || e.metaKey ) ) {
|
|
this.onReplyClick();
|
|
return false;
|
|
}
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.setPending = function ( pending ) {
|
|
// Parent method
|
|
ReplyWidgetPlain.super.prototype.setPending.call( this, pending );
|
|
|
|
if ( pending ) {
|
|
this.replyBodyWidget.pushPending();
|
|
this.replyBodyWidget.setDisabled( true );
|
|
} else {
|
|
this.replyBodyWidget.popPending();
|
|
this.replyBodyWidget.setDisabled( false );
|
|
}
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.insertNewNodes = function ( parentNode ) {
|
|
var wikitext = controller.autoSignWikitext( this.getValue() );
|
|
wikitext.split( '\n' ).forEach( function ( line ) {
|
|
var lineItem = modifier.addListItem( parentNode );
|
|
lineItem.appendChild( modifier.createWikitextNode( line ) );
|
|
} );
|
|
};
|
|
|
|
ReplyWidgetPlain.prototype.getValue = function () {
|
|
return this.replyBodyWidget.getValue();
|
|
};
|
|
|
|
module.exports = ReplyWidgetPlain;
|