1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
* This file is part of the MediaWiki extension MultimediaViewer.
*
* MultimediaViewer is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* MultimediaViewer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
*/
( function () {
// Shortcut for prototype later
var DP;
/**
* Represents the file download dialog and the link to open it.
*
* @class mw.mmv.ui.download.Dialog
* @extends mw.mmv.ui.Dialog
* @param {jQuery} $container the element to which the dialog will be appended
* @param {jQuery} $openButton the button which opens the dialog. Only used for positioning.
* @param {mw.mmv.Config} config
*/
function Dialog( $container, $openButton, config ) {
mw.mmv.ui.Dialog.call( this, $container, $openButton, config );
this.loadDependencies.push( 'mmv.ui.download.pane' );
this.$dialog.addClass( 'mw-mmv-download-dialog' );
this.eventPrefix = 'download';
}
OO.inheritClass( Dialog, mw.mmv.ui.Dialog );
DP = Dialog.prototype;
/**
* Registers listeners.
*/
DP.attach = function () {
var dialog = this;
this.handleEvent( 'mmv-download-open', this.handleOpenCloseClick.bind( this ) );
this.handleEvent( 'mmv-reuse-open', this.closeDialog.bind( this ) );
this.handleEvent( 'mmv-options-open', this.closeDialog.bind( this ) );
this.$container.on( 'mmv-download-cta-open', function () {
dialog.$warning.hide();
} );
this.$container.on( 'mmv-download-cta-close', function () {
if ( dialog.$dialog.hasClass( 'mw-mmv-warning-visible' ) ) {
dialog.$warning.show();
}
} );
};
/**
* Clears listeners.
*/
DP.unattach = function () {
mw.mmv.ui.Dialog.prototype.unattach.call( this );
this.$container.off( 'mmv-download-cta-open mmv-download-cta-close' );
};
/**
* Sets data needed by contained tabs and makes dialog launch link visible.
*
* @param {mw.mmv.model.Image} image
* @param {mw.mmv.model.Repo} repo
*/
DP.set = function ( image, repo ) {
if ( this.download ) {
this.download.set( image, repo );
this.showImageWarnings( image );
} else {
this.setValues = {
image: image,
repo: repo
};
}
};
/**
* @event mmv-download-opened
* Fired when the dialog is opened.
*/
/**
* Opens a dialog with information about file download.
*/
DP.openDialog = function () {
if ( !this.download ) {
this.download = new mw.mmv.ui.download.Pane( this.$dialog );
this.download.attach();
}
if ( this.setValues ) {
this.download.set( this.setValues.image, this.setValues.repo );
this.showImageWarnings( this.setValues.image );
this.setValues = undefined;
}
mw.mmv.ui.Dialog.prototype.openDialog.call( this );
$( document ).trigger( 'mmv-download-opened' );
};
/**
* @event mmv-download-closed
* Fired when the dialog is closed.
*/
/**
* Closes the download dialog.
*/
DP.closeDialog = function () {
mw.mmv.ui.Dialog.prototype.closeDialog.call( this );
$( document ).trigger( 'mmv-download-closed' );
};
mw.mmv.ui.download.Dialog = Dialog;
}() );
|