mediawiki-extensions-Discus.../modules/CommentTargetWidget.js
David Lynch b7ad053105 @Username completion in VE (source or visual) mode
Bug: T232601
Depends-On: I075cac9aa195574c3d416a40bbdc5ec2d64424e2
Change-Id: Ie605e783b333be0f81099d8d953725c38eb4cee1
2020-05-05 09:44:08 -05:00

70 lines
1.6 KiB
JavaScript

var CommentTarget = require( './CommentTarget.js' );
/**
* DiscussionTools TargetWidget class
*
* @class
* @extends ve.ui.MWTargetWidget
*
* @constructor
* @param {Object} [config] Configuration options
*/
function CommentTargetWidget( config ) {
config = $.extend( {}, {
excludeCommands: [
'heading1',
'heading2',
'heading3',
'heading4',
'heading5',
'heading6',
'insertTable'
]
}, config );
this.authors = config.authors;
// Parent constructor
CommentTargetWidget.super.call( this, config );
// Initialization
this.$element.addClass( 'dt-ui-targetWidget' );
}
/* Inheritance */
OO.inheritClass( CommentTargetWidget, ve.ui.MWTargetWidget );
/**
* @inheritdoc
*/
CommentTargetWidget.prototype.createTarget = function () {
return new CommentTarget( {
// A lot of places expect ve.init.target to exist...
register: true,
toolbarGroups: this.toolbarGroups,
inTargetWidget: true,
modes: this.modes,
defaultMode: this.defaultMode
} );
};
/**
* @inheritdoc
*/
CommentTargetWidget.prototype.setDocument = function ( docOrHtml ) {
docOrHtml = typeof docOrHtml === 'string' ? this.target.parseDocument( docOrHtml ) : docOrHtml;
// Parent method
CommentTargetWidget.super.prototype.setDocument.call( this, docOrHtml );
// Remove MW specific classes as the widget is already inside the content area
this.getSurface().getView().$element.removeClass( 'mw-body-content' );
this.getSurface().$placeholder.removeClass( 'mw-body-content' );
// HACK
this.getSurface().authors = this.authors;
};
module.exports = CommentTargetWidget;