mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
ae99be730e
Change-Id: I57a8f188eb1152438a8e94235a6f6801e2617c28
272 lines
7.1 KiB
JavaScript
272 lines
7.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 EP,
|
|
cachedRTL;
|
|
|
|
/**
|
|
* Represents a UI element.
|
|
* @class mw.mmv.ui.Element
|
|
* @abstract
|
|
* @constructor
|
|
* @param {jQuery} $container
|
|
*/
|
|
function Element( $container ) {
|
|
/** @property {jQuery} $container The element that contains the UI element. */
|
|
this.$container = $container;
|
|
|
|
/** @property {Object.<string, string[]>} eventsRegistered Events that this element has registered with the DOM. */
|
|
this.eventsRegistered = {};
|
|
|
|
/**
|
|
* @property {Object.<string, jQuery>} $inlineStyles a list of `<style>` elements in the head
|
|
* which we use to manipulate pseudo-classes and pseudo-elements.
|
|
*/
|
|
this.$inlineStyles = [];
|
|
|
|
/**
|
|
* @private
|
|
* Stores named timeouts. See setTimer().
|
|
* @property {Object.<string, {timeout: Object, handler: function(), delay: number}>}
|
|
*/
|
|
this.timers = {};
|
|
}
|
|
EP = Element.prototype;
|
|
|
|
/**
|
|
* Checks whether the document is RTL. Assumes it doesn't change.
|
|
* @returns {boolean}
|
|
*/
|
|
EP.isRTL = function () {
|
|
if ( cachedRTL === undefined ) {
|
|
cachedRTL = $( document.body ).hasClass( 'rtl' );
|
|
}
|
|
|
|
return cachedRTL;
|
|
};
|
|
|
|
/**
|
|
* @abstract
|
|
* Sets the data for the element.
|
|
*/
|
|
EP.set = function () {};
|
|
|
|
/**
|
|
* @abstract
|
|
* Empties the element.
|
|
*/
|
|
EP.empty = function () {};
|
|
|
|
/**
|
|
* @abstract
|
|
* Registers listeners.
|
|
*/
|
|
EP.attach = function () {};
|
|
|
|
/**
|
|
* @abstract
|
|
* Clears listeners.
|
|
*/
|
|
EP.unattach = function () {
|
|
this.clearEvents();
|
|
};
|
|
|
|
/**
|
|
* Add event handler in a way that will be auto-cleared on lightbox close
|
|
* @param {string} name Name of event, like 'keydown'
|
|
* @param {Function} handler Callback for the event
|
|
*
|
|
* TODO: Unit tests
|
|
*/
|
|
EP.handleEvent = function ( name, handler ) {
|
|
if ( this.eventsRegistered[name] === undefined ) {
|
|
this.eventsRegistered[name] = [];
|
|
}
|
|
this.eventsRegistered[name].push( handler );
|
|
$( document ).on( name, handler );
|
|
};
|
|
|
|
/**
|
|
* Remove all events that have been registered on this element.
|
|
*
|
|
* TODO: Unit tests
|
|
*/
|
|
EP.clearEvents = function () {
|
|
var i, handlers, thisevent,
|
|
events = Object.keys( this.eventsRegistered );
|
|
|
|
for ( i = 0; i < events.length; i++ ) {
|
|
thisevent = events[i];
|
|
handlers = this.eventsRegistered[thisevent];
|
|
while ( handlers.length > 0 ) {
|
|
$( document ).off( thisevent, handlers.pop() );
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Manipulate CSS directly. This is needed to set styles for pseudo-classes and pseudo-elements.
|
|
* @param {string} key some name to identify the style
|
|
* @param {string|null} style a CSS snippet (set to null to delete the given style)
|
|
*/
|
|
EP.setInlineStyle = function ( key, style ) {
|
|
|
|
if ( !this.$inlineStyles ) {
|
|
this.$inlineStyles = [];
|
|
}
|
|
|
|
if ( !this.$inlineStyles[key] ) {
|
|
if ( !style ) {
|
|
return;
|
|
}
|
|
|
|
this.$inlineStyles[key] = $( '<style type="text/css" />' ).appendTo( 'head' );
|
|
}
|
|
|
|
this.$inlineStyles[key].html( style || '' );
|
|
};
|
|
|
|
/**
|
|
* Sets a timer. This is a shortcut to using the native setTimout and then storing
|
|
* the reference, with some small differences for convenience:
|
|
* - setting the same timer again clears the old one
|
|
* - callbacks have the element as their context
|
|
* Timers are local to the element.
|
|
* See also clearTimer() and resetTimer().
|
|
* @param {string} name
|
|
* @param {function()} callback
|
|
* @param {number} delay delay in milliseconds
|
|
*/
|
|
EP.setTimer = function ( name, callback, delay ) {
|
|
var element = this;
|
|
|
|
this.clearTimer( name );
|
|
this.timers[name] = {
|
|
timeout: null,
|
|
handler: callback,
|
|
delay: delay
|
|
};
|
|
this.timers[name].timeout = setTimeout( function () {
|
|
delete element.timers[name];
|
|
callback.call( element );
|
|
}, delay );
|
|
};
|
|
|
|
/**
|
|
* Clears a timer. See setTimer().
|
|
* @param {string} name
|
|
*/
|
|
EP.clearTimer = function ( name ) {
|
|
if ( name in this.timers ) {
|
|
clearTimeout( this.timers[name].timeout );
|
|
delete this.timers[name];
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Resets a timer, so that its delay will be relative to when resetTimer() was called, not when
|
|
* the timer was created. Optionally changes the delay as well.
|
|
* Resetting a timer that does not exist or has already fired has no effect.
|
|
* See setTimer().
|
|
* @param {string} name
|
|
* @param {number} [delay] delay in milliseconds
|
|
*/
|
|
EP.resetTimer = function ( name, delay ) {
|
|
if ( name in this.timers ) {
|
|
if ( delay === undefined ) {
|
|
delay = this.timers[name].delay;
|
|
}
|
|
this.setTimer( name, this.timers[name].handler, delay );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Tracks a click on a link and lets the user navigate to it
|
|
* @param {string} action The action label to log.
|
|
* @param {jQuery.Event} e Click event object
|
|
*/
|
|
EP.trackLinkClick = function ( action, e ) {
|
|
var $link = $( this );
|
|
|
|
if ( e.altKey || e.shiftKey || e.ctrlKey || e.metaKey || e.button === 1 ) {
|
|
// They are likely opening the link in a new window or tab
|
|
mw.mmv.actionLogger.log( action );
|
|
return;
|
|
}
|
|
|
|
// If it's a plain click, we need to wait for the logging to
|
|
// be done before navigating to the desired page
|
|
e.preventDefault();
|
|
|
|
// We want to redirect anyway, whether logging worked or not
|
|
mw.mmv.actionLogger.log( action ).always( function () {
|
|
window.location.href = $link.prop( 'href' );
|
|
} );
|
|
};
|
|
|
|
/**
|
|
* Makes the entire input/textarea selected when focused.
|
|
* Invoked with that input/textarea as context.
|
|
*/
|
|
EP.selectAllOnEvent = function () {
|
|
try {
|
|
this.select();
|
|
} catch ( e ) {
|
|
// IE doesn't like when select() is called during the onfocus handler
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Reduces the action of clicks to solely focusing the input/textarea.
|
|
* Essentialy disables clicking inside the text to select a portion of it.
|
|
* Invoked with that input/textarea as context.
|
|
*/
|
|
EP.onlyFocus = function ( e ) {
|
|
this.focus();
|
|
e.preventDefault();
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Flips E (east) and W (west) directions in RTL documents.
|
|
* @param {string} keyword a keyword where the first 'e' or 'w' character means a direction (such as a
|
|
* tipsy gravity parameter)
|
|
* @return {string}
|
|
*/
|
|
EP.correctEW = function ( keyword ) {
|
|
if ( this.isRTL() ) {
|
|
keyword = keyword.replace( /[ew]/i, function ( dir ) {
|
|
if ( dir === 'e' ) {
|
|
return 'w';
|
|
} else if ( dir === 'E' ) {
|
|
return 'W';
|
|
} else if ( dir === 'w' ) {
|
|
return 'e';
|
|
} else if ( dir === 'W' ) {
|
|
return 'E';
|
|
}
|
|
} );
|
|
}
|
|
return keyword;
|
|
};
|
|
|
|
mw.mmv.ui = {};
|
|
mw.mmv.ui.reuse = {};
|
|
mw.mmv.ui.Element = Element;
|
|
}( mediaWiki, jQuery ) );
|