2013-04-29 21:01:56 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor user interface MWMetaDialog class.
|
|
|
|
*
|
2016-01-03 22:56:59 +00:00
|
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
2013-04-29 21:01:56 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-07-14 21:32:49 +00:00
|
|
|
* Dialog for editing MediaWiki page information.
|
Single-click insertion
Objectives:
* Reduce the number of clicks and mouse maneuvers required to insert
media, references or template parameters
* Make use of highlighting with mouse movement or arrow key presses,
similar to menus, to suggest action when clicked
* Improve the way media search results look and feel
Changes:
ve.ui.SelectWidget.js
* Add mouseleave handler to un-highlight when the mouse exits the widget
* Document highlight events (already being emitted)
ve.ui.SearchWidget.js
* Propagate both select and highlight events from results widget
* Make arrow keys change highlight instead of selection
* Get rid of enter event, make enter key select highlighted item instead
* Provide direct access to results widget through getResults method
ve.ui.MenuWidget.js
* Use the selected item as a starting point if nothing is currently
highlighted when adjusting the highlight position
ve.ui.Dialog.js
* Add footless option to hide the foot element and make the body extend
all the way down to the bottom
* Remove applyButton, which only some dialogs need, and should be creating
themselves, along with other buttons as needed
ve.ui.Widget.css
* Change highlight and selected colors of option widgets to match other
selection colors used elsewhere
* Leave selected and highlighted widget looking selected
ve.ui.Frame.css
* Add background color to combat any color that might have been applied to
the frame body in the imported CSS from the parent frame
ve.ui.Dialog.css
* Add rules for footless mode
ve.ui.MWReferenceResultWidget.js,
ve.ui.MWParameterResultWidget.js,
ve.ui.MWMediaResultWidget.js
* Allow highlighting
ve.ui.MWParamterSearchWidget.js
* Switch from selecting the first item when filtering to highlighting
ve-mw/ve.ui.Widget.js
* Adjust media result widget styling to better match other elements
ve.ui.MWTransclusionDialog.js,
ve.ui.MWReferenceListDialog.js,
ve.ui.MWReferenceEditDialog.js,
ve.ui.MWMetaDialog.js
ve.ui.MWMediaEditDialog.js
* Add apply button, as per it being removed from parent class
ve.ui.MWTransclusionDialog.js,
ve.ui.MWReferenceInsertDialog.js,
ve.ui.MWMediaInsertDialog.js
* Insert parameter/reference/media on select, instead of clicking an
insert button
* Use 'insert' instead of 'apply' as argument for close method
Bug: 50774
Bug: 51143
Change-Id: Ia18e79f1f8df2540f465468edb01f5ce989bf843
2013-07-15 21:07:53 +00:00
|
|
|
*
|
2013-04-29 21:01:56 +00:00
|
|
|
* @class
|
2014-12-09 22:09:35 +00:00
|
|
|
* @extends ve.ui.FragmentDialog
|
2013-04-29 21:01:56 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-04-29 21:01:56 +00:00
|
|
|
*/
|
2014-08-21 00:50:54 +00:00
|
|
|
ve.ui.MWMetaDialog = function VeUiMWMetaDialog( config ) {
|
2013-04-29 21:01:56 +00:00
|
|
|
// Parent constructor
|
2014-08-21 00:50:54 +00:00
|
|
|
ve.ui.MWMetaDialog.super.call( this, config );
|
2013-04-29 21:01:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2014-07-14 21:32:49 +00:00
|
|
|
OO.inheritClass( ve.ui.MWMetaDialog, ve.ui.FragmentDialog );
|
2013-07-03 01:30:10 +00:00
|
|
|
|
2013-04-29 21:01:56 +00:00
|
|
|
/* Static Properties */
|
|
|
|
|
2013-08-27 23:28:29 +00:00
|
|
|
ve.ui.MWMetaDialog.static.name = 'meta';
|
|
|
|
|
2014-02-12 21:45:37 +00:00
|
|
|
ve.ui.MWMetaDialog.static.title =
|
|
|
|
OO.ui.deferMsg( 'visualeditor-dialog-meta-title' );
|
2013-04-29 21:01:56 +00:00
|
|
|
|
2013-12-19 16:38:02 +00:00
|
|
|
ve.ui.MWMetaDialog.static.icon = 'window';
|
2013-04-29 21:01:56 +00:00
|
|
|
|
2014-07-14 21:32:49 +00:00
|
|
|
ve.ui.MWMetaDialog.static.size = 'large';
|
|
|
|
|
|
|
|
ve.ui.MWMetaDialog.static.actions = [
|
|
|
|
{
|
2014-08-22 20:50:48 +00:00
|
|
|
action: 'apply',
|
|
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-apply' ),
|
2014-12-11 22:49:51 +00:00
|
|
|
flags: [ 'progressive', 'primary' ]
|
2014-07-14 21:32:49 +00:00
|
|
|
},
|
|
|
|
{
|
2014-08-22 20:50:48 +00:00
|
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-cancel' ),
|
2015-08-06 13:34:32 +00:00
|
|
|
flags: [ 'safe', 'back' ]
|
2014-07-14 21:32:49 +00:00
|
|
|
}
|
|
|
|
];
|
2014-04-24 00:22:45 +00:00
|
|
|
|
2013-04-29 21:01:56 +00:00
|
|
|
/* Methods */
|
|
|
|
|
2014-07-14 21:32:49 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWMetaDialog.prototype.getBodyHeight = function () {
|
|
|
|
return 400;
|
|
|
|
};
|
|
|
|
|
2013-04-29 21:01:56 +00:00
|
|
|
/**
|
2013-11-05 00:29:50 +00:00
|
|
|
* @inheritdoc
|
2013-04-29 21:01:56 +00:00
|
|
|
*/
|
2013-11-05 00:29:50 +00:00
|
|
|
ve.ui.MWMetaDialog.prototype.initialize = function () {
|
|
|
|
// Parent method
|
2014-04-24 00:22:45 +00:00
|
|
|
ve.ui.MWMetaDialog.super.prototype.initialize.call( this );
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Properties
|
2015-04-09 23:47:15 +00:00
|
|
|
this.panels = new OO.ui.StackLayout();
|
|
|
|
this.bookletLayout = new OO.ui.BookletLayout( { outlined: true } );
|
2013-11-15 20:36:53 +00:00
|
|
|
this.settingsPage = new ve.ui.MWSettingsPage(
|
|
|
|
'settings',
|
2015-04-09 23:47:15 +00:00
|
|
|
{ $overlay: this.$overlay }
|
2013-11-15 20:36:53 +00:00
|
|
|
);
|
2015-04-09 23:47:15 +00:00
|
|
|
this.advancedSettingsPage = new ve.ui.MWAdvancedSettingsPage( 'advancedSettings' );
|
|
|
|
this.categoriesPage = new ve.ui.MWCategoriesPage( 'categories', { $overlay: this.$overlay } );
|
|
|
|
this.languagesPage = new ve.ui.MWLanguagesPage( 'languages' );
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Initialization
|
2014-07-14 21:32:49 +00:00
|
|
|
this.$body.append( this.panels.$element );
|
2014-04-24 00:22:45 +00:00
|
|
|
this.panels.addItems( [ this.bookletLayout ] );
|
2013-12-19 16:38:02 +00:00
|
|
|
this.bookletLayout.addPages( [
|
|
|
|
this.settingsPage,
|
2013-11-15 20:36:53 +00:00
|
|
|
this.advancedSettingsPage,
|
2013-12-19 16:38:02 +00:00
|
|
|
this.categoriesPage,
|
|
|
|
this.languagesPage
|
|
|
|
] );
|
2013-04-29 21:01:56 +00:00
|
|
|
};
|
|
|
|
|
2014-07-14 21:32:49 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWMetaDialog.prototype.getActionProcess = function ( action ) {
|
|
|
|
var surfaceModel = this.getFragment().getSurface();
|
|
|
|
|
|
|
|
if ( action === 'apply' ) {
|
|
|
|
return new OO.ui.Process( function () {
|
2014-08-01 14:42:03 +00:00
|
|
|
surfaceModel.applyStaging();
|
2014-08-22 20:50:48 +00:00
|
|
|
this.close( { action: action } );
|
2014-07-14 21:32:49 +00:00
|
|
|
}, this );
|
|
|
|
}
|
|
|
|
|
|
|
|
return ve.ui.MWMetaDialog.super.prototype.getActionProcess.call( this, action )
|
|
|
|
.next( function () {
|
2014-08-01 14:42:03 +00:00
|
|
|
surfaceModel.popStaging();
|
2014-07-14 21:32:49 +00:00
|
|
|
}, this );
|
|
|
|
};
|
|
|
|
|
2013-04-29 21:01:56 +00:00
|
|
|
/**
|
2013-11-05 00:29:50 +00:00
|
|
|
* @inheritdoc
|
2013-04-29 21:01:56 +00:00
|
|
|
*/
|
2014-05-31 04:47:08 +00:00
|
|
|
ve.ui.MWMetaDialog.prototype.getSetupProcess = function ( data ) {
|
2014-07-15 22:49:51 +00:00
|
|
|
data = data || {};
|
2014-05-31 04:47:08 +00:00
|
|
|
return ve.ui.MWMetaDialog.super.prototype.getSetupProcess.call( this, data )
|
|
|
|
.next( function () {
|
|
|
|
var surfaceModel = this.getFragment().getSurface();
|
|
|
|
|
|
|
|
if ( data.page && this.bookletLayout.getPage( data.page ) ) {
|
|
|
|
this.bookletLayout.setPage( data.page );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force all previous transactions to be separate from this history state
|
2014-08-01 14:42:03 +00:00
|
|
|
surfaceModel.pushStaging();
|
2014-05-31 04:47:08 +00:00
|
|
|
|
|
|
|
// Let each page set itself up ('languages' page doesn't need this yet)
|
|
|
|
this.settingsPage.setup( surfaceModel.metaList, data );
|
|
|
|
this.advancedSettingsPage.setup( surfaceModel.metaList, data );
|
|
|
|
this.categoriesPage.setup( surfaceModel.metaList, data );
|
|
|
|
}, this );
|
2013-04-29 21:01:56 +00:00
|
|
|
};
|
|
|
|
|
2014-08-01 14:42:03 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWMetaDialog.prototype.getTeardownProcess = function ( data ) {
|
|
|
|
data = data || {};
|
|
|
|
return ve.ui.MWMetaDialog.super.prototype.getTeardownProcess.call( this, data )
|
|
|
|
.first( function () {
|
|
|
|
// Let each page tear itself down ('languages' page doesn't need this yet)
|
2014-08-22 20:50:48 +00:00
|
|
|
this.settingsPage.teardown( { action: data.action } );
|
|
|
|
this.advancedSettingsPage.teardown( { action: data.action } );
|
|
|
|
this.categoriesPage.teardown( { action: data.action } );
|
2014-08-01 14:42:03 +00:00
|
|
|
}, this );
|
|
|
|
};
|
|
|
|
|
2013-04-29 21:01:56 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2014-04-21 22:31:21 +00:00
|
|
|
ve.ui.windowFactory.register( ve.ui.MWMetaDialog );
|