mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
fdcec169d1
This is the infrastructure for the Language Inspector prototype, defining the dm and ce pieces of the <span lang='xx' dir='yy'> annotations. It also sets up a visual indicator for language blocks (with informational tooltip for the user while editing. The UI is built on top of this. Bug: 47759 Change-Id: I239eef5124e29369ea9c5d8c0f49b2f6a61bc053
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel LanguageAnnotation class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel language annotation.
|
|
*
|
|
* Represents `<span>` tags with 'lang' and 'dir' properties.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.Annotation
|
|
* @constructor
|
|
* @param {Object} element
|
|
*/
|
|
ve.dm.LanguageAnnotation = function VeDmLanguageAnnotation( element ) {
|
|
// Parent constructor
|
|
ve.dm.Annotation.call( this, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.LanguageAnnotation, ve.dm.Annotation );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.LanguageAnnotation.static.name = 'language';
|
|
|
|
ve.dm.LanguageAnnotation.static.matchTagNames = [ 'span' ];
|
|
|
|
ve.dm.LanguageAnnotation.static.matchFunction = function( domElement ) {
|
|
return ( domElement.getAttribute( 'lang' ) || domElement.getAttribute( 'dir' ) );
|
|
};
|
|
|
|
ve.dm.LanguageAnnotation.static.applyToAppendedContent = false;
|
|
|
|
ve.dm.LanguageAnnotation.static.toDataElement = function ( domElements ) {
|
|
return {
|
|
'type': 'language',
|
|
'attributes': {
|
|
'lang': domElements[0].getAttribute( 'lang' ),
|
|
'dir': domElements[0].getAttribute( 'dir' )
|
|
}
|
|
};
|
|
};
|
|
|
|
ve.dm.LanguageAnnotation.static.toDomElements = function ( dataElement, doc ) {
|
|
var domElement = doc.createElement( 'span' );
|
|
if ( dataElement.attributes.lang ) {
|
|
domElement.setAttribute( 'lang', dataElement.attributes.lang );
|
|
}
|
|
if ( dataElement.attributes.dir ) {
|
|
domElement.setAttribute( 'dir', dataElement.attributes.dir );
|
|
}
|
|
|
|
return [ domElement ];
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
// TODO:
|
|
// Set up a proper comparable method for lang and dir attributes
|
|
// ve.dm.LanguageAnnotation.prototype.getComparableObject
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.LanguageAnnotation );
|