2012-05-31 23:50:16 +00:00
|
|
|
/**
|
|
|
|
* 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 = {
|
2012-06-07 00:47:27 +00:00
|
|
|
'domElementTypes': ['a'],
|
|
|
|
'toDomElement': function( subType, annotation ) {
|
2012-06-07 22:02:25 +00:00
|
|
|
if ( annotation.type ) {
|
2012-06-14 01:54:24 +00:00
|
|
|
// In the future we'll probably want to write sHref here but right now
|
|
|
|
// Parsoid ignores it anyway so there's no point
|
2012-06-08 04:16:55 +00:00
|
|
|
var link = document.createElement( 'a' );
|
2012-06-08 22:17:18 +00:00
|
|
|
link.setAttribute( 'href', annotation.data.href );
|
2012-06-12 01:02:21 +00:00
|
|
|
if ( annotation.data.mw ) {
|
|
|
|
link.setAttribute( 'data-mw', annotation.data.mw );
|
|
|
|
}
|
2012-06-11 07:36:20 +00:00
|
|
|
if ( subType === 'wikiLink' || subType === 'extLink' ) {
|
|
|
|
link.setAttribute( 'rel', 'mw:' + subType );
|
|
|
|
}
|
2012-06-07 22:02:25 +00:00
|
|
|
return link;
|
|
|
|
}
|
2012-05-31 23:50:16 +00:00
|
|
|
},
|
2012-06-07 00:47:27 +00:00
|
|
|
'toDataAnnotation': function( tag, element ) {
|
2012-06-12 01:02:21 +00:00
|
|
|
var rel = element.getAttribute( 'rel' ) || '',
|
2012-06-14 01:54:24 +00:00
|
|
|
subtype = rel.split( ':' )[1] || 'unknown',
|
|
|
|
mwattr = element.getAttribute( 'data-mw' ),
|
|
|
|
mwdata = $.parseJSON( mwattr ) || {},
|
|
|
|
href = element.getAttribute( 'href' ),
|
2012-06-12 01:02:21 +00:00
|
|
|
retval = {
|
|
|
|
'type': 'link/' + subtype,
|
|
|
|
'data': {
|
2012-06-14 01:54:24 +00:00
|
|
|
'href': href,
|
|
|
|
// For some daft reason sHref is an array
|
|
|
|
'title': mwdata.sHref && mwdata.sHref[0] ?
|
|
|
|
mwdata.sHref[0] : href
|
2012-06-12 01:02:21 +00:00
|
|
|
}
|
2012-06-14 01:54:24 +00:00
|
|
|
};
|
2012-06-12 01:02:21 +00:00
|
|
|
if ( mwattr ) {
|
|
|
|
retval.data.mw = mwattr;
|
|
|
|
}
|
|
|
|
return retval;
|
2012-05-31 23:50:16 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.dm.annotationFactory.register( 'link', ve.dm.LinkAnnotation );
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.dm.LinkAnnotation, ve.dm.Annotation );
|