mediawiki-extensions-Visual.../modules/ve/dm/annotations/ve.dm.LinkAnnotation.js
Catrope 67e11ebbc3 Make VE work again with the link RDFa changes in Parsoid
This is ugly but makes things work again. I intend to clean this up once
we have a better attribute API

* Recognize mw:WikiLink, mw:SimpleWikiLink, mw:ExtLink,
 mw:NumberedExtLink and mw:UrlLink
* Support is incomplete because we can't get to the annotation text with
  the current API
* Preserve all unhandled attributes rather than special-casing data-mw
* Update remaining code using data-mw (sHref and stx extraction) to
  account for the data-mw -> data-rt rename
* Update tests accordingly

Change-Id: Ia13d3008a6d4cdc8828f9acda5aa797566bc597f
2012-07-26 16:23:03 -07:00

88 lines
2.5 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() {
// Inheritance
ve.dm.Annotation.call( this );
};
/* 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;
// 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' || subType === 'SimpleWikiLink') {
// Set href to /title
link.setAttribute( 'href', '/' + annotation.data.title );
} else if ( subType === 'ExtLink' || subType === 'NumberedExtLink' || subType === 'UrlLink' ) {
// 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',
// FIXME we shouldn't need to read data-rt, Parsoid should provide sHref
mwattr = element.getAttribute( 'data-rt' ),
mwdata = $.parseJSON( mwattr ) || {},
href = element.getAttribute( 'href' ),
retval = {
'type': 'link/' + subType,
'data': {}
},
i, attribute;
if ( subType === 'WikiLink' || subType === 'SimpleWikiLink' ) {
retval.data.title = mwdata.sHref ||
// Trim leading slash from href
href.replace( /^\//, '' );
} else if ( subType === 'ExtLink' || subType === 'NumberedExtLink' || subType === 'UrlLink' ) {
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 );
/* Inheritance */
ve.extendClass( ve.dm.LinkAnnotation, ve.dm.Annotation );