2014-01-22 01:21:22 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function ( mw, $, oo ) {
|
|
|
|
/**
|
2014-02-19 17:38:55 +00:00
|
|
|
* Description element in the UI.
|
2014-01-22 01:21:22 +00:00
|
|
|
* @class mw.mmv.ui.Description
|
|
|
|
* @extends mw.mmv.ui.Element
|
|
|
|
* @constructor
|
2014-02-19 17:38:55 +00:00
|
|
|
* @inheritdoc
|
2014-01-22 01:21:22 +00:00
|
|
|
*/
|
|
|
|
function Description( $container ) {
|
|
|
|
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-01-22 01:21:22 +00:00
|
|
|
this.$imageDescDiv = $( '<div>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-image-desc-div empty' )
|
2014-01-22 01:21:22 +00:00
|
|
|
.appendTo( this.$container );
|
|
|
|
|
2014-01-30 11:18:45 +00:00
|
|
|
this.$imageDesc = $( '<p>' )
|
2014-03-31 21:33:12 +00:00
|
|
|
.addClass( 'mw-mmv-image-desc' )
|
2014-01-22 01:21:22 +00:00
|
|
|
.appendTo( this.$imageDescDiv );
|
|
|
|
}
|
|
|
|
|
|
|
|
oo.inheritClass( Description, mw.mmv.ui.Element );
|
|
|
|
|
|
|
|
/**
|
2014-02-19 17:38:55 +00:00
|
|
|
* Sets data on the element.
|
2014-10-29 14:46:30 +00:00
|
|
|
* This complements MetadataPanel.setTitle() - information shown there will not be shown here.
|
|
|
|
* @param {string|null} description The text of the description
|
|
|
|
* @param {string|null} caption The text of the caption
|
2014-01-22 01:21:22 +00:00
|
|
|
*/
|
2014-10-29 14:46:30 +00:00
|
|
|
Description.prototype.set = function ( description, caption ) {
|
|
|
|
if ( caption && description ) { // panel header shows the caption - show description here
|
2014-12-30 22:00:37 +00:00
|
|
|
this.$imageDesc.html( this.htmlUtils.htmlToTextWithTags( description ) );
|
2014-10-29 14:46:30 +00:00
|
|
|
this.$imageDescDiv.removeClass( 'empty' );
|
|
|
|
} else { // either there is no description or the paner header already shows it - nothing to do here
|
|
|
|
this.empty();
|
2014-01-22 01:21:22 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
Description.prototype.empty = function () {
|
|
|
|
this.$imageDesc.empty();
|
|
|
|
this.$imageDescDiv.addClass( 'empty' );
|
|
|
|
};
|
|
|
|
|
|
|
|
mw.mmv.ui.Description = Description;
|
|
|
|
}( mediaWiki, jQuery, OO ) );
|