2018-11-12 13:56:38 +00:00
|
|
|
( function () {
|
2016-06-20 20:00:37 +00:00
|
|
|
/**
|
|
|
|
* A button showing a circle that represents either 'mark as read' or 'mark as unread' states.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends OO.ui.ButtonWidget
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration options
|
2024-05-27 01:43:21 +00:00
|
|
|
* @param {boolean} [config.markAsRead=true] Display mark as read state. If false, the button displays
|
2016-06-20 20:00:37 +00:00
|
|
|
* mark as unread state.
|
|
|
|
*/
|
|
|
|
mw.echo.ui.ToggleReadCircleButtonWidget = function MwEchoUiToggleReadCircleButtonWidget( config ) {
|
|
|
|
config = config || {};
|
|
|
|
|
2018-05-22 14:56:46 +00:00
|
|
|
// Parent constructor
|
2024-06-13 14:34:07 +00:00
|
|
|
mw.echo.ui.ToggleReadCircleButtonWidget.super.call( this, Object.assign( {
|
2020-07-23 14:24:03 +00:00
|
|
|
invisibleLabel: true,
|
|
|
|
// Set a dummy icon so we get focus styles
|
|
|
|
icon: '_'
|
|
|
|
}, config ) );
|
2016-06-20 20:00:37 +00:00
|
|
|
|
|
|
|
this.$circle = $( '<div>' )
|
|
|
|
.addClass( 'mw-echo-ui-toggleReadCircleButtonWidget-circle' );
|
|
|
|
this.$button.append( this.$circle );
|
|
|
|
|
|
|
|
this.toggleState( config.markAsRead === undefined ? true : !!config.markAsRead );
|
|
|
|
|
|
|
|
this.$element
|
|
|
|
.addClass( 'mw-echo-ui-toggleReadCircleButtonWidget' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Initialization */
|
|
|
|
|
|
|
|
OO.inheritClass( mw.echo.ui.ToggleReadCircleButtonWidget, OO.ui.ButtonWidget );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle the state of the button from 'mark as read' to 'mark as unread'
|
|
|
|
* and vice versa.
|
|
|
|
*
|
|
|
|
* @param {boolean} [isMarkAsRead] The state is mark as read
|
|
|
|
*/
|
|
|
|
mw.echo.ui.ToggleReadCircleButtonWidget.prototype.toggleState = function ( isMarkAsRead ) {
|
|
|
|
isMarkAsRead = isMarkAsRead === undefined ? !this.markAsRead : !!isMarkAsRead;
|
|
|
|
|
|
|
|
this.markAsRead = isMarkAsRead;
|
|
|
|
|
|
|
|
this.$circle.toggleClass( 'mw-echo-ui-toggleReadCircleButtonWidget-circle-unread', !this.markAsRead );
|
2024-06-03 12:22:48 +00:00
|
|
|
const label = this.markAsRead ?
|
2020-07-23 14:24:03 +00:00
|
|
|
mw.msg( 'echo-notification-markasread' ) :
|
|
|
|
mw.msg( 'echo-notification-markasunread' );
|
|
|
|
this.setLabel( label );
|
|
|
|
this.setTitle( label );
|
2016-06-20 20:00:37 +00:00
|
|
|
};
|
2018-11-12 13:56:38 +00:00
|
|
|
}() );
|