mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
74ed8e8766
Change-Id: Ibf6d4f08c4761727b2e3952a76e474c8221b38f9
96 lines
2.8 KiB
JavaScript
96 lines
2.8 KiB
JavaScript
/**
|
|
* VisualEditor data model LinkAnnotation class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel annotation for a link.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.dm.Annotation}
|
|
*/
|
|
ve.dm.LinkAnnotation = function VeDmLinkAnnotation() {
|
|
// Parent constructor
|
|
ve.dm.Annotation.call( this );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.LinkAnnotation, ve.dm.Annotation );
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Converters.
|
|
*
|
|
* @see {ve.dm.Converter}
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.LinkAnnotation.converters = {
|
|
'domElementTypes': ['a'],
|
|
'toDomElement': function ( subType, annotation ) {
|
|
var link = document.createElement( 'a' ), key, attributes, href;
|
|
// Restore html/* attributes
|
|
// TODO this should be done for all annotations, factor this out in the new API
|
|
attributes = annotation.data.htmlAttributes;
|
|
for ( key in attributes ) {
|
|
link.setAttribute( key, attributes[key] );
|
|
}
|
|
|
|
link.setAttribute( 'rel', 'mw:' + subType );
|
|
if ( subType === 'WikiLink' ) {
|
|
// Set href to title
|
|
// FIXME space -> _ is MW-specific
|
|
href = annotation.data.title.replace( / /g, '_' );
|
|
if ( annotation.data.hrefPrefix ) {
|
|
href = annotation.data.hrefPrefix + href;
|
|
}
|
|
link.setAttribute( 'href', href );
|
|
} else if ( subType === 'ExtLink' || subType === 'ExtLink/Numbered' || subType === 'ExtLink/URL' ) {
|
|
// Set href directly
|
|
link.setAttribute( 'href', annotation.data.href );
|
|
}
|
|
return link;
|
|
},
|
|
'toDataAnnotation': function ( tag, element ) {
|
|
var rel = element.getAttribute( 'rel' ) || '',
|
|
subType = rel.split( ':' )[1] || 'unknown',
|
|
href = element.getAttribute( 'href' ),
|
|
retval = {
|
|
'type': 'link/' + subType,
|
|
'data': {}
|
|
},
|
|
i, attribute, matches;
|
|
if ( subType === 'WikiLink' ) {
|
|
// Get title from href
|
|
// The href is simply the title, unless we're dealing with a page that
|
|
// has slashes in its name in which case it's preceded by one or more
|
|
// instances of "./" or "../", so strip those.
|
|
// FIXME Both this and _ -> space are MW-specific
|
|
matches = href.match( /^((?:\.\.?\/)*)(.*)$/ );
|
|
// Store the ./ and ../ prefixes so we can restore them on the way out
|
|
retval.data.hrefPrefix = matches[1];
|
|
retval.data.title = matches[2].replace( /_/g, ' ' );
|
|
} else if ( subType === 'ExtLink' || subType === 'ExtLink/Numbered' || subType === 'ExtLink/URL' ) {
|
|
retval.data.href = href;
|
|
}
|
|
|
|
// Preserve HTML attributes
|
|
// TODO this should be done for all annotations, factor this out in the new API
|
|
retval.data.htmlAttributes = {};
|
|
for ( i = 0; i < element.attributes.length; i++ ) {
|
|
attribute = element.attributes[i];
|
|
retval.data.htmlAttributes[attribute.name] = attribute.value;
|
|
}
|
|
return retval;
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.annotationFactory.register( 'link', ve.dm.LinkAnnotation );
|