mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
0a7a845a42
Change-Id: I0b299c840ede1a1b8552cecfc70c5760ab036181
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki UserInterface media transfer handler class.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/* global File */
|
|
|
|
/**
|
|
* Media transfer handler.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.DataTransferHandler
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.Surface} surface
|
|
* @param {ve.ui.DataTransferItem} item
|
|
*/
|
|
ve.ui.MWMediaTransferHandler = function VeUiMWMediaTransferHandler() {
|
|
// Parent constructor
|
|
ve.ui.MWMediaTransferHandler.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWMediaTransferHandler, ve.ui.DataTransferHandler );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWMediaTransferHandler.static.name = 'media';
|
|
|
|
ve.ui.MWMediaTransferHandler.static.kinds = [ 'file' ];
|
|
|
|
// TODO: Pull available types and extensions from MW config
|
|
ve.ui.MWMediaTransferHandler.static.types = [ 'image/jpeg', 'image/png', 'image/gif', 'image/svg+xml' ];
|
|
|
|
ve.ui.MWMediaTransferHandler.static.extensions = [ 'jpg', 'jpeg', 'png', 'gif', 'svg' ];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMediaTransferHandler.prototype.process = function () {
|
|
var action,
|
|
file = this.item.getAsFile();
|
|
|
|
action = ve.ui.actionFactory.create( 'window', this.surface );
|
|
action.open( 'media', { file: file } );
|
|
|
|
this.insertableDataDeferred.reject();
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.dataTransferHandlerFactory.register( ve.ui.MWMediaTransferHandler );
|