mediawiki-extensions-Discus.../modules/CommentTarget.js
Ed Sanders 97cf4e8440 Blacklist/convert tables and headings in VE target
Change-Id: I5e58fb1da1cb793bad5fb9640ef2dbf14c96d082
2020-02-18 15:44:40 +00:00

81 lines
1.8 KiB
JavaScript

/**
* DiscussionTools-specific target, inheriting from the stand-alone target
*
* @class
* @extends ve.init.mw.Target
*
* @param {Object} config Configuration options
*/
function CommentTarget( config ) {
config = config || {};
// Parent constructor
CommentTarget.super.call( this, ve.extendObject( {
toolbarConfig: { actions: true, $overlay: true, position: 'bottom' }
}, config ) );
}
/* Inheritance */
OO.inheritClass( CommentTarget, ve.init.mw.Target );
/* Static methods */
CommentTarget.static.name = 'discussionTools';
CommentTarget.static.modes = [ 'visual', 'source' ];
CommentTarget.static.toolbarGroups = [
{
name: 'style',
type: 'list',
icon: 'textStyle',
title: OO.ui.deferMsg( 'visualeditor-toolbar-style-tooltip' ),
include: [ { group: 'textStyle' }, 'language', 'clear' ],
forceExpand: [ 'bold', 'italic' ],
demote: [ 'strikethrough', 'code', 'underline', 'language', 'big', 'small', 'clear' ]
},
{
name: 'link',
include: [ 'link' ]
}
// Mention?
];
CommentTarget.static.importRules = ve.copy( CommentTarget.static.importRules );
CommentTarget.static.importRules.external.conversions = ve.extendObject(
{},
CommentTarget.static.importRules.external.conversions,
{
mwHeading: 'paragraph'
}
);
CommentTarget.static.importRules.external.blacklist = ve.extendObject(
{},
CommentTarget.static.importRules.external.blacklist,
{
// Annotations
// Allow pasting external links
'link/mwExternal': false,
// Strip all table structure
mwTable: true,
tableSection: true,
tableRow: true,
tableCell: true
}
);
// TODO Add edit switcher actionGroup
CommentTarget.prototype.attachToolbar = function () {
this.$element.append( this.getToolbar().$element );
};
/* Registration */
ve.init.mw.targetFactory.register( CommentTarget );
module.exports = CommentTarget;