2013-04-17 17:53:26 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWReferenceNode class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DataModel MediaWiki reference node.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.dm.LeafNode
|
|
|
|
* @constructor
|
|
|
|
* @param {number} [length] Length of content data in document; ignored and overridden to 0
|
|
|
|
* @param {Object} [element] Reference to element in linear model
|
|
|
|
*/
|
|
|
|
ve.dm.MWReferenceNode = function VeDmMWReferenceNode( length, element ) {
|
|
|
|
// Parent constructor
|
|
|
|
ve.dm.LeafNode.call( this, 0, element );
|
2013-05-29 14:46:52 +00:00
|
|
|
|
|
|
|
// Event handlers
|
|
|
|
this.connect( this, {
|
|
|
|
'root': 'onRoot',
|
|
|
|
'unroot': 'onUnroot'
|
|
|
|
} );
|
2013-04-17 17:53:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.inheritClass( ve.dm.MWReferenceNode, ve.dm.LeafNode );
|
|
|
|
|
|
|
|
/* Static members */
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.dm.MWReferenceNode.static.name = 'mwReference';
|
2013-04-17 17:53:26 +00:00
|
|
|
|
|
|
|
ve.dm.MWReferenceNode.static.matchTagNames = null;
|
|
|
|
|
|
|
|
ve.dm.MWReferenceNode.static.matchRdfaTypes = [ 'mw:Object/Ext/Ref' ];
|
|
|
|
|
|
|
|
ve.dm.MWReferenceNode.static.isContent = true;
|
|
|
|
|
|
|
|
ve.dm.MWReferenceNode.static.toDataElement = function ( domElements, converter ) {
|
|
|
|
var dataElement, listIndex,
|
|
|
|
about = domElements[0].getAttribute( 'about' ),
|
|
|
|
mw = JSON.parse( domElements[0].getAttribute( 'data-mw' ) || '{}' ),
|
2013-05-25 12:44:50 +00:00
|
|
|
body = mw.body.html,
|
|
|
|
// TODO: this should use mw.attrs.name once available from Parsoid
|
|
|
|
name = $( domElements[0] ).children( 'a' ).attr( 'href' ),
|
|
|
|
// TODO: should also store and use mw.attrs.group once available from Parsoid
|
2013-05-29 14:46:52 +00:00
|
|
|
listGroup = this.name, // + '/' + mw.attrs.group
|
|
|
|
listKey = name !== null ? name : ve.getHash( body );
|
2013-04-17 17:53:26 +00:00
|
|
|
|
2013-05-29 14:46:52 +00:00
|
|
|
listIndex = converter.internalList.queueItemHtml( listGroup, listKey, body );
|
2013-04-17 17:53:26 +00:00
|
|
|
|
|
|
|
dataElement = {
|
|
|
|
'type': this.name,
|
|
|
|
'attributes': {
|
|
|
|
'mw': mw,
|
|
|
|
'about': about,
|
2013-05-29 14:46:52 +00:00
|
|
|
'listIndex': listIndex,
|
|
|
|
'listGroup': listGroup,
|
|
|
|
'listKey': listKey
|
2013-04-17 17:53:26 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
return dataElement;
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.dm.MWReferenceNode.static.toDomElements = function ( dataElement, doc, converter ) {
|
2013-05-26 12:34:47 +00:00
|
|
|
var itemNodeHtml, mwAttr,
|
2013-04-17 17:53:26 +00:00
|
|
|
span = doc.createElement( 'span' ),
|
|
|
|
itemNodeWrapper = doc.createElement( 'div' ),
|
|
|
|
itemNode = converter.internalList.getItemNode( dataElement.attributes.listIndex ),
|
|
|
|
itemNodeRange = itemNode.getRange();
|
|
|
|
|
|
|
|
span.setAttribute( 'about', dataElement.attributes.about );
|
|
|
|
span.setAttribute( 'typeof', 'mw:Object/Ext/Ref' );
|
|
|
|
|
|
|
|
converter.getDomSubtreeFromData(
|
2013-05-14 21:32:28 +00:00
|
|
|
itemNode.getDocument().getData().slice( itemNodeRange.start, itemNodeRange.end ),
|
2013-04-17 17:53:26 +00:00
|
|
|
itemNodeWrapper
|
|
|
|
),
|
|
|
|
itemNodeHtml = $( itemNodeWrapper ).html();
|
|
|
|
|
2013-05-26 12:34:47 +00:00
|
|
|
mwAttr = ( dataElement.attributes && ve.copyObject( dataElement.attributes.mw ) ) || {};
|
|
|
|
ve.setProp( mwAttr, 'body', 'html', itemNodeHtml );
|
|
|
|
span.setAttribute( 'data-mw', JSON.stringify( mwAttr ) );
|
2013-04-17 17:53:26 +00:00
|
|
|
|
|
|
|
return [ span ];
|
|
|
|
};
|
|
|
|
|
2013-05-22 14:58:21 +00:00
|
|
|
ve.dm.MWReferenceNode.static.remapInternalListIndexes = function ( dataElement, mapping ) {
|
|
|
|
dataElement.attributes.listIndex = mapping[dataElement.attributes.listIndex];
|
|
|
|
};
|
|
|
|
|
2013-04-17 17:53:26 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the internal item node associated with this node
|
|
|
|
* @method
|
|
|
|
* @returns {ve.dm.InternalItemNode} Item node
|
|
|
|
*/
|
|
|
|
ve.dm.MWReferenceNode.prototype.getInternalItem = function () {
|
2013-05-29 14:46:52 +00:00
|
|
|
return this.getDocument().getInternalList().getItemNode( this.getAttribute( 'listIndex' ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the node being attached to the root
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.dm.MWReferenceNode.prototype.onRoot = function () {
|
|
|
|
if ( this.getRoot() === this.getDocument().getDocumentNode() ) {
|
|
|
|
this.getDocument().getInternalList().addNode(
|
|
|
|
this.element.attributes.listGroup, this.element.attributes.listKey, this
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the node being detatched from the root
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.dm.MWReferenceNode.prototype.onUnroot = function () {
|
|
|
|
this.getDocument().getInternalList().removeNode(
|
|
|
|
this.element.attributes.listGroup, this.element.attributes.listKey, this
|
|
|
|
);
|
2013-04-17 17:53:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWReferenceNode );
|