mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWInternalLinkMenuOptionWidget.js
James D. Forrester 65112a7e10 Show different icons for different result types
* Disambiguation
* Redirect
* Not found
* Page exists

Bug: T93694
Change-Id: Ic4a60c95e37de372e8d0c12878dece67a2662343
2015-04-29 17:51:34 +01:00

54 lines
1.6 KiB
JavaScript

/*!
* VisualEditor UserInterface MWInternalLinkMenuOptionWidget class.
*
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Creates a ve.ui.MWInternalLinkMenuOptionWidget object.
*
* @class
* @extends ve.ui.MWLinkMenuOptionWidget
*
* @constructor
* @param {Object} [config] Configuration options
* @cfg {string} [pagename] Pagename to return the names of internal pages
* @cfg {string} [imageUrl] Thumbnail image URL with URL encoding
* @cfg {string} [description] Page description
*/
ve.ui.MWInternalLinkMenuOptionWidget = function VeUiMWInternalLinkMenuOptionWidget( config ) {
// Config initialization
config = ve.extendObject( { icon: 'page-existing' }, config );
// Properties
this.pagename = config.pagename;
// Parent constructor
ve.ui.MWLinkMenuOptionWidget.call( this, $.extend( { label: this.pagename, href: mw.util.getUrl( this.pagename ) }, config ) );
// Style based on link cache information
ve.init.platform.linkCache.styleElement( this.pagename, this.$link );
// Intialization
this.$element.addClass( 've-ui-mwInternalLinkMenuOptionWidget' );
if ( config.imageUrl ) {
this.$icon
.addClass( 've-ui-mwInternalLinkMenuOptionWidget-hasImage' )
.css( 'background-image', 'url(' + config.imageUrl + ')' );
}
if ( config.description ) {
this.$element.append(
$( '<span>' )
.addClass( 've-ui-mwInternalLinkMenuOptionWidget-description' )
.text( config.description )
);
}
};
/* Inheritance */
OO.inheritClass( ve.ui.MWInternalLinkMenuOptionWidget, ve.ui.MWLinkMenuOptionWidget );