mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 01:10:07 +00:00
d002532295
Bug: T340262 Depends-on: I186e3d22aa9c2b331a80d35514d578949a4b9e86 Change-Id: I415f5092df5b757576a67b612a7691e9038a696f
95 lines
2.7 KiB
JavaScript
95 lines
2.7 KiB
JavaScript
var
|
|
mobile = mw.mobileFrontend.require( 'mobile.startup' ),
|
|
View = mobile.View,
|
|
IconButton = mobile.IconButton,
|
|
notificationIconButton = new IconButton( {
|
|
icon: 'bellOutline-base20',
|
|
tagName: 'a',
|
|
glyphPrefix: 'wikimedia'
|
|
} );
|
|
|
|
/**
|
|
* A notification button for displaying a notifications overlay
|
|
*
|
|
* @class NotificationButton
|
|
* @extends View
|
|
* @param {Object} options Configuration options
|
|
* @param {string} options.notificationIconClass e.g. mw-ui-icon for icon
|
|
* @param {boolean} options.hasUnseenNotifications whether the user has unseen notifications
|
|
* @param {number} options.notificationCountRaw number of unread notifications
|
|
* @param {string} options.title tooltip for badge
|
|
* @param {string} options.url to see all notifications
|
|
* @param {boolean} options.hasNotifications whether the user has unseen notifications
|
|
* @param {Function} options.onClick handler for when the badge is clicked
|
|
* @memberof NotificationBadge
|
|
* @instance
|
|
*/
|
|
function NotificationBadge( options ) {
|
|
var $el, $notificationAnchor,
|
|
count = options.notificationCountRaw || 0,
|
|
el = options.el;
|
|
|
|
if ( el ) {
|
|
// Learn properties based on current element
|
|
$el = $( el );
|
|
options.hasUnseenNotifications = $el.find( '.notification-unseen' ).length > 0;
|
|
options.hasNotifications = options.hasUnseenNotifications;
|
|
$notificationAnchor = $el.find( 'a' );
|
|
options.title = $notificationAnchor.children().first().text();
|
|
options.url = $notificationAnchor.attr( 'href' );
|
|
count = Number( $el.find( '[data-notification-count]' ).data( 'notification-count' ) );
|
|
}
|
|
|
|
View.call( this,
|
|
$.extend( {
|
|
notificationButtonClass: notificationIconButton.getClassName(),
|
|
notificationIconClass: notificationIconButton.getIcon().getClassName(),
|
|
hasNotifications: false,
|
|
hasUnseenNotifications: false,
|
|
notificationCountRaw: 0
|
|
}, options, {
|
|
isBorderBox: false
|
|
} )
|
|
);
|
|
this.url = options.url;
|
|
this.setCount( count );
|
|
if ( options.onClick ) {
|
|
this.$el.on( 'click', options.onClick );
|
|
}
|
|
}
|
|
|
|
OO.inheritClass( NotificationBadge, View );
|
|
|
|
NotificationBadge.prototype.template = mw.template.get( 'ext.echo.mobile', 'NotificationBadge.mustache' );
|
|
|
|
/**
|
|
* Update the notification count
|
|
*
|
|
* @memberof NotificationBadge
|
|
* @instance
|
|
* @param {number} count
|
|
*/
|
|
NotificationBadge.prototype.setCount = function ( count ) {
|
|
if ( count > 100 ) {
|
|
count = 100;
|
|
}
|
|
this.options.notificationCountRaw = count;
|
|
this.options.notificationCountString = mw.msg( 'echo-badge-count',
|
|
mw.language.convertNumber( count )
|
|
);
|
|
this.render();
|
|
};
|
|
|
|
/**
|
|
* Marks all notifications as seen
|
|
*
|
|
* @memberof NotificationBadge
|
|
* @instance
|
|
*/
|
|
NotificationBadge.prototype.markAsSeen = function () {
|
|
this.options.hasUnseenNotifications = false;
|
|
this.render();
|
|
};
|
|
|
|
module.exports = NotificationBadge;
|