2014-02-14 00:36:10 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MediaWiki extension MediaViewer.
|
|
|
|
*
|
|
|
|
* MediaViewer 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.
|
|
|
|
*
|
|
|
|
* MediaViewer 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 MediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function( mw, $, oo ) {
|
|
|
|
var P;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A box to display additional terms or remarks from the image author.
|
|
|
|
* (Typically comes from the Permission field of the {{Information}} template.)
|
|
|
|
* It has two states: when closed, it just shows some text, when open, it shows the HTML
|
|
|
|
* block supplied by the author in its full beauty.
|
|
|
|
* @class mw.mmv.ui.Permission
|
|
|
|
* @extends mw.mmv.ui.Element
|
|
|
|
* @constructor
|
|
|
|
* @param {jQuery} $container
|
2014-11-13 17:48:14 +00:00
|
|
|
* @param {mw.mmv.ui.MetadataPanelScroller} scroller
|
2014-02-14 00:36:10 +00:00
|
|
|
*/
|
2014-11-13 17:48:14 +00:00
|
|
|
function Permission( $container, scroller ) {
|
2014-02-14 00:36:10 +00:00
|
|
|
var permission = this;
|
|
|
|
|
|
|
|
mw.mmv.ui.Element.call( this, $container );
|
|
|
|
|
2014-03-26 23:59:04 +00:00
|
|
|
/** @property {mw.mmv.HtmlUtils} htmlUtils - */
|
|
|
|
this.htmlUtils = new mw.mmv.HtmlUtils();
|
|
|
|
|
2014-02-14 00:36:10 +00:00
|
|
|
/**
|
|
|
|
* Contains everything else.
|
|
|
|
* @property {jQuery}
|
|
|
|
*/
|
|
|
|
this.$box = $( '<div>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-permission-box mw-mmv-info-box empty')
|
2014-02-14 00:36:10 +00:00
|
|
|
.appendTo( this.$container );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Box title
|
|
|
|
* @property {jQuery}
|
|
|
|
*/
|
|
|
|
this.$title = $( '<h3>' )
|
|
|
|
.text( mw.message( 'multimediaviewer-permission-title' ).text() )
|
|
|
|
.appendTo( this.$box );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plain-text version of the author's message
|
|
|
|
* This is just the text parsed out from the original markup, it might not make much sense
|
|
|
|
* (e.g. if the original is a HTML table)
|
|
|
|
* @property {jQuery}
|
|
|
|
*/
|
|
|
|
this.$text = $( '<div>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-permission-text' )
|
2014-02-26 02:47:24 +00:00
|
|
|
.appendTo( this.$box )
|
2014-03-31 21:33:12 +00:00
|
|
|
.on( 'click', '.mw-mmv-permission-text-viewmore', function( e ) {
|
2014-02-26 02:47:24 +00:00
|
|
|
e.preventDefault();
|
|
|
|
permission.grow();
|
2014-11-13 17:48:14 +00:00
|
|
|
permission.scroller.toggle( 'up' );
|
2014-02-26 02:47:24 +00:00
|
|
|
} )
|
|
|
|
;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper element to fade off text
|
|
|
|
* @property {jQuery}
|
|
|
|
*/
|
|
|
|
this.$fader = $( '<div>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-permission-text-fader' )
|
2014-02-26 02:47:24 +00:00
|
|
|
.append(
|
|
|
|
$( '<a>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-permission-text-viewmore' )
|
2014-02-26 02:47:24 +00:00
|
|
|
.prop( 'href', '#' )
|
|
|
|
.text( mw.message( 'multimediaviewer-permission-viewmore' ).text() )
|
|
|
|
);
|
2014-02-14 00:36:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Original (HTML) version of the author's message
|
|
|
|
* This can be scary sometimes (huge tables, black text on dark purple background etc).
|
|
|
|
* @property {jQuery}
|
|
|
|
*/
|
|
|
|
this.$html = $( '<div>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-permission-html' )
|
2014-02-14 00:36:10 +00:00
|
|
|
.appendTo( this.$box );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* "Close" button (does not actually close the box, just makes it smaller).
|
|
|
|
* @property {jQuery}
|
|
|
|
*/
|
|
|
|
this.$close = $( '<div>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-permission-close' )
|
2014-02-14 00:36:10 +00:00
|
|
|
.on( 'click', function() {
|
|
|
|
permission.shrink();
|
|
|
|
} )
|
|
|
|
.appendTo( this.$box );
|
2014-11-13 17:48:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Panel scroller from the metadata panel object.
|
|
|
|
* @property {mw.mmv.ui.MetadataPanelScroller}
|
|
|
|
*/
|
|
|
|
this.scroller = scroller;
|
2014-02-14 00:36:10 +00:00
|
|
|
}
|
|
|
|
oo.inheritClass( Permission, mw.mmv.ui.Element );
|
|
|
|
P = Permission.prototype;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear everything
|
|
|
|
*/
|
|
|
|
P.empty = function() {
|
|
|
|
this.$box.addClass( 'empty' );
|
|
|
|
this.$text.empty();
|
|
|
|
this.$html.empty();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set permission text/html
|
|
|
|
* @param {string} permission the text or HTML code written by the image author
|
|
|
|
*/
|
|
|
|
P.set = function( permission ) {
|
|
|
|
this.$box.removeClass( 'empty' );
|
2014-02-26 02:47:24 +00:00
|
|
|
|
2014-03-26 23:59:04 +00:00
|
|
|
this.$text.html( this.htmlUtils.htmlToTextWithLinks( permission ) );
|
2014-02-26 02:47:24 +00:00
|
|
|
this.$text.append( this.$fader );
|
|
|
|
|
2014-02-14 00:36:10 +00:00
|
|
|
this.$html.html( permission );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enlarge the box, show HTML instead of text.
|
|
|
|
*/
|
|
|
|
P.grow = function() {
|
2014-05-19 09:24:54 +00:00
|
|
|
mw.mmv.actionLogger.log( 'terms-open' );
|
2014-04-15 16:14:06 +00:00
|
|
|
|
2014-02-14 00:36:10 +00:00
|
|
|
this.$box.addClass( 'full-size' )
|
|
|
|
.stop( true )
|
|
|
|
.animate( { backgroundColor: '#FFFFA0' }, 500)
|
|
|
|
.animate( { backgroundColor: '#FFFFFF' }, 500);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Limit the size of the box, show text only.
|
|
|
|
*/
|
|
|
|
P.shrink = function() {
|
|
|
|
this.$box.removeClass( 'full-size' );
|
|
|
|
};
|
|
|
|
|
|
|
|
mw.mmv.ui.Permission = Permission;
|
|
|
|
}( mediaWiki, jQuery, OO ) );
|