mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 11:48:23 +00:00
f66ef920fb
Change-Id: I95f59d9bef6bb8fec69b454dc8efe4b4c7e40805
140 lines
3.6 KiB
JavaScript
140 lines
3.6 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWMathInspector class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki math inspector.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWLiveExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWMathInspector = function VeUiMWMathInspector( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWMathInspector.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWMathInspector, ve.ui.MWLiveExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWMathInspector.static.name = 'mathInspector';
|
|
|
|
ve.ui.MWMathInspector.static.title = OO.ui.deferMsg( 'math-visualeditor-mwmathinspector-title' );
|
|
|
|
ve.ui.MWMathInspector.static.modelClasses = [ ve.dm.MWMathNode ];
|
|
|
|
ve.ui.MWMathInspector.static.dir = 'ltr';
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathInspector.prototype.initialize = function () {
|
|
var inputField, displayField, idField;
|
|
|
|
// Parent method
|
|
ve.ui.MWMathInspector.super.prototype.initialize.call( this );
|
|
|
|
this.displaySelect = new OO.ui.ButtonSelectWidget( {
|
|
items: [
|
|
new OO.ui.ButtonOptionWidget( {
|
|
data: 'default',
|
|
icon: 'math-display-default',
|
|
label: ve.msg( 'math-visualeditor-mwmathinspector-display-default' )
|
|
} ),
|
|
new OO.ui.ButtonOptionWidget( {
|
|
data: 'inline',
|
|
icon: 'math-display-inline',
|
|
label: ve.msg( 'math-visualeditor-mwmathinspector-display-inline' )
|
|
} ),
|
|
new OO.ui.ButtonOptionWidget( {
|
|
data: 'block',
|
|
icon: 'math-display-block',
|
|
label: ve.msg( 'math-visualeditor-mwmathinspector-display-block' )
|
|
} )
|
|
]
|
|
} );
|
|
|
|
this.idInput = new OO.ui.TextInputWidget();
|
|
|
|
inputField = new OO.ui.FieldLayout( this.input, {
|
|
align: 'top',
|
|
label: ve.msg( 'math-visualeditor-mwmathinspector-title' )
|
|
} );
|
|
displayField = new OO.ui.FieldLayout( this.displaySelect, {
|
|
align: 'top',
|
|
label: ve.msg( 'math-visualeditor-mwmathinspector-display' )
|
|
} );
|
|
idField = new OO.ui.FieldLayout( this.idInput, {
|
|
align: 'top',
|
|
label: ve.msg( 'math-visualeditor-mwmathinspector-id' )
|
|
} );
|
|
|
|
// Initialization
|
|
this.$content.addClass( 've-ui-mwMathInspector-content' );
|
|
this.form.$element.append(
|
|
inputField.$element,
|
|
this.generatedContentsError.$element,
|
|
displayField.$element,
|
|
idField.$element
|
|
);
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathInspector.prototype.getSetupProcess = function ( data ) {
|
|
return ve.ui.MWMathInspector.super.prototype.getSetupProcess.call( this, data )
|
|
.next( function () {
|
|
var display = this.selectedNode.getAttribute( 'mw' ).attrs.display || 'default';
|
|
this.displaySelect.selectItemByData( display );
|
|
this.displaySelect.on( 'choose', this.onChangeHandler );
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathInspector.prototype.getTeardownProcess = function ( data ) {
|
|
return ve.ui.MWMathInspector.super.prototype.getTeardownProcess.call( this, data )
|
|
.first( function () {
|
|
this.displaySelect.off( 'choose', this.onChangeHandler );
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathInspector.prototype.updateMwData = function ( mwData ) {
|
|
var display, id;
|
|
|
|
// Parent method
|
|
ve.ui.MWMathInspector.super.prototype.updateMwData.call( this, mwData );
|
|
|
|
display = this.displaySelect.getSelectedItem().getData();
|
|
id = this.idInput.getValue();
|
|
|
|
mwData.attrs.display = display !== 'default' ? display : undefined;
|
|
mwData.attrs.id = id || undefined;
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathInspector.prototype.formatGeneratedContentsError = function ( $element ) {
|
|
return $element.text().trim();
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWMathInspector );
|