mediawiki-extensions-Visual.../modules/ve/ui/dialogs/ve.ui.MWMediaInsertDialog.js
Ed Sanders 8d2ba6effe Add resource attribute to newly created images
Bug: 49596
Change-Id: Ifbde0f5a4c8eb01df7b429abbb8ab0d4431c1c6f
2013-06-19 20:47:14 +00:00

92 lines
2.1 KiB
JavaScript

/*!
* VisualEditor user interface MediaInsertDialog class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/*global mw */
/**
* Document dialog.
*
* @class
* @abstract
* @extends ve.ui.Dialog
*
* @constructor
* @param {ve.ui.Surface} surface
* @param {Object} [config] Config options
*/
ve.ui.MWMediaInsertDialog = function VeUiMWMediaInsertDialog( surface, config ) {
// Parent constructor
ve.ui.Dialog.call( this, surface, config );
// Properties
this.item = null;
};
/* Inheritance */
ve.inheritClass( ve.ui.MWMediaInsertDialog, ve.ui.Dialog );
/* Static Properties */
ve.ui.MWMediaInsertDialog.static.titleMessage = 'visualeditor-dialog-media-insert-title';
ve.ui.MWMediaInsertDialog.static.icon = 'picture';
/* Methods */
ve.ui.MWMediaInsertDialog.prototype.onSelect = function ( item ) {
this.item = item;
this.applyButton.setDisabled( item === null );
};
ve.ui.MWMediaInsertDialog.prototype.onClose = function ( action ) {
var info;
// Parent method
ve.ui.Dialog.prototype.onClose.call( this );
if ( action === 'apply' ) {
info = this.item.imageinfo[0];
this.surface.getModel().getFragment().insertContent( [
{
'type': 'mwBlockImage',
'attributes': {
'align': 'right',
'href': info.descriptionurl,
'src': info.thumburl,
'width': info.thumbwidth,
'height': info.thumbheight,
'resource': './' + this.item.title
}
},
{ 'type': '/mwBlockImage' }
] );
}
};
ve.ui.MWMediaInsertDialog.prototype.initialize = function () {
// Parent method
ve.ui.Dialog.prototype.initialize.call( this );
// Properties
this.media = new ve.ui.MWMediaSelectWidget( { '$$': this.frame.$$ } );
// Events
this.media.connect( this, { 'select': 'onSelect' } );
// Initialization
this.applyButton.setDisabled( true ).setLabel(
mw.msg( 'visualeditor-dialog-media-insert-button' )
);
this.media.$.addClass( 've-ui-mwMediaInsertDialog-select' );
this.$body.append( this.media.$ );
};
/* Registration */
ve.ui.dialogFactory.register( 'mwMediaInsert', ve.ui.MWMediaInsertDialog );