mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-03 02:16:51 +00:00
7cc23367f6
Implement a special node type, context item, and inspector for ISBN/PMID/RFC magic links. Add buttons to the link inspectors to convert back and forth between "simple" links, and magic links. Depends on I5d000d8b63dafdfe0a2753069d3f0ac5b03b8829 in Parsoid for clean round-tripping of localized ISBN magic links. Bug: T63558 Change-Id: Id5b7a2ae3c80b0e5eed598f0bd024d3e94f7e9aa
56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MediaWiki LinkInspectorTool classes.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @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
|
|
*
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWLinkInspectorTool = function VeUiMwLinkInspectorTool() {
|
|
ve.ui.MWLinkInspectorTool.super.apply( this, arguments );
|
|
};
|
|
|
|
OO.inheritClass( ve.ui.MWLinkInspectorTool, ve.ui.LinkInspectorTool );
|
|
|
|
ve.ui.MWLinkInspectorTool.static.modelClasses =
|
|
ve.ui.MWLinkInspectorTool.super.static.modelClasses.concat( [
|
|
ve.dm.MWNumberedExternalLinkNode,
|
|
ve.dm.MWMagicLinkNode
|
|
] );
|
|
|
|
ve.ui.MWLinkInspectorTool.static.associatedWindows = [ 'link', 'linkNode', 'linkMagicNode' ];
|
|
|
|
ve.ui.MWLinkInspectorTool.prototype.onUpdateState = function ( fragment ) {
|
|
// Vary title based on link type.
|
|
var node = fragment instanceof ve.dm.SurfaceFragment ?
|
|
fragment.getSelectedNode() : null,
|
|
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;
|
|
this.setTitle( title );
|
|
};
|
|
|
|
ve.ui.toolFactory.register( ve.ui.MWLinkInspectorTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'link', 'link', 'open', { supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|