2013-08-03 14:17:16 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWExtensionInspector class.
|
|
|
|
*
|
2014-01-05 12:05:05 +00:00
|
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
2013-08-03 14:17:16 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MediaWiki extension inspector.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @abstract
|
2013-11-05 00:29:50 +00:00
|
|
|
* @extends ve.ui.Inspector
|
2013-08-03 14:17:16 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-08-03 14:17:16 +00:00
|
|
|
*/
|
2014-04-04 17:42:13 +00:00
|
|
|
ve.ui.MWExtensionInspector = function VeUiMWExtensionInspector( config ) {
|
2013-08-03 14:17:16 +00:00
|
|
|
// Parent constructor
|
2014-04-04 17:42:13 +00:00
|
|
|
ve.ui.Inspector.call( this, config );
|
2013-08-03 14:17:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-11-05 00:29:50 +00:00
|
|
|
OO.inheritClass( ve.ui.MWExtensionInspector, ve.ui.Inspector );
|
2013-08-03 14:17:16 +00:00
|
|
|
|
|
|
|
/* Static properties */
|
|
|
|
|
2014-02-03 20:04:36 +00:00
|
|
|
ve.ui.MWExtensionInspector.static.placeholder = null;
|
|
|
|
|
2013-08-03 14:17:16 +00:00
|
|
|
ve.ui.MWExtensionInspector.static.nodeModel = null;
|
|
|
|
|
2013-12-06 20:24:36 +00:00
|
|
|
ve.ui.MWExtensionInspector.static.removable = false;
|
2013-08-14 14:39:56 +00:00
|
|
|
|
2014-02-04 12:17:43 +00:00
|
|
|
/**
|
|
|
|
* Extension is allowed to have empty contents
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @property {boolean}
|
|
|
|
* @inheritable
|
|
|
|
*/
|
|
|
|
ve.ui.MWExtensionInspector.static.allowedEmpty = false;
|
|
|
|
|
2014-04-17 01:22:36 +00:00
|
|
|
/**
|
2014-04-17 21:08:25 +00:00
|
|
|
* Inspector's directionality, 'ltr' or 'rtl'
|
|
|
|
*
|
|
|
|
* Leave as null to use the directionality of the current fragment.
|
2014-04-17 01:22:36 +00:00
|
|
|
*
|
|
|
|
* @static
|
2014-04-17 21:08:25 +00:00
|
|
|
* @property {string|null}
|
2014-04-17 01:22:36 +00:00
|
|
|
* @inheritable
|
|
|
|
*/
|
2014-04-17 21:08:25 +00:00
|
|
|
ve.ui.MWExtensionInspector.static.dir = null;
|
2014-04-17 01:22:36 +00:00
|
|
|
|
2013-08-03 14:17:16 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle frame ready events.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ui.MWExtensionInspector.prototype.initialize = function () {
|
|
|
|
// Parent method
|
2013-11-05 00:29:50 +00:00
|
|
|
ve.ui.Inspector.prototype.initialize.call( this );
|
2013-08-03 14:17:16 +00:00
|
|
|
|
2013-10-09 20:09:59 +00:00
|
|
|
this.input = new OO.ui.TextInputWidget( {
|
2013-11-01 19:45:59 +00:00
|
|
|
'$': this.$,
|
2013-08-03 14:17:16 +00:00
|
|
|
'multiline': true
|
|
|
|
} );
|
2013-11-01 19:45:59 +00:00
|
|
|
this.input.$element.addClass( 've-ui-mwExtensionInspector-input' );
|
2013-08-03 14:17:16 +00:00
|
|
|
|
|
|
|
// Initialization
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$form.append( this.input.$element );
|
2013-08-03 14:17:16 +00:00
|
|
|
};
|
|
|
|
|
2014-02-04 12:28:46 +00:00
|
|
|
/**
|
|
|
|
* Get the placeholder text for the content input area.
|
|
|
|
*
|
|
|
|
* @returns {string} Placeholder text
|
|
|
|
*/
|
|
|
|
ve.ui.MWExtensionInspector.prototype.getInputPlaceholder = function () {
|
|
|
|
return '';
|
|
|
|
};
|
|
|
|
|
2013-08-03 14:17:16 +00:00
|
|
|
/**
|
2013-11-05 00:29:50 +00:00
|
|
|
* @inheritdoc
|
2013-08-03 14:17:16 +00:00
|
|
|
*/
|
2013-11-05 00:29:50 +00:00
|
|
|
ve.ui.MWExtensionInspector.prototype.setup = function ( data ) {
|
2013-08-03 14:17:16 +00:00
|
|
|
// Parent method
|
2013-11-05 00:29:50 +00:00
|
|
|
ve.ui.Inspector.prototype.setup.call( this, data );
|
2013-08-03 14:17:16 +00:00
|
|
|
|
2013-11-05 00:29:50 +00:00
|
|
|
// Initialization
|
2014-04-04 17:42:13 +00:00
|
|
|
this.node = this.getFragment().getSelectedNode();
|
2014-01-28 03:21:36 +00:00
|
|
|
// Make sure we're inspecting the right type of node
|
2014-04-04 17:42:13 +00:00
|
|
|
if ( !( this.node instanceof this.constructor.static.nodeModel ) ) {
|
2014-01-28 03:21:36 +00:00
|
|
|
this.node = null;
|
|
|
|
}
|
2014-04-04 17:42:13 +00:00
|
|
|
this.input.setValue( this.node ? this.node.getAttribute( 'mw' ).body.extsrc : '' );
|
2013-08-03 14:17:16 +00:00
|
|
|
|
2014-02-04 12:28:46 +00:00
|
|
|
this.input.$input.attr( 'placeholder', this.getInputPlaceholder() );
|
2014-02-03 20:04:36 +00:00
|
|
|
|
2014-04-17 21:08:25 +00:00
|
|
|
var dir = this.constructor.static.dir || data.dir;
|
|
|
|
this.input.setRTL( dir === 'rtl' );
|
2013-11-05 00:29:50 +00:00
|
|
|
};
|
2013-11-08 14:57:50 +00:00
|
|
|
|
2013-11-05 00:29:50 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWExtensionInspector.prototype.ready = function () {
|
|
|
|
// Parent method
|
|
|
|
ve.ui.Inspector.prototype.ready.call( this );
|
|
|
|
|
|
|
|
// Focus the input
|
|
|
|
this.input.$input.focus().select();
|
2013-08-03 14:17:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2013-11-05 00:29:50 +00:00
|
|
|
* @inheritdoc
|
2013-08-03 14:17:16 +00:00
|
|
|
*/
|
2013-11-05 00:29:50 +00:00
|
|
|
ve.ui.MWExtensionInspector.prototype.teardown = function ( data ) {
|
2013-09-24 23:55:41 +00:00
|
|
|
var mwData,
|
2014-04-04 17:42:13 +00:00
|
|
|
surfaceModel = this.getFragment().getSurface();
|
2013-08-03 14:17:16 +00:00
|
|
|
|
2014-02-04 12:17:43 +00:00
|
|
|
if ( this.constructor.static.allowedEmpty || this.input.getValue() !== '' ) {
|
2014-04-04 17:42:13 +00:00
|
|
|
if ( this.node instanceof this.constructor.static.nodeModel ) {
|
|
|
|
mwData = ve.copy( this.node.getAttribute( 'mw' ) );
|
2013-12-06 14:52:26 +00:00
|
|
|
this.updateMwData( mwData );
|
2014-02-04 12:17:43 +00:00
|
|
|
surfaceModel.change(
|
|
|
|
ve.dm.Transaction.newFromAttributeChanges(
|
|
|
|
surfaceModel.getDocument(), this.node.getOuterRange().start, { 'mw': mwData }
|
|
|
|
)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
mwData = {
|
|
|
|
'name': this.constructor.static.nodeModel.static.extensionName,
|
|
|
|
'attrs': {},
|
2013-12-06 14:52:26 +00:00
|
|
|
'body': {}
|
2014-02-04 12:17:43 +00:00
|
|
|
};
|
2013-12-06 14:52:26 +00:00
|
|
|
this.updateMwData( mwData );
|
2014-02-04 12:17:43 +00:00
|
|
|
surfaceModel.getFragment().collapseRangeToEnd().insertContent( [
|
|
|
|
{
|
|
|
|
'type': this.constructor.static.nodeModel.static.name,
|
|
|
|
'attributes': {
|
|
|
|
'mw': mwData
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ 'type': '/' + this.constructor.static.nodeModel.static.name }
|
|
|
|
] );
|
|
|
|
}
|
2013-08-03 14:17:16 +00:00
|
|
|
}
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Parent method
|
|
|
|
ve.ui.Inspector.prototype.teardown.call( this, data );
|
2013-08-03 14:17:16 +00:00
|
|
|
};
|
2013-12-06 14:52:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update mwData object with the new values from the inspector
|
|
|
|
*
|
|
|
|
* @param {Object} mwData MediaWiki data object
|
|
|
|
*/
|
|
|
|
ve.ui.MWExtensionInspector.prototype.updateMwData = function ( mwData ) {
|
|
|
|
mwData.body.extsrc = this.input.getValue();
|
|
|
|
};
|