mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-30 19:04:19 +00:00
Merge "Rename Buttons to CanvasButtons"
This commit is contained in:
commit
53a641b63a
|
@ -81,8 +81,8 @@ call_user_func( function() {
|
||||||
'dependencies' => array(
|
'dependencies' => array(
|
||||||
'mmv.base',
|
'mmv.base',
|
||||||
'mmv.ui',
|
'mmv.ui',
|
||||||
'mmv.ui.buttons',
|
|
||||||
'mmv.ui.canvas',
|
'mmv.ui.canvas',
|
||||||
|
'mmv.ui.canvasButtons',
|
||||||
'mmv.ui.categories',
|
'mmv.ui.categories',
|
||||||
'mmv.ui.description',
|
'mmv.ui.description',
|
||||||
'mmv.ui.fileUsage',
|
'mmv.ui.fileUsage',
|
||||||
|
@ -533,13 +533,13 @@ call_user_func( function() {
|
||||||
),
|
),
|
||||||
), $moduleInfo( 'mmv/ui' ) );
|
), $moduleInfo( 'mmv/ui' ) );
|
||||||
|
|
||||||
$wgResourceModules['mmv.ui.buttons'] = array_merge( array(
|
$wgResourceModules['mmv.ui.canvasButtons'] = array_merge( array(
|
||||||
'scripts' => array(
|
'scripts' => array(
|
||||||
'mmv.ui.buttons.js',
|
'mmv.ui.canvasButtons.js',
|
||||||
),
|
),
|
||||||
|
|
||||||
'styles' => array(
|
'styles' => array(
|
||||||
'mmv.ui.buttons.less',
|
'mmv.ui.canvasButtons.less',
|
||||||
),
|
),
|
||||||
|
|
||||||
'dependencies' => array(
|
'dependencies' => array(
|
||||||
|
|
|
@ -200,8 +200,8 @@ class MultimediaViewerHooks {
|
||||||
'tests/qunit/mmv/provider/mmv.provider.UserInfo.test.js',
|
'tests/qunit/mmv/provider/mmv.provider.UserInfo.test.js',
|
||||||
'tests/qunit/mmv/provider/mmv.provider.Image.test.js',
|
'tests/qunit/mmv/provider/mmv.provider.Image.test.js',
|
||||||
'tests/qunit/mmv/ui/mmv.ui.test.js',
|
'tests/qunit/mmv/ui/mmv.ui.test.js',
|
||||||
'tests/qunit/mmv/ui/mmv.ui.buttons.test.js',
|
|
||||||
'tests/qunit/mmv/ui/mmv.ui.canvas.test.js',
|
'tests/qunit/mmv/ui/mmv.ui.canvas.test.js',
|
||||||
|
'tests/qunit/mmv/ui/mmv.ui.canvasButtons.test.js',
|
||||||
'tests/qunit/mmv/ui/mmv.ui.categories.test.js',
|
'tests/qunit/mmv/ui/mmv.ui.categories.test.js',
|
||||||
'tests/qunit/mmv/ui/mmv.ui.description.test.js',
|
'tests/qunit/mmv/ui/mmv.ui.description.test.js',
|
||||||
'tests/qunit/mmv/ui/mmv.ui.fileUsage.test.js',
|
'tests/qunit/mmv/ui/mmv.ui.fileUsage.test.js',
|
||||||
|
|
|
@ -92,7 +92,7 @@
|
||||||
);
|
);
|
||||||
|
|
||||||
this.panel = new mw.mmv.ui.MetadataPanel( this.$postDiv, this.$controlBar );
|
this.panel = new mw.mmv.ui.MetadataPanel( this.$postDiv, this.$controlBar );
|
||||||
this.buttons = new mw.mmv.ui.Buttons( this.$imageWrapper, this.$closeButton, this.$fullscreenButton );
|
this.buttons = new mw.mmv.ui.CanvasButtons( this.$imageWrapper, this.$closeButton, this.$fullscreenButton );
|
||||||
this.canvas = new mw.mmv.ui.Canvas( this.$innerWrapper, this.$imageWrapper, this.$wrapper );
|
this.canvas = new mw.mmv.ui.Canvas( this.$innerWrapper, this.$imageWrapper, this.$wrapper );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -16,16 +16,19 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
( function ( mw, $, oo ) {
|
( function ( mw, $, oo ) {
|
||||||
|
var CBP;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the buttons in the interface - next, previous, close, and fullscreen.
|
* Represents the buttons which are displayed over the image - next, previous, close
|
||||||
* @class mw.mmv.ui.Buttons
|
* and fullscreen.
|
||||||
|
* @class mw.mmv.ui.CanvasButtons
|
||||||
* @extends mw.mmv.ui.Element
|
* @extends mw.mmv.ui.Element
|
||||||
* @constructor
|
* @constructor
|
||||||
* @param {jQuery} $container The parent element we should put the buttons into.
|
* @param {jQuery} $container The parent element we should put the buttons into.
|
||||||
* @param {jQuery} $closeButton The close button element from the parent class.
|
* @param {jQuery} $closeButton The close button element from the parent class.
|
||||||
* @param {jQuery} $fullscreenButton The fullscreen button from the parent class.
|
* @param {jQuery} $fullscreenButton The fullscreen button from the parent class.
|
||||||
*/
|
*/
|
||||||
function Buttons( $container, $closeButton, $fullscreenButton ) {
|
function CanvasButtons( $container, $closeButton, $fullscreenButton ) {
|
||||||
var buttons = this;
|
var buttons = this;
|
||||||
|
|
||||||
mw.mmv.ui.Element.call( this, $container );
|
mw.mmv.ui.Element.call( this, $container );
|
||||||
|
@ -79,14 +82,14 @@
|
||||||
$container.trigger( $.Event( 'mmv-prev' ) );
|
$container.trigger( $.Event( 'mmv-prev' ) );
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
oo.inheritClass( CanvasButtons, mw.mmv.ui.Element );
|
||||||
oo.inheritClass( Buttons, mw.mmv.ui.Element );
|
CBP = CanvasButtons.prototype;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the top offset for the navigation buttons.
|
* Sets the top offset for the navigation buttons.
|
||||||
* @param {number} offset
|
* @param {number} offset
|
||||||
*/
|
*/
|
||||||
Buttons.prototype.setOffset = function ( offset ) {
|
CBP.setOffset = function ( offset ) {
|
||||||
this.$nav.css( {
|
this.$nav.css( {
|
||||||
top: offset
|
top: offset
|
||||||
} );
|
} );
|
||||||
|
@ -95,7 +98,7 @@
|
||||||
/**
|
/**
|
||||||
* Stops the fading animation of the buttons and cancel any opacity value
|
* Stops the fading animation of the buttons and cancel any opacity value
|
||||||
*/
|
*/
|
||||||
Buttons.prototype.stopFade = function () {
|
CBP.stopFade = function () {
|
||||||
this.$buttons
|
this.$buttons
|
||||||
.stop( true )
|
.stop( true )
|
||||||
.removeClass( 'hidden' )
|
.removeClass( 'hidden' )
|
||||||
|
@ -109,7 +112,7 @@
|
||||||
* @param {boolean} showPrevButton
|
* @param {boolean} showPrevButton
|
||||||
* @param {boolean} showNextButton
|
* @param {boolean} showNextButton
|
||||||
*/
|
*/
|
||||||
Buttons.prototype.toggle = function ( showPrevButton, showNextButton ) {
|
CBP.toggle = function ( showPrevButton, showNextButton ) {
|
||||||
this.$next.toggleClass( 'disabled', !showPrevButton );
|
this.$next.toggleClass( 'disabled', !showPrevButton );
|
||||||
this.$prev.toggleClass( 'disabled', !showNextButton );
|
this.$prev.toggleClass( 'disabled', !showNextButton );
|
||||||
};
|
};
|
||||||
|
@ -117,7 +120,7 @@
|
||||||
/**
|
/**
|
||||||
* Fades out the active buttons
|
* Fades out the active buttons
|
||||||
*/
|
*/
|
||||||
Buttons.prototype.fadeOut = function () {
|
CBP.fadeOut = function () {
|
||||||
var buttons = this;
|
var buttons = this;
|
||||||
|
|
||||||
// We don't use animation chaining because delay() can't be stop()ed
|
// We don't use animation chaining because delay() can't be stop()ed
|
||||||
|
@ -136,7 +139,7 @@
|
||||||
* @param {number} y The vertical coordinate of the position
|
* @param {number} y The vertical coordinate of the position
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
Buttons.prototype.isAnyActiveButtonHovered = function ( x, y ) {
|
CBP.isAnyActiveButtonHovered = function ( x, y ) {
|
||||||
// We don't use mouseenter/mouseleave events because content is subject
|
// We don't use mouseenter/mouseleave events because content is subject
|
||||||
// to change underneath the cursor, eg. when entering fullscreen or
|
// to change underneath the cursor, eg. when entering fullscreen or
|
||||||
// when going prev/next (the button can disappear when reaching ends)
|
// when going prev/next (the button can disappear when reaching ends)
|
||||||
|
@ -160,7 +163,7 @@
|
||||||
/**
|
/**
|
||||||
* Reveals all active buttons and schedule a fade out if needed
|
* Reveals all active buttons and schedule a fade out if needed
|
||||||
*/
|
*/
|
||||||
Buttons.prototype.revealAndFade = function ( mousePosition ) {
|
CBP.revealAndFade = function ( mousePosition ) {
|
||||||
if ( this.buttonsFadeTimeout ) {
|
if ( this.buttonsFadeTimeout ) {
|
||||||
clearTimeout( this.buttonsFadeTimeout );
|
clearTimeout( this.buttonsFadeTimeout );
|
||||||
}
|
}
|
||||||
|
@ -176,5 +179,5 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
mw.mmv.ui.Buttons = Buttons;
|
mw.mmv.ui.CanvasButtons = CanvasButtons;
|
||||||
}( mediaWiki, jQuery, OO ) );
|
}( mediaWiki, jQuery, OO ) );
|
|
@ -16,12 +16,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
( function( mw, $ ) {
|
( function( mw, $ ) {
|
||||||
QUnit.module( 'mmv.ui.Buttons', QUnit.newMwEnvironment() );
|
QUnit.module( 'mmv.ui.CanvasButtons', QUnit.newMwEnvironment() );
|
||||||
|
|
||||||
QUnit.test( 'Prev/Next', 2, function( assert ) {
|
QUnit.test( 'Prev/Next', 2, function( assert ) {
|
||||||
var i = 0,
|
var i = 0,
|
||||||
$qf = $( '#qunit-fixture' ),
|
$qf = $( '#qunit-fixture' ),
|
||||||
buttons = new mw.mmv.ui.Buttons( $qf, $( '<div>' ), $( '<div>' ) ),
|
buttons = new mw.mmv.ui.CanvasButtons( $qf, $( '<div>' ), $( '<div>' ) ),
|
||||||
viewer = new mw.mmv.MultimediaViewer();
|
viewer = new mw.mmv.MultimediaViewer();
|
||||||
|
|
||||||
viewer.ui = {};
|
viewer.ui = {};
|
Loading…
Reference in a new issue