mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 18:29:50 +00:00
8ef144f936
Change-Id: I5aa3ab891890b52057a5fc855315e5b1b2203037
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
var watchstar = require( 'mediawiki.page.watch.ajax' ).watchstar;
|
|
|
|
( function () {
|
|
|
|
var
|
|
WATCHED_ICON_CLASS = 'minerva-icon--unStar-progressive',
|
|
TEMP_WATCHED_ICON_CLASS = 'minerva-icon--halfStar-progressive',
|
|
UNWATCHED_ICON_CLASS = 'minerva-icon--star-base20';
|
|
|
|
/**
|
|
* Tweaks the global watchstar handler in core to use the correct classes for Minerva.
|
|
*
|
|
* @param {jQuery} $icon
|
|
*/
|
|
function init( $icon ) {
|
|
var $watchlink = $icon.find( 'a' );
|
|
watchstar( $watchlink, mw.config.get( 'wgRelevantPageName' ), toggleClasses );
|
|
}
|
|
|
|
/**
|
|
* @param {jQuery} $link
|
|
* @param {boolean} isWatched
|
|
* @param {string} expiry
|
|
*/
|
|
function toggleClasses( $link, isWatched, expiry ) {
|
|
var $icon = $link.find( '.minerva-icon' );
|
|
$icon.removeClass( [ WATCHED_ICON_CLASS, UNWATCHED_ICON_CLASS, TEMP_WATCHED_ICON_CLASS ] )
|
|
.addClass( function () {
|
|
var classes = UNWATCHED_ICON_CLASS;
|
|
if ( isWatched ) {
|
|
if ( expiry !== null && expiry !== undefined && expiry !== 'infinity' ) {
|
|
classes = TEMP_WATCHED_ICON_CLASS;
|
|
} else {
|
|
classes = WATCHED_ICON_CLASS;
|
|
}
|
|
}
|
|
return classes;
|
|
} );
|
|
}
|
|
|
|
module.exports = {
|
|
init: init,
|
|
test: {
|
|
toggleClasses,
|
|
TEMP_WATCHED_ICON_CLASS,
|
|
WATCHED_ICON_CLASS,
|
|
UNWATCHED_ICON_CLASS
|
|
}
|
|
};
|
|
|
|
}() );
|