2015-08-13 00:54:16 +00:00
|
|
|
( function ( mw, $ ) {
|
|
|
|
/**
|
|
|
|
* Notification badge button widget for echo popup.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends OO.ui.ButtonWidget
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration object
|
|
|
|
* @cfg {string} [type='alert'] Notification type 'alert' or 'message'
|
|
|
|
* @cfg {number} [numItems=0] How many items are in the button display
|
2015-09-03 21:24:03 +00:00
|
|
|
* @cfg {boolean} [hasUnseen=false] Whether there are unseen items
|
2015-08-13 00:54:16 +00:00
|
|
|
* @cfg {boolean} [markReadWhenSeen=false] Mark all notifications as read on open
|
2015-09-09 20:18:52 +00:00
|
|
|
* @cfg {number} [popupWidth=450] The width of the popup
|
2015-08-13 00:54:16 +00:00
|
|
|
* @cfg {string|Object} [badgeIcon] The icons to use for this button.
|
|
|
|
* If this is a string, it will be used as the icon regardless of the state.
|
|
|
|
* If it is an object, it must include
|
2015-09-03 21:24:03 +00:00
|
|
|
* the properties 'unseen' and 'seen' with icons attached to both. For example:
|
2015-08-13 00:54:16 +00:00
|
|
|
* { badgeIcon: {
|
2015-09-03 21:24:03 +00:00
|
|
|
* unseen: 'bellOn',
|
|
|
|
* seen: 'bell'
|
2015-08-13 00:54:16 +00:00
|
|
|
* } }
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget = function MwEchoUiNotificationBadgeButtonPopupWidget( config ) {
|
2015-09-09 20:18:52 +00:00
|
|
|
var buttonFlags, allNotificationsButton, preferencesButton, footerButtonGroupWidget, $footer;
|
2015-08-13 00:54:16 +00:00
|
|
|
|
|
|
|
config = config || {};
|
|
|
|
config.links = config.links || {};
|
|
|
|
|
2015-09-17 00:05:52 +00:00
|
|
|
// Parent constructor
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.parent.call( this, config );
|
|
|
|
|
2015-08-13 00:54:16 +00:00
|
|
|
// Mixin constructors
|
|
|
|
OO.ui.mixin.PendingElement.call( this, config );
|
|
|
|
|
|
|
|
this.type = config.type || 'alert';
|
|
|
|
this.numItems = config.numItems || 0;
|
|
|
|
this.markReadWhenSeen = !!config.markReadWhenSeen;
|
2015-09-17 00:05:52 +00:00
|
|
|
this.badgeIcon = config.badgeIcon || {};
|
2015-08-13 00:54:16 +00:00
|
|
|
this.hasRunFirstTime = false;
|
|
|
|
|
|
|
|
buttonFlags = [ 'primary' ];
|
2015-09-03 21:24:03 +00:00
|
|
|
if ( !!config.hasUnseen ) {
|
2015-08-13 00:54:16 +00:00
|
|
|
buttonFlags.push( 'unseen' );
|
|
|
|
}
|
|
|
|
|
2015-09-17 00:05:52 +00:00
|
|
|
this.badgeButton = new mw.echo.ui.BadgeLinkWidget( {
|
|
|
|
label: this.numItems,
|
|
|
|
flags: buttonFlags,
|
|
|
|
badgeIcon: config.badgeIcon,
|
|
|
|
// The following messages can be used here:
|
|
|
|
// tooltip-pt-notifications-alert
|
|
|
|
// tooltip-pt-notifications-message
|
|
|
|
title: mw.msg( 'tooltip-pt-notifications-' + this.type )
|
|
|
|
} );
|
|
|
|
|
2015-08-13 00:54:16 +00:00
|
|
|
// View model
|
|
|
|
this.notificationsModel = new mw.echo.dm.NotificationsModel( {
|
|
|
|
type: this.type,
|
|
|
|
limit: 25,
|
2015-09-15 06:13:51 +00:00
|
|
|
userLang: mw.config.get( 'wgUserLanguage' ),
|
|
|
|
apiData: mw.echo.apiCallParams
|
2015-08-13 00:54:16 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
// Notifications widget
|
|
|
|
this.notificationsWidget = new mw.echo.ui.NotificationsWidget(
|
|
|
|
this.notificationsModel,
|
|
|
|
{
|
|
|
|
type: this.type,
|
|
|
|
markReadWhenSeen: this.markReadWhenSeen
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Footer
|
|
|
|
allNotificationsButton = new OO.ui.ButtonWidget( {
|
|
|
|
icon: 'next',
|
|
|
|
label: mw.msg( 'echo-overlay-link' ),
|
|
|
|
href: config.links.notifications,
|
|
|
|
classes: [ 'mw-echo-ui-notificationBadgeButtonPopupWidget-footer-allnotifs' ]
|
|
|
|
} );
|
|
|
|
|
|
|
|
preferencesButton = new OO.ui.ButtonWidget( {
|
|
|
|
icon: 'advanced',
|
|
|
|
label: mw.msg( 'mypreferences' ),
|
|
|
|
href: config.links.preferences,
|
|
|
|
classes: [ 'mw-echo-ui-notificationBadgeButtonPopupWidget-footer-preferences' ]
|
|
|
|
} );
|
|
|
|
|
2015-09-09 20:18:52 +00:00
|
|
|
footerButtonGroupWidget = new OO.ui.ButtonGroupWidget( {
|
|
|
|
items: [ allNotificationsButton, preferencesButton ]
|
|
|
|
} );
|
2015-08-13 00:54:16 +00:00
|
|
|
$footer = $( '<div>' )
|
|
|
|
.addClass( 'mw-echo-ui-notificationBadgeButtonPopupWidget-footer' )
|
2015-09-09 20:18:52 +00:00
|
|
|
.append( footerButtonGroupWidget.$element );
|
2015-09-17 00:05:52 +00:00
|
|
|
|
|
|
|
this.popup = new OO.ui.PopupWidget( {
|
|
|
|
$content: this.notificationsWidget.$element,
|
|
|
|
$footer: $footer,
|
|
|
|
width: config.popupWidth || 450,
|
|
|
|
autoClose: true,
|
|
|
|
$autoCloseIgnore: this.$element,
|
|
|
|
head: true,
|
2015-09-10 22:17:11 +00:00
|
|
|
// The following messages can be used here:
|
2015-09-17 00:05:52 +00:00
|
|
|
// echo-notification-alert-text-only
|
|
|
|
// echo-notification-message-text-only
|
|
|
|
label: mw.msg( 'echo-notification-' + this.type + '-text-only' )
|
|
|
|
} );
|
2015-08-13 00:54:16 +00:00
|
|
|
// HACK: Add an icon to the popup head label
|
2015-09-03 21:24:03 +00:00
|
|
|
this.popupHeadIcon = new OO.ui.IconWidget();
|
|
|
|
this.popup.$head.prepend( this.popupHeadIcon.$element );
|
|
|
|
|
2015-09-10 22:24:21 +00:00
|
|
|
this.setPendingElement( this.popup.$head );
|
2015-09-17 00:05:52 +00:00
|
|
|
this.updateIcon( !!config.hasUnseen );
|
2015-09-10 22:24:21 +00:00
|
|
|
|
2015-08-13 00:54:16 +00:00
|
|
|
// Mark all as read button
|
|
|
|
this.markAllReadButton = new OO.ui.ButtonWidget( {
|
|
|
|
framed: false,
|
|
|
|
label: mw.msg( 'echo-mark-all-as-read' ),
|
|
|
|
classes: [ 'mw-echo-ui-notificationsWidget-markAllReadButton' ]
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Hide the close button
|
|
|
|
this.popup.closeButton.toggle( false );
|
|
|
|
// Add the 'mark all as read' button to the header
|
|
|
|
this.popup.$head.append( this.markAllReadButton.$element );
|
2015-09-03 21:24:03 +00:00
|
|
|
this.markAllReadButton.toggle( !this.markReadWhenSeen && !!config.hasUnseen );
|
2015-08-13 00:54:16 +00:00
|
|
|
|
|
|
|
// Events
|
|
|
|
this.markAllReadButton.connect( this, { click: 'onMarkAllReadButtonClick' } );
|
|
|
|
this.notificationsModel.connect( this, {
|
|
|
|
updateSeenTime: 'updateBadge',
|
|
|
|
add: 'updateBadge',
|
|
|
|
unseenChange: 'updateBadge',
|
|
|
|
unreadChange: 'updateBadge'
|
|
|
|
} );
|
2015-09-08 00:11:31 +00:00
|
|
|
this.popup.connect( this, { toggle: 'onPopupToggle' } );
|
2015-09-17 00:05:52 +00:00
|
|
|
this.badgeButton.connect( this, {
|
|
|
|
click: 'onBadgeButtonClick'
|
|
|
|
} );
|
2015-08-13 00:54:16 +00:00
|
|
|
|
|
|
|
this.$element
|
2015-09-17 00:05:52 +00:00
|
|
|
.prop( 'id', 'pt-notifications-' + this.type )
|
|
|
|
// The following classes can be used here:
|
|
|
|
// mw-echo-ui-notificationBadgeButtonPopupWidget-alert
|
|
|
|
// mw-echo-ui-notificationBadgeButtonPopupWidget-message
|
2015-08-13 00:54:16 +00:00
|
|
|
.addClass(
|
|
|
|
'mw-echo-ui-notificationBadgeButtonPopupWidget ' +
|
|
|
|
'mw-echo-ui-notificationBadgeButtonPopupWidget-' + this.type
|
2015-09-17 00:05:52 +00:00
|
|
|
)
|
|
|
|
.append(
|
|
|
|
this.badgeButton.$element,
|
|
|
|
this.popup.$element
|
2015-08-13 00:54:16 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Initialization */
|
|
|
|
|
2015-09-17 00:05:52 +00:00
|
|
|
OO.inheritClass( mw.echo.ui.NotificationBadgeWidget, OO.ui.Widget );
|
2015-08-13 00:54:16 +00:00
|
|
|
OO.mixinClass( mw.echo.ui.NotificationBadgeWidget, OO.ui.mixin.PendingElement );
|
|
|
|
|
2015-09-17 00:05:52 +00:00
|
|
|
/* Static properties */
|
|
|
|
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.static.tagName = 'li';
|
|
|
|
|
2015-09-17 20:47:23 +00:00
|
|
|
/* Events */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @event allRead
|
|
|
|
* All notifications were marked as read
|
|
|
|
*/
|
|
|
|
|
2015-09-17 00:05:52 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Respond to badge button click
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.onBadgeButtonClick = function () {
|
|
|
|
this.popup.toggle( true );
|
|
|
|
};
|
|
|
|
|
2015-09-03 21:24:03 +00:00
|
|
|
/**
|
|
|
|
* Update the badge icon with the read/unread versions if they exist.
|
|
|
|
*
|
|
|
|
* @param {boolean} hasUnseen Widget has unseen notifications
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.updateIcon = function ( hasUnseen ) {
|
|
|
|
var icon = typeof this.badgeIcon === 'string' ?
|
|
|
|
this.badgeIcon :
|
|
|
|
this.badgeIcon[ hasUnseen ? 'unseen' : 'seen' ];
|
2015-09-17 00:05:52 +00:00
|
|
|
|
|
|
|
this.badgeButton.setIcon( icon );
|
2015-09-03 21:24:03 +00:00
|
|
|
this.popupHeadIcon.setIcon( icon );
|
|
|
|
};
|
|
|
|
|
2015-08-13 00:54:16 +00:00
|
|
|
/**
|
|
|
|
* Update the badge state and label based on changes to the model
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.updateBadge = function () {
|
|
|
|
var unseenCount = this.notificationsModel.getUnseenCount(),
|
|
|
|
unreadCount = this.notificationsModel.getUnreadCount();
|
|
|
|
|
|
|
|
// Update numbers and seen/unseen state
|
2015-09-17 00:05:52 +00:00
|
|
|
this.badgeButton.setFlags( { unseen: !!unseenCount } );
|
|
|
|
this.badgeButton.setLabel( mw.language.convertNumber( unreadCount ) );
|
2015-09-03 21:24:03 +00:00
|
|
|
this.updateIcon( !!unseenCount );
|
2015-09-08 20:46:57 +00:00
|
|
|
|
|
|
|
// Check if we need to display the 'mark all unread' button
|
|
|
|
this.markAllReadButton.toggle( !!unreadCount );
|
2015-08-13 00:54:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Respond to 'mark all as read' button click
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.onMarkAllReadButtonClick = function () {
|
|
|
|
this.notificationsModel.markAllRead();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2015-09-15 06:13:51 +00:00
|
|
|
* Populate notifications from the API.
|
|
|
|
*
|
|
|
|
* @param {jQuery.Promise} [fetchingApiRequest] An existing promise for fetching
|
|
|
|
* notifications from the API. This allows us to start fetching notifications
|
|
|
|
* externally.
|
|
|
|
* @return {jQuery.Promise} Promise that is resolved when the notifications populate
|
2015-08-13 00:54:16 +00:00
|
|
|
*/
|
2015-09-15 06:13:51 +00:00
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.populateNotifications = function ( fetchingApiRequest ) {
|
2015-09-22 18:55:01 +00:00
|
|
|
var widget = this;
|
2015-08-13 00:54:16 +00:00
|
|
|
|
2015-09-17 23:43:36 +00:00
|
|
|
// The model retrieves the ongoing promise or returns the existing one that it
|
|
|
|
// has. When the promise is completed successfuly, it nullifies itself so we can
|
|
|
|
// request for it to be rebuilt and the request to the API resent.
|
|
|
|
// However, in the case of an API failure, the promise does not nullify itself.
|
|
|
|
// In that case we also want the model to rebuild the request, so in this condition
|
|
|
|
// we must check both cases.
|
2015-09-16 20:42:17 +00:00
|
|
|
if ( !this.notificationsModel.isFetchingNotifications() || this.notificationsModel.isFetchingErrorState() ) {
|
2015-08-13 00:54:16 +00:00
|
|
|
this.pushPending();
|
2015-09-09 18:50:54 +00:00
|
|
|
this.markAllReadButton.toggle( false );
|
2015-09-15 06:13:51 +00:00
|
|
|
return this.notificationsModel.fetchNotifications( fetchingApiRequest )
|
2015-08-13 00:54:16 +00:00
|
|
|
.then( function ( idArray ) {
|
|
|
|
// Clip again
|
|
|
|
widget.popup.clip();
|
|
|
|
|
|
|
|
// Log impressions
|
|
|
|
mw.echo.logger.logNotificationImpressions( this.type, idArray, mw.echo.Logger.static.context.popup );
|
|
|
|
|
|
|
|
// // Mark notifications as 'read' if markReadWhenSeen is set to true
|
|
|
|
if ( widget.markReadWhenSeen ) {
|
|
|
|
return widget.notificationsModel.markAllRead();
|
|
|
|
}
|
|
|
|
} )
|
|
|
|
.then( function () {
|
|
|
|
// Update seen time
|
|
|
|
widget.notificationsModel.updateSeenTime();
|
|
|
|
} )
|
2015-09-17 21:14:49 +00:00
|
|
|
.then(
|
|
|
|
// Success
|
|
|
|
function () {
|
|
|
|
// Display the message only if there are no notifications
|
|
|
|
if ( widget.notificationsModel.isEmpty() ) {
|
|
|
|
widget.notificationsWidget.resetLoadingOption( mw.msg( 'echo-notification-placeholder' ) );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Fail
|
|
|
|
function ( errCode ) {
|
|
|
|
// Display the message only if there are no notifications
|
|
|
|
if ( widget.notificationsModel.isEmpty() ) {
|
|
|
|
widget.notificationsWidget.resetLoadingOption( mw.msg( 'echo-api-failure', errCode ) );
|
|
|
|
}
|
2015-09-16 20:42:17 +00:00
|
|
|
}
|
2015-09-17 21:14:49 +00:00
|
|
|
)
|
2015-08-13 00:54:16 +00:00
|
|
|
.always( function () {
|
|
|
|
// Pop pending
|
|
|
|
widget.popPending();
|
|
|
|
// Nullify the promise; let the user fetch again
|
|
|
|
widget.fetchNotificationsPromise = null;
|
|
|
|
} );
|
2015-09-15 06:13:51 +00:00
|
|
|
} else {
|
|
|
|
return this.notificationsModel.getFetchNotificationPromise();
|
|
|
|
}
|
|
|
|
};
|
2015-08-13 00:54:16 +00:00
|
|
|
|
2015-09-15 06:13:51 +00:00
|
|
|
/**
|
|
|
|
* Extend the response to button click so we can also update the notification list.
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.onPopupToggle = function ( isVisible ) {
|
|
|
|
if ( !isVisible ) {
|
|
|
|
// If the popup is closing, leave
|
|
|
|
return;
|
2015-08-13 00:54:16 +00:00
|
|
|
}
|
2015-09-15 06:13:51 +00:00
|
|
|
|
|
|
|
// Log the click event
|
|
|
|
mw.echo.logger.logInteraction(
|
|
|
|
'ui-badge-link-click',
|
|
|
|
mw.echo.Logger.static.context,
|
|
|
|
null,
|
|
|
|
this.type
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( this.hasRunFirstTime ) {
|
|
|
|
// HACK: Clippable doesn't resize the clippable area when
|
|
|
|
// it calculates the new size. Since the popup contents changed
|
|
|
|
// and the popup is "empty" now, we need to manually set its
|
|
|
|
// size to 1px so the clip calculations will resize it properly.
|
|
|
|
// See bug report: https://phabricator.wikimedia.org/T110759
|
|
|
|
this.popup.$clippable.css( 'height', '1px' );
|
|
|
|
this.popup.clip();
|
|
|
|
}
|
2015-09-16 20:42:17 +00:00
|
|
|
// Always populate on popup open. The model and widget should handle
|
|
|
|
// the case where the promise is already underway.
|
2015-09-15 06:13:51 +00:00
|
|
|
this.populateNotifications();
|
2015-09-16 20:42:17 +00:00
|
|
|
this.hasRunFirstTime = true;
|
2015-08-13 00:54:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notifications model attached to this widget
|
|
|
|
*
|
|
|
|
* @return {mw.echo.dm.NotificationsModel} Notifications model
|
|
|
|
*/
|
|
|
|
mw.echo.ui.NotificationBadgeWidget.prototype.getModel = function () {
|
|
|
|
return this.notificationsModel;
|
|
|
|
};
|
|
|
|
|
|
|
|
} )( mediaWiki, jQuery );
|