mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 11:15:13 +00:00
5ce015011e
Change-Id: I17b9f795693cc4ca1efe3678dbde9bce5d1a3da3
136 lines
3.7 KiB
JavaScript
136 lines
3.7 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWMathInspector class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*global ve, OO */
|
|
|
|
/**
|
|
* MediaWiki math inspector.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWLiveExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWMathInspector = function VeUiMWMathInspector( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWLiveExtensionInspector.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWMathInspector, ve.ui.MWLiveExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWMathInspector.static.name = 'math';
|
|
|
|
ve.ui.MWMathInspector.static.icon = 'math';
|
|
|
|
ve.ui.MWMathInspector.static.size = 'large';
|
|
|
|
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 () {
|
|
// Parent method
|
|
ve.ui.MWMathInspector.super.prototype.initialize.call( this );
|
|
|
|
// Position
|
|
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();
|
|
|
|
var 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, 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.selectItem( this.displaySelect.getItemFromData( display ) );
|
|
this.displaySelect.on( 'choose', this.onChangeHandler );
|
|
this.idInput.on( 'change', 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.idInput.off( 'change', this.onChangeHandler );
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMathInspector.prototype.updatePreview = function () {
|
|
var mwData = ve.copy( this.selectedNode.getAttribute( 'mw' ) ),
|
|
display = this.displaySelect.getSelectedItem().getData(),
|
|
id = this.idInput.getValue();
|
|
|
|
mwData.body.extsrc = this.input.getValue();
|
|
mwData.attrs.display = display !== 'default' ? display : undefined;
|
|
mwData.attrs.id = id || undefined;
|
|
|
|
if ( this.visible ) {
|
|
this.getFragment().changeAttributes( { mw: mwData } );
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWMathInspector );
|