2013-04-29 21:01:56 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor user interface MWMetaDialog class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
* Dialog for editing MediaWiki page meta information.
|
|
|
|
*
|
2013-04-29 21:01:56 +00:00
|
|
|
* @class
|
2013-07-03 01:30:10 +00:00
|
|
|
* @extends ve.ui.MWDialog
|
2013-04-29 21:01:56 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2013-11-05 00:29:50 +00:00
|
|
|
* @param {ve.ui.WindowSet} windowSet Window set this dialog is part of
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-04-29 21:01:56 +00:00
|
|
|
*/
|
2013-10-09 19:59:03 +00:00
|
|
|
ve.ui.MWMetaDialog = function VeUiMWMetaDialog( windowSet, config ) {
|
2013-04-29 21:01:56 +00:00
|
|
|
// Parent constructor
|
2013-10-09 19:59:03 +00:00
|
|
|
ve.ui.MWDialog.call( this, windowSet, config );
|
2013-04-29 21:01:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-11 21:44:09 +00:00
|
|
|
OO.inheritClass( ve.ui.MWMetaDialog, ve.ui.MWDialog );
|
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';
|
|
|
|
|
2013-04-29 21:01:56 +00:00
|
|
|
ve.ui.MWMetaDialog.static.titleMessage = 'visualeditor-dialog-meta-title';
|
|
|
|
|
2013-12-19 16:38:02 +00:00
|
|
|
ve.ui.MWMetaDialog.static.icon = 'window';
|
2013-04-29 21:01:56 +00:00
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
ve.ui.MWDialog.prototype.initialize.call( this );
|
|
|
|
|
|
|
|
// Properties
|
2013-12-02 20:10:55 +00:00
|
|
|
this.bookletLayout = new OO.ui.BookletLayout( { '$': this.$, 'outlined': true } );
|
2013-11-05 00:29:50 +00:00
|
|
|
this.applyButton = new OO.ui.PushButtonWidget( {
|
|
|
|
'$': this.$,
|
|
|
|
'label': ve.msg( 'visualeditor-dialog-action-apply' ),
|
|
|
|
'flags': ['primary']
|
|
|
|
} );
|
2013-12-19 16:38:02 +00:00
|
|
|
this.settingsPage = new ve.ui.MWSettingsPage( this.surface, 'settings', { '$': this.$ } );
|
2013-12-02 20:10:55 +00:00
|
|
|
this.categoriesPage = new ve.ui.MWCategoriesPage( this.surface, 'categories', {
|
|
|
|
'$': this.$, '$overlay': this.$overlay
|
|
|
|
} );
|
|
|
|
this.languagesPage = new ve.ui.MWLanguagesPage( 'languages', { '$': this.$ } );
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Events
|
|
|
|
this.applyButton.connect( this, { 'click': [ 'close', { 'action': 'apply' } ] } );
|
|
|
|
|
|
|
|
// Initialization
|
2013-12-02 20:10:55 +00:00
|
|
|
this.$body.append( this.bookletLayout.$element );
|
2013-11-05 00:29:50 +00:00
|
|
|
this.$foot.append( this.applyButton.$element );
|
2013-12-19 16:38:02 +00:00
|
|
|
this.bookletLayout.addPages( [
|
|
|
|
this.settingsPage,
|
|
|
|
this.categoriesPage,
|
|
|
|
this.languagesPage
|
|
|
|
] );
|
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.setup = function ( data ) {
|
|
|
|
// Parent method
|
|
|
|
ve.ui.MWDialog.prototype.setup.call( this, data );
|
|
|
|
|
|
|
|
// Data initialization
|
|
|
|
data = data || {};
|
|
|
|
|
2013-12-02 20:10:55 +00:00
|
|
|
var surfaceModel = this.surface.getModel();
|
2013-11-05 00:29:50 +00:00
|
|
|
|
2013-12-02 20:10:55 +00:00
|
|
|
if ( data.page && this.bookletLayout.getPage( data.page ) ) {
|
|
|
|
this.bookletLayout.setPage( data.page );
|
2013-04-29 21:01:56 +00:00
|
|
|
}
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Force all previous transactions to be separate from this history state
|
|
|
|
surfaceModel.breakpoint();
|
|
|
|
surfaceModel.stopHistoryTracking();
|
|
|
|
|
2013-12-19 16:38:02 +00:00
|
|
|
// Let each page set itself up ('languages' page doesn't need this yet)
|
|
|
|
this.settingsPage.setup( data );
|
2013-12-02 20:10:55 +00:00
|
|
|
this.categoriesPage.setup( data );
|
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.teardown = function ( data ) {
|
2013-12-02 20:10:55 +00:00
|
|
|
var surfaceModel = this.surface.getModel(),
|
2013-12-19 16:38:02 +00:00
|
|
|
// Place transactions made while dialog was open in a common history state
|
2013-12-02 20:10:55 +00:00
|
|
|
hasTransactions = surfaceModel.breakpoint();
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Undo everything done in the dialog and prevent redoing those changes
|
|
|
|
if ( data.action === 'cancel' && hasTransactions ) {
|
|
|
|
surfaceModel.undo();
|
|
|
|
surfaceModel.truncateUndoStack();
|
2013-04-29 21:01:56 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 16:38:02 +00:00
|
|
|
// Let each page tear itself down ('languages' page doesn't need this yet)
|
|
|
|
this.settingsPage.teardown( data );
|
2013-12-02 20:10:55 +00:00
|
|
|
this.categoriesPage.teardown( data );
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Return to normal tracking behavior
|
2013-12-02 20:10:55 +00:00
|
|
|
this.surface.getModel().startHistoryTracking();
|
2013-11-05 00:29:50 +00:00
|
|
|
|
|
|
|
// Parent method
|
|
|
|
ve.ui.MWDialog.prototype.teardown.call( this, data );
|
2013-04-29 21:01:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
2013-08-27 23:28:29 +00:00
|
|
|
ve.ui.dialogFactory.register( ve.ui.MWMetaDialog );
|