mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
c8d24ebd17
Change-Id: Iee1d1b20ed31e636bfb8fc8cf9b18ff328bf608c
93 lines
2.2 KiB
JavaScript
93 lines
2.2 KiB
JavaScript
( function ( mw, $ ) {
|
|
/**
|
|
* Placeholder notification option widget for echo popup.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.Widget
|
|
* @mixins OO.ui.mixin.LabelElement
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration object
|
|
* @cfg {string} [link] A link that this widget leads to.
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget = function MwEchoUiPlaceholderItemWidget( config ) {
|
|
config = config || {};
|
|
|
|
// Parent constructor
|
|
mw.echo.ui.PlaceholderItemWidget.parent.call( this, $.extend( { data: null }, config ) );
|
|
|
|
// Mixin constructor
|
|
OO.ui.mixin.LabelElement.call( this, config );
|
|
|
|
this.$element.addClass( 'mw-echo-ui-placeholderItemWidget' );
|
|
|
|
this.setLink( config.link );
|
|
};
|
|
|
|
OO.inheritClass( mw.echo.ui.PlaceholderItemWidget, OO.ui.Widget );
|
|
OO.mixinClass( mw.echo.ui.PlaceholderItemWidget, OO.ui.mixin.LabelElement );
|
|
|
|
/**
|
|
* Set (or unset) the main link url for this widget
|
|
*
|
|
* @param {string} url The widget url
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget.prototype.setLink = function ( url ) {
|
|
var $link;
|
|
if ( url ) {
|
|
$link = $( '<a>' )
|
|
.addClass( 'mw-echo-ui-placeholderItemWidget-link' )
|
|
.attr( 'href', url );
|
|
this.$element.html( $link.append( this.$label ) );
|
|
} else {
|
|
this.$element.html( this.$label );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Return false on 'isRead' call for the notification list
|
|
* sorting.
|
|
*
|
|
* @return {boolean} false
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget.prototype.isRead = function () {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Return false on 'isForeign' call for the notification list
|
|
* sorting.
|
|
*
|
|
* @return {boolean} false
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget.prototype.isForeign = function () {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Return 0 on getTimestamp call for the notification list
|
|
* sorting.
|
|
*
|
|
* @return {number} 0
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget.prototype.getTimestamp = function () {
|
|
return 0;
|
|
};
|
|
|
|
/**
|
|
* Return 0 on getId call for the notification list
|
|
* sorting.
|
|
*
|
|
* @return {number} 0
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget.prototype.getId = function () {
|
|
return 0;
|
|
};
|
|
|
|
/**
|
|
* Do nothing for resetInitiallyUnseen since it is requested by the list widget
|
|
*/
|
|
mw.echo.ui.PlaceholderItemWidget.prototype.resetInitiallyUnseen = function () {};
|
|
|
|
}( mediaWiki, jQuery ) );
|