mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
f519bca628
Change-Id: I8512c317d6c0a3db9e3fd0aa2b58a87f8f276b45
167 lines
4 KiB
JavaScript
167 lines
4 KiB
JavaScript
( function( $, mw ) {
|
|
'use strict';
|
|
|
|
mw.echo.overlay = {
|
|
|
|
'notificationLimit' : 8,
|
|
|
|
'updateCount' : function( newCount ) {
|
|
// Accomodate '10' or '100+'. Numbers need to be
|
|
// passed as numbers for correct behavior of '0'.
|
|
if ( !isNaN( newCount ) ) {
|
|
newCount = Number( newCount );
|
|
}
|
|
|
|
$( '#pt-notifications a' )
|
|
.text( mw.msg( 'echo-link' ) )
|
|
.badge( newCount, true );
|
|
|
|
mw.echo.overlay.notification_count = newCount;
|
|
},
|
|
|
|
'configuration' : mw.config.get( 'wgEchoOverlayConfiguration' ),
|
|
|
|
'buildOverlay' : function( callback ) {
|
|
var $overlay = $( '<div></div>' ).addClass( 'mw-echo-overlay' ),
|
|
$link = $( '#pt-notifications a' ),
|
|
$prefLink = $( '#pt-preferences a' ),
|
|
count = 0;
|
|
|
|
$overlay.append(
|
|
$( '<div/>' )
|
|
.addClass( 'mw-echo-overlay-title' )
|
|
.text( mw.msg( 'echo-overlay-title' ) )
|
|
);
|
|
|
|
$overlay.css( 'max-height', $( window ).height() * 0.75 );
|
|
|
|
var Api = new mw.Api();
|
|
|
|
Api.get( {
|
|
'action' : 'query',
|
|
'meta' : 'notifications',
|
|
'notformat' : 'html',
|
|
'notlimit' : mw.echo.overlay.notificationLimit,
|
|
'notprop' : 'index|list'
|
|
}, {
|
|
'ok' : function( result ) {
|
|
var notifications = result.query.notifications,
|
|
$ul = $( '<ul class="mw-echo-notifications"></ul>' ).appendTo( $overlay );
|
|
|
|
$.each( notifications.index, function( index, id ) {
|
|
var data = notifications['list'][id];
|
|
var $li = $( '<li></li>' )
|
|
.data( 'details', data )
|
|
.data( 'id', id )
|
|
.addClass( 'mw-echo-notification' )
|
|
.append( data['*'] )
|
|
.appendTo( $ul );
|
|
|
|
if ( !data.read ) {
|
|
$li.addClass( 'mw-echo-unread' );
|
|
}
|
|
} );
|
|
|
|
if ( ! $ul.find( 'li' ).length ) {
|
|
$ul.remove();
|
|
$overlay.append(
|
|
$( '<div></div>' )
|
|
.addClass( 'mw-echo-overlay-none' )
|
|
.text( mw.msg( 'echo-none' ) )
|
|
);
|
|
}
|
|
|
|
// only show 'All notifications...' link if there is notification
|
|
if ( notifications.index.length > 0 ) {
|
|
$overlay.append(
|
|
$( '<div/>' )
|
|
.addClass( 'mw-echo-overlay-link' )
|
|
.append( $link
|
|
.clone()
|
|
.text( mw.msg( 'echo-overlay-link' ) )
|
|
)
|
|
);
|
|
}
|
|
|
|
// add link to notification preferences
|
|
$overlay.append(
|
|
$( '<div/>' )
|
|
.addClass( 'mw-echo-overlay-pref-link' )
|
|
.append( $prefLink
|
|
.clone()
|
|
.attr( 'href', $prefLink.attr( 'href' ) + '#mw-prefsection-echo' )
|
|
)
|
|
);
|
|
|
|
callback( $overlay );
|
|
|
|
Api.get( {
|
|
'action' : 'query',
|
|
'meta' : 'notifications',
|
|
'notmarkread' : notifications.index.join( '|' ),
|
|
'notprop' : 'count'
|
|
}, {
|
|
'ok' : function( result ) {
|
|
if ( result.query.notifications.count !== undefined ) {
|
|
count = result.query.notifications.count;
|
|
mw.echo.overlay.updateCount( count );
|
|
}
|
|
}
|
|
} );
|
|
},
|
|
'err' : function() {
|
|
window.location.href = $link.attr( 'href' );
|
|
}
|
|
} );
|
|
}
|
|
};
|
|
|
|
mw.echo.overlay.notification_count = mw.echo.overlay.configuration['notification-count'];
|
|
|
|
$( function() {
|
|
mw.echo.overlay.updateCount( mw.echo.overlay.notification_count );
|
|
|
|
var $link = $( '#pt-notifications a' );
|
|
if ( ! $link.length ) {
|
|
return;
|
|
}
|
|
|
|
$link.click( function( e ) {
|
|
e.preventDefault();
|
|
var $target = $( e.target );
|
|
// If the user clicked on the overlay or any child,
|
|
// ignore the click
|
|
if ( $target.hasClass( 'mw-echo-overlay' ) ||
|
|
$target.is( 'mw-echo-overlay *' )
|
|
) {
|
|
return;
|
|
}
|
|
|
|
var $overlay = $( '.mw-echo-overlay' );
|
|
|
|
if ( $overlay.length ) {
|
|
$overlay.fadeOut( 'fast',
|
|
function() { $overlay.remove(); }
|
|
);
|
|
return;
|
|
}
|
|
|
|
$overlay = mw.echo.overlay.buildOverlay(
|
|
function( $overlay ) {
|
|
$overlay
|
|
.hide()
|
|
.appendTo( $( 'body' ) )
|
|
.slideDown( 'fast' );
|
|
} );
|
|
} );
|
|
|
|
$( 'body' ).click( function( e ) {
|
|
if ( ! $( e.target ).is( '.mw-echo-overlay,.mw-echo-overlay *' ) ) {
|
|
$( '.mw-echo-overlay' ).fadeOut( 'fast',
|
|
function() { $( this ).remove(); }
|
|
);
|
|
}
|
|
} );
|
|
} );
|
|
} )( jQuery, mediaWiki );
|