mediawiki-extensions-Echo/modules/special/ext.echo.special.js
Krenair 66c93904f1 Try to fix jenkins lint tests
From
https://integration.mediawiki.org/ci/job/mwext-Echo-jslint/142/console
18:54:22 >> modules/overlay/ext.echo.overlay.js: line 56, col 49, ['list']
is better written in dot notation.
18:54:22 >> modules/overlay/ext.echo.overlay.js: line 37, col 44, 'window'
is not defined.
18:54:22 >> modules/overlay/ext.echo.overlay.js: line 127, col 21,
'window' is not defined.
18:54:22 >> modules/special/ext.echo.special.js: line 58, col 49, ['list']
is better written in dot notation.
18:54:22 >> modules/special/ext.echo.special.js: line 112, col 25, Bad
line breaking before '&&'.

Change-Id: I2676a3e07d9d5f7419dd9030dbf218b2c0094cf1
2012-12-27 22:06:20 +00:00

141 lines
3.4 KiB
JavaScript

( function( $, mw ) {
'use strict';
mw.echo.special = {
'timestamp': 0,
'offset': 0,
'header': '',
'processing': false,
'moreData': '0',
/**
* initialize the property in special notification page
*/
'initialize': function() {
var _this = this;
$( '#mw-echo-more' ).click(
function( e ) {
e.preventDefault();
if ( !_this.processing ) {
_this.processing = true;
_this.loadMore();
}
}
);
_this.timestamp = mw.config.get( 'wgEchoStartTimestamp' );
_this.offset = mw.config.get( 'wgEchoStartOffset' );
_this.header = mw.config.get( 'wgEchoDateHeader' );
$( '#mw-echo-pref-link' )
.css( 'display', 'inline-block' )
.appendTo( $( '#firstHeading' ) );
},
/**
* function for loading more notification records
*/
'loadMore': function() {
var api = new mw.Api(), notifications, data, container, $li, _this = this, unread = [];
api.get(
{
'action' : 'query',
'meta' : 'notifications',
'notformat' : 'html',
'notprop' : 'index|list',
'nottimestamp': this.timestamp,
'notoffset': this.offset,
'notlimit': mw.config.get( 'wgEchoDisplayNum' )
},
{
'ok' : function( result ) {
container = $( '#mw-echo-special-container' );
notifications = result.query.notifications;
unread = [];
$.each( notifications.index, function( index, id ) {
data = notifications.list[id];
if ( _this.header !== data.timestamp.date ) {
_this.header = data.timestamp.date;
$( '<li></li>' ).addClass( 'mw-echo-date-section' ).append( _this.header ).appendTo( container );
}
$li = $( '<li></li>' )
.data( 'details', data )
.data( 'id', id )
.addClass( 'mw-echo-notification' )
.append( data['*'] )
.appendTo( container );
if ( !data.read ) {
$li.addClass( 'mw-echo-unread' );
unread.push( id );
}
// update the timestamp and offset to get data from
// this is used for next data retrieval
_this.timestamp = data.timestamp.unix;
_this.offset = data.id;
} );
_this.moreData = notifications.more;
if ( unread.length > 0 ) {
_this.markAsRead( unread );
} else {
_this.onSuccess();
}
},
'err' : function() {
_this.onError();
}
}
);
},
/**
* Mark notifications as read
*/
'markAsRead': function( unread ) {
var api = new mw.Api(), _this = this;
api.get( {
'action' : 'query',
'meta' : 'notifications',
'notmarkread' : unread.join( '|' ),
'notprop' : 'count'
}, {
'ok' : function( result ) {
// update the badge if the link is enabled
if ( typeof result.query.notifications.count !== 'undefined' &&
$( '#pt-notifications').length && typeof mw.echo.overlay === 'object'
) {
mw.echo.overlay.updateCount( result.query.notifications.count );
}
_this.onSuccess();
},
'err': function() {
_this.onError();
}
} );
},
'onSuccess': function() {
if ( this.moreData == '0' ) {
$( '#mw-echo-more' ).hide();
}
this.processing = false;
},
'onError': function() {
// Todo: Show detail error message based on error code
$( '#mw-echo-more' ).text( mw.msg( 'echo-load-more-error' ) );
this.processing = false;
}
};
mw.echo.special.initialize();
} )( jQuery, mediaWiki );