mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
5f31ddeb8f
Mobile doesn't really have room for the full dialog. Change-Id: I08f45c3b26bd88f75deb4dbd51435a109021f0fe
76 lines
2 KiB
JavaScript
76 lines
2 KiB
JavaScript
/*!
|
|
* VisualEditor MWMathContextItem class.
|
|
*
|
|
* @copyright 2015 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Context item for a math node.
|
|
*
|
|
* @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.MWMathContextItem = function VeUiMWMathContextItem() {
|
|
// Parent constructor
|
|
ve.ui.MWMathContextItem.super.apply( this, arguments );
|
|
|
|
this.quickEditButton = new OO.ui.ButtonWidget( {
|
|
label: ve.msg( 'math-visualeditor-mwmathcontextitem-quickedit' ),
|
|
flags: [ 'progressive' ]
|
|
} );
|
|
|
|
// Don't show quick edit button in mobile as the primary action will be quick edit
|
|
if ( !this.context.isMobile() ) {
|
|
this.actionButtons.addItems( [ this.quickEditButton ], 0 );
|
|
}
|
|
|
|
this.quickEditButton.connect( this, { click: 'onInlineEditButtonClick' } );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 've-ui-mwMathContextItem' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWMathContextItem, ve.ui.LinearContextItem );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWMathContextItem.static.name = 'math';
|
|
|
|
ve.ui.MWMathContextItem.static.icon = 'math';
|
|
|
|
ve.ui.MWMathContextItem.static.label = OO.ui.deferMsg( 'math-visualeditor-mwmathinspector-title' );
|
|
|
|
ve.ui.MWMathContextItem.static.modelClasses = [ ve.dm.MWMathNode ];
|
|
|
|
ve.ui.MWMathContextItem.static.embeddable = false;
|
|
|
|
ve.ui.MWMathContextItem.static.commandName = 'mathDialog';
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle inline edit button click events.
|
|
*/
|
|
ve.ui.MWMathContextItem.prototype.onInlineEditButtonClick = function () {
|
|
this.context.getSurface().executeCommand( 'mathInspector' );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathContextItem.prototype.getCommand = function () {
|
|
return this.context.getSurface().commandRegistry.lookup(
|
|
this.context.isMobile() ? 'mathInspector' : this.constructor.static.commandName
|
|
);
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.contextItemFactory.register( ve.ui.MWMathContextItem );
|