mediawiki-extensions-Visual.../modules/ve-mw/ui/contextitems/ve.ui.MWMagicLinkNodeContextItem.js
James D. Forrester 3c293ea00c doc: Bump copyright year for 2019
Change-Id: I8991b97c980d4149f53eb5601036220ef3c0c440
2019-01-01 13:24:23 +00:00

58 lines
1.6 KiB
JavaScript

/*!
* VisualEditor MWMagicLinkNodeContextItem class.
*
* @copyright 2011-2019 VisualEditor Team and others; see http://ve.mit-license.org
*/
/**
* Context item for a MWMagicLinkNode.
*
* @class
* @extends ve.ui.LinkContextItem
*
* @constructor
* @param {ve.ui.Context} context Context item is in
* @param {ve.dm.MWMagicLinkNode} model Model item is related to
* @param {Object} config Configuration options
*/
ve.ui.MWMagicLinkNodeContextItem = function VeUiMWMagicLinkNodeContextItem() {
// Parent constructor
ve.ui.MWMagicLinkNodeContextItem.super.apply( this, arguments );
// Initialization
this.$element.addClass( 've-ui-mwMagicLinkNodeContextItem' );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWMagicLinkNodeContextItem, ve.ui.LinkContextItem );
/* Static Properties */
ve.ui.MWMagicLinkNodeContextItem.static.name = 'link/mwMagic';
ve.ui.MWMagicLinkNodeContextItem.static.label = null; // see #setup()
ve.ui.MWMagicLinkNodeContextItem.static.modelClasses = [ ve.dm.MWMagicLinkNode ];
ve.ui.MWMagicLinkNodeContextItem.static.clearable = false;
/* Methods */
ve.ui.MWMagicLinkNodeContextItem.prototype.setup = function () {
// Set up label
var msg = 'visualeditor-magiclinknodeinspector-title-' +
this.model.getMagicType().toLowerCase();
this.setLabel( OO.ui.deferMsg( msg ) );
// Invoke superclass method.
return ve.ui.MWMagicLinkNodeContextItem.super.prototype.setup.call( this );
};
ve.ui.MWMagicLinkNodeContextItem.prototype.getDescription = function () {
return this.model.getAttribute( 'content' );
};
/* Registration */
ve.ui.contextItemFactory.register( ve.ui.MWMagicLinkNodeContextItem );