mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
122f49b2dd
Change-Id: I3c20809e71cc0da58123e1b5f29c4f3aac945496
93 lines
2.4 KiB
JavaScript
93 lines
2.4 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWTableDialog class.
|
|
*
|
|
* @copyright 2011-2017 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Dialog for table properties.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.TableDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWTableDialog = function VeUiMWTableDialog( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWTableDialog.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWTableDialog, ve.ui.TableDialog );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWTableDialog.static.actions = [
|
|
{
|
|
action: 'done',
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-done' ),
|
|
flags: [ 'primary', 'progressive' ]
|
|
}
|
|
];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTableDialog.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWTableDialog.super.prototype.initialize.call( this );
|
|
|
|
this.wikitableToggle = new OO.ui.ToggleSwitchWidget();
|
|
this.wikitableField = new OO.ui.FieldLayout( this.wikitableToggle, {
|
|
align: 'left',
|
|
label: ve.msg( 'visualeditor-dialog-table-wikitable' )
|
|
} );
|
|
|
|
this.sortableToggle = new OO.ui.ToggleSwitchWidget();
|
|
this.sortableField = new OO.ui.FieldLayout( this.sortableToggle, {
|
|
align: 'left',
|
|
label: ve.msg( 'visualeditor-dialog-table-sortable' )
|
|
} );
|
|
|
|
this.panel.$element.prepend( this.wikitableField.$element, this.sortableField.$element );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTableDialog.prototype.getSetupProcess = function ( data ) {
|
|
return ve.ui.MWTableDialog.super.prototype.getSetupProcess.call( this, data )
|
|
.next( function () {
|
|
var tableNode = this.getFragment().getSelection().getTableNode();
|
|
|
|
this.wikitableToggle.setValue( !!tableNode.getAttribute( 'wikitable' ) );
|
|
this.sortableToggle.setValue( !!tableNode.getAttribute( 'sortable' ) );
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTableDialog.prototype.getActionProcess = function ( action ) {
|
|
return ve.ui.MWTableDialog.super.prototype.getActionProcess.call( this, action )
|
|
.next( function () {
|
|
var surfaceModel, fragment;
|
|
if ( action === 'done' ) {
|
|
surfaceModel = this.getFragment().getSurface();
|
|
fragment = surfaceModel.getLinearFragment( this.getFragment().getSelection().tableRange, true );
|
|
fragment.changeAttributes( {
|
|
wikitable: this.wikitableToggle.getValue(),
|
|
sortable: this.sortableToggle.getValue()
|
|
} );
|
|
}
|
|
}, this );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWTableDialog );
|