2014-10-22 02:44:27 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MediaWiki LinkInspectorTool classes.
|
|
|
|
*
|
2015-01-08 23:54:03 +00:00
|
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
2014-10-22 02:44:27 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserInterface link tool. Overrides link tool from core.
|
|
|
|
*
|
|
|
|
* Works for both link annotations and link nodes, and fires the 'link' command
|
|
|
|
* which works for both as well.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.LinkInspectorTool
|
2015-08-06 14:22:15 +00:00
|
|
|
*
|
2014-10-22 02:44:27 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
2015-08-06 14:22:15 +00:00
|
|
|
ve.ui.MWLinkInspectorTool = function VeUiMwLinkInspectorTool() {
|
|
|
|
ve.ui.MWLinkInspectorTool.super.apply( this, arguments );
|
2014-10-22 02:44:27 +00:00
|
|
|
};
|
|
|
|
|
2015-09-01 20:41:50 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
2014-10-22 02:44:27 +00:00
|
|
|
OO.inheritClass( ve.ui.MWLinkInspectorTool, ve.ui.LinkInspectorTool );
|
|
|
|
|
2015-09-01 20:41:50 +00:00
|
|
|
/* Static Properties */
|
|
|
|
|
2014-10-22 02:44:27 +00:00
|
|
|
ve.ui.MWLinkInspectorTool.static.modelClasses =
|
|
|
|
ve.ui.MWLinkInspectorTool.super.static.modelClasses.concat( [
|
2015-08-25 05:48:16 +00:00
|
|
|
ve.dm.MWNumberedExternalLinkNode,
|
|
|
|
ve.dm.MWMagicLinkNode
|
2014-10-22 02:44:27 +00:00
|
|
|
] );
|
|
|
|
|
2015-08-25 05:48:16 +00:00
|
|
|
ve.ui.MWLinkInspectorTool.static.associatedWindows = [ 'link', 'linkNode', 'linkMagicNode' ];
|
|
|
|
|
2015-09-01 20:41:50 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2015-08-25 05:48:16 +00:00
|
|
|
ve.ui.MWLinkInspectorTool.prototype.onUpdateState = function ( fragment ) {
|
2015-09-01 20:41:50 +00:00
|
|
|
var node, type, title;
|
|
|
|
|
|
|
|
// Parent method
|
|
|
|
ve.ui.MWLinkInspectorTool.super.prototype.onUpdateState.apply( this, arguments );
|
|
|
|
|
2015-08-25 05:48:16 +00:00
|
|
|
// Vary title based on link type.
|
2015-09-01 20:41:50 +00:00
|
|
|
node = fragment && fragment.getSelectedNode();
|
|
|
|
type = node instanceof ve.dm.MWMagicLinkNode ?
|
|
|
|
'magiclinknode-tooltip-' + node.getMagicType().toLowerCase() :
|
|
|
|
node instanceof ve.dm.MWNumberedExternalLinkNode ?
|
|
|
|
'linknode-tooltip' : null;
|
|
|
|
title = type ?
|
|
|
|
OO.ui.deferMsg( 'visualeditor-annotationbutton-' + type ) :
|
|
|
|
ve.ui.MWLinkInspectorTool.static.title;
|
|
|
|
|
2015-08-25 05:48:16 +00:00
|
|
|
this.setTitle( title );
|
|
|
|
};
|
2015-06-26 18:51:13 +00:00
|
|
|
|
2015-09-01 20:41:50 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2014-10-22 02:44:27 +00:00
|
|
|
ve.ui.toolFactory.register( ve.ui.MWLinkInspectorTool );
|
2015-08-02 11:24:15 +00:00
|
|
|
|
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
new ve.ui.Command(
|
2015-08-12 20:55:31 +00:00
|
|
|
'link', 'link', 'open', { supportedSelections: [ 'linear' ] }
|
2015-08-02 11:24:15 +00:00
|
|
|
)
|
|
|
|
);
|