mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
fbdff76263
New changes: 56de6f5 Localisation updates from https://translatewiki.net. f8bda64 Widgetise demo menu 6ac48d8 Localisation updates from https://translatewiki.net. 365e131 builderloader: Omit value for boolean "disabled" attribute per HTML5 706e4b3 Prevent double counting of DM nodes in getNodeAndOffset b141a7d Update OOjs UI to v0.1.0-pre (d2451ac748) c5b3921 Localisation updates from https://translatewiki.net. 1606983 Update reference to ConfirmationDialog to use MessageDialog Deletions: * Styles for ve.ui.MWBetaWelcomeDialog - not needed anymore because OO.ui.MessageDialog provides them * Styles for ve.ui.MWGalleryInspector - not needed anymore because ve.ui.MWExtensionInspector provides part of them and the rest are being replaced by programatic sizing Modifications: * ve.ui.MWLinkTargetInputWidget - Added support for validation and href getter * Split message between tool and dialog title for ve.ui.MWEditModeTool and ve.ui.MWWikitextSwitchConfirmDialog General changes: * Updated inheritance. * Added manager param to constructors of dialogs and inspectors. * Updated use of show/hide with toggle. * Added meaningful descriptions of dialog and inspector classes. * Configured dialog and inspector sizes statically. * Configured dialog action buttons statically. * Interfaced with OO.ui.ActionSet to control action buttons. * Moved applyChanges code into getActionProcess methods. * Always using .next in setup/ready process getters and .first in hold/teardown process getters. Change-Id: Ia74732e6e32c0808eee021f0a26225b9e6c3f971
117 lines
3.1 KiB
JavaScript
117 lines
3.1 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWAlienExtensionInspector class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Inspector for editing alienated MediaWiki extensions.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {OO.ui.WindowManager} manager Manager of window
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWAlienExtensionInspector = function VeUiMWAlienExtensionInspector( manager, config ) {
|
|
// Parent constructor
|
|
ve.ui.MWExtensionInspector.call( this, manager, config );
|
|
|
|
// Properties
|
|
this.attributeInputs = {};
|
|
this.$attributes = null;
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWAlienExtensionInspector, ve.ui.MWExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.name = 'alienExtension';
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.icon = 'alienextension';
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mwalienextensioninspector-title' );
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.nodeModel = ve.dm.MWAlienExtensionNode;
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWAlienExtensionInspector.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWExtensionInspector.prototype.initialize.apply( this, arguments );
|
|
|
|
this.$attributes = this.$( '<div>' ).addClass( 've-ui-mwAlienExtensionInspector-attributes' );
|
|
this.form.$element.append( this.$attributes );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWAlienExtensionInspector.prototype.getSetupProcess = function ( data ) {
|
|
return ve.ui.MWAlienExtensionInspector.super.prototype.getSetupProcess.call( this, data )
|
|
.next( function () {
|
|
var key, attributeInput, field,
|
|
attributes = this.getFragment().getSelectedNode().getAttribute( 'mw' ).attrs;
|
|
|
|
if ( attributes && !ve.isEmptyObject( attributes ) ) {
|
|
for ( key in attributes ) {
|
|
attributeInput = new OO.ui.TextInputWidget( {
|
|
'$': this.$,
|
|
'value': attributes[key]
|
|
} );
|
|
this.attributeInputs[key] = attributeInput;
|
|
field = new OO.ui.FieldLayout(
|
|
attributeInput,
|
|
{
|
|
'$': this.$,
|
|
'align': 'left',
|
|
'label': key
|
|
}
|
|
);
|
|
this.$attributes.append( field.$element );
|
|
}
|
|
}
|
|
|
|
this.title.setLabel( this.getFragment().getSelectedNode().getExtensionName() );
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWAlienExtensionInspector.prototype.getTeardownProcess = function ( data ) {
|
|
return ve.ui.MWAlienExtensionInspector.super.prototype.getTeardownProcess.call( this, data )
|
|
.first( function () {
|
|
this.$attributes.empty();
|
|
this.attributeInputs = {};
|
|
}, this );
|
|
};
|
|
|
|
/** */
|
|
ve.ui.MWAlienExtensionInspector.prototype.updateMwData = function ( mwData ) {
|
|
// Parent method
|
|
ve.ui.MWAlienExtensionInspector.super.prototype.updateMwData.call( this, mwData );
|
|
|
|
var key;
|
|
|
|
if ( !ve.isEmptyObject( this.attributeInputs ) ) {
|
|
// Make sure we have an attrs object to populate
|
|
mwData.attrs = mwData.attrs || {};
|
|
for ( key in this.attributeInputs ) {
|
|
mwData.attrs[key] = this.attributeInputs[key].getValue();
|
|
}
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWAlienExtensionInspector );
|