mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
1ce95efb54
Change-Id: I32af1c13c31dc0f94434daa4a4db8c94a7033582
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
/*!
|
|
* VisualEditor MWLatexContextItem class.
|
|
*
|
|
* @copyright 2015 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Abstract context item for a node of a formula provided
|
|
* by the Math extension.
|
|
*
|
|
* @abstract
|
|
* @class
|
|
* @extends ve.ui.LinearContextItem
|
|
*
|
|
* @param {ve.ui.Context} context Context item is in
|
|
* @param {ve.dm.Model} model Model item is related to
|
|
* @param {Object} config Configuration options
|
|
*/
|
|
ve.ui.MWLatexContextItem = function VeUiMWLatexContextItem() {
|
|
// Parent constructor
|
|
ve.ui.MWLatexContextItem.super.apply( this, arguments );
|
|
|
|
this.quickEditButton = new OO.ui.ButtonWidget( {
|
|
label: ve.msg( 'math-visualeditor-mwlatexcontextitem-quickedit' ),
|
|
flags: [ 'progressive' ]
|
|
} );
|
|
|
|
// Don't show quick edit button in mobile as the primary action will be quick edit
|
|
if ( !this.context.isMobile() && !this.isReadOnly() ) {
|
|
this.actionButtons.addItems( [ this.quickEditButton ], 0 );
|
|
}
|
|
|
|
this.quickEditButton.connect( this, { click: 'onInlineEditButtonClick' } );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 've-ui-mwLatexContextItem' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWLatexContextItem, ve.ui.LinearContextItem );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWLatexContextItem.static.embeddable = false;
|
|
|
|
ve.ui.MWLatexContextItem.static.inlineEditCommand = null;
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle inline edit button click events.
|
|
*/
|
|
ve.ui.MWLatexContextItem.prototype.onInlineEditButtonClick = function () {
|
|
this.context.getSurface().executeCommand( this.constructor.static.inlineEditCommand );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWLatexContextItem.prototype.getCommand = function () {
|
|
return this.context.getSurface().commandRegistry.lookup(
|
|
this.context.isMobile() ? this.constructor.static.inlineEditCommand : this.constructor.static.commandName
|
|
);
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWLatexContextItem.prototype.getDescription = function () {
|
|
return ve.ce.nodeFactory.getDescription( this.model );
|
|
};
|