mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
35690bb2f1
Delete lightboxHooks, since most of them haven't proven to be useful. Replace the useful ones by jQuery events. Change-Id: I28f99ba85666ca15979feb5c637924b98bba27a8 Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/176
65 lines
2.1 KiB
JavaScript
65 lines
2.1 KiB
JavaScript
/*
|
|
* 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, $ ) {
|
|
var L;
|
|
|
|
/**
|
|
* @class mw.mmv.Logger
|
|
* Writes log entries
|
|
*/
|
|
function Logger() {}
|
|
|
|
L = Logger.prototype;
|
|
|
|
L.logActions = {
|
|
'thumbnail-link-click': 'User clicked on thumbnail to open lightbox.',
|
|
'enlarge-link-click': 'User clicked on enlarge link to open lightbox.',
|
|
'fullscreen-link-click': 'User clicked on fullscreen button in lightbox.',
|
|
'defullscreen-link-click': 'User clicked on button to return to normal lightbox view.',
|
|
'close-link-click': 'User clicked on the lightbox close button.',
|
|
'site-link-click': 'User clicked on the link to the file description page.'
|
|
};
|
|
|
|
/**
|
|
* Logs an action
|
|
* @param {string} action The key representing the action
|
|
* @param {boolean} skipEventLog True if we don't want the action to be recorded in the event log
|
|
* @param {Object} substitutions A list of variable subtitutions for parametrized action texts
|
|
*/
|
|
L.log = function ( action, skipEventLog, substitutions ) {
|
|
var translatedAction = this.logActions[action] || action;
|
|
|
|
if ( $.isPlainObject( substitutions ) ) {
|
|
$.each( substitutions, function( key, value ) {
|
|
translatedAction = translatedAction.replace( key, value );
|
|
} );
|
|
}
|
|
|
|
mw.log( translatedAction );
|
|
|
|
if ( mw.eventLog && !skipEventLog ) {
|
|
mw.eventLog.logEvent( 'MediaViewer', {
|
|
version: '1.1',
|
|
action: action
|
|
} );
|
|
}
|
|
};
|
|
|
|
mw.mmv.logger = new Logger();
|
|
}( mediaWiki, jQuery ) );
|