2014-03-17 08:07:53 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-19 20:26:45 +00:00
|
|
|
const Dialog = require( './mmv.ui.dialog.js' );
|
|
|
|
|
2018-11-12 16:33:24 +00:00
|
|
|
( function () {
|
2014-03-17 08:07:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the file reuse dialog and the link to open it.
|
|
|
|
*/
|
2023-05-20 12:38:59 +00:00
|
|
|
class ReuseDialog extends Dialog {
|
2014-06-25 02:15:56 +00:00
|
|
|
/**
|
2023-05-20 12:38:59 +00:00
|
|
|
* @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 {Config} config
|
2014-06-25 02:15:56 +00:00
|
|
|
*/
|
2023-05-20 12:38:59 +00:00
|
|
|
constructor( $container, $openButton, config ) {
|
|
|
|
super( $container, $openButton, config );
|
2014-09-16 20:33:05 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
this.loadDependencies.push( 'mmv.ui.reuse.shareembed' );
|
2014-09-16 20:33:05 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
this.$dialog.addClass( 'mw-mmv-reuse-dialog' );
|
2014-03-17 08:07:53 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
this.eventPrefix = 'use-this-file';
|
|
|
|
}
|
2024-02-13 00:44:51 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
/**
|
|
|
|
* Registers listeners.
|
|
|
|
*/
|
|
|
|
attach() {
|
|
|
|
this.handleEvent( 'mmv-reuse-open', this.handleOpenCloseClick.bind( this ) );
|
2014-04-11 14:05:58 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
this.handleEvent( 'mmv-download-open', this.closeDialog.bind( this ) );
|
|
|
|
this.handleEvent( 'mmv-options-open', this.closeDialog.bind( this ) );
|
2014-03-17 08:07:53 +00:00
|
|
|
}
|
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
/**
|
2024-05-04 14:00:17 +00:00
|
|
|
* Sets data needed by contained panes and makes dialog launch link visible.
|
2023-05-20 12:38:59 +00:00
|
|
|
*
|
|
|
|
* @param {Image} image
|
|
|
|
* @param {Repo} repo
|
|
|
|
* @param {string} caption
|
|
|
|
* @param {string} alt
|
|
|
|
*/
|
|
|
|
set( image, repo, caption, alt ) {
|
2024-05-04 14:00:17 +00:00
|
|
|
if ( this.share && this.embed ) {
|
|
|
|
this.share.set( image );
|
|
|
|
this.embed.set( image, repo, caption, alt );
|
|
|
|
this.embed.set( image, repo, caption );
|
2023-05-20 12:38:59 +00:00
|
|
|
this.showImageWarnings( image );
|
|
|
|
} else {
|
2024-05-04 14:00:17 +00:00
|
|
|
this.setValues = [ image, repo, caption, alt ];
|
2023-05-20 12:38:59 +00:00
|
|
|
}
|
2014-03-17 08:07:53 +00:00
|
|
|
}
|
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
/**
|
|
|
|
* Fired when the dialog is opened.
|
2023-06-27 20:10:10 +00:00
|
|
|
*
|
2023-05-20 13:02:55 +00:00
|
|
|
* @event ReuseDialog#mmv-reuse-opened
|
2023-05-20 12:38:59 +00:00
|
|
|
*/
|
2023-05-20 13:02:55 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
/**
|
|
|
|
* Opens a dialog with information about file reuse.
|
|
|
|
*/
|
|
|
|
openDialog() {
|
2024-05-04 14:00:17 +00:00
|
|
|
const { Embed, Share } = require( 'mmv.ui.reuse.shareembed' );
|
|
|
|
if ( !this.share ) {
|
|
|
|
this.share = new Share( this.$dialog );
|
|
|
|
this.share.attach();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !this.embed ) {
|
|
|
|
this.embed = new Embed( this.$dialog );
|
|
|
|
this.embed.attach();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( this.setValues ) {
|
|
|
|
this.set( ...this.setValues );
|
|
|
|
this.setValues = undefined;
|
|
|
|
}
|
2014-09-05 12:52:53 +00:00
|
|
|
|
2024-05-04 14:00:17 +00:00
|
|
|
super.openDialog();
|
2014-12-07 08:09:04 +00:00
|
|
|
|
2024-05-04 14:00:17 +00:00
|
|
|
this.$warning.insertAfter( this.$container );
|
2014-09-12 18:05:13 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
$( document ).trigger( 'mmv-reuse-opened' );
|
|
|
|
}
|
2014-03-17 08:07:53 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
/**
|
|
|
|
* Fired when the dialog is closed.
|
2023-06-27 20:10:10 +00:00
|
|
|
*
|
2023-05-20 13:02:55 +00:00
|
|
|
* @event ReuseDialog#mmv-reuse-closed
|
2023-05-20 12:38:59 +00:00
|
|
|
*/
|
2023-05-20 13:02:55 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
/**
|
|
|
|
* Closes the reuse dialog.
|
|
|
|
*/
|
|
|
|
closeDialog() {
|
|
|
|
super.closeDialog();
|
2014-09-05 12:52:53 +00:00
|
|
|
|
2023-05-20 12:38:59 +00:00
|
|
|
$( document ).trigger( 'mmv-reuse-closed' );
|
|
|
|
}
|
|
|
|
}
|
2014-04-02 01:58:41 +00:00
|
|
|
|
2023-05-19 20:26:45 +00:00
|
|
|
module.exports = ReuseDialog;
|
2018-11-12 16:33:24 +00:00
|
|
|
}() );
|