mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.HeadingNode.js

66 lines
1.3 KiB
JavaScript
Raw Normal View History

2012-03-08 12:27:02 +00:00
/**
* Creates an ve.ce.HeadingNode object.
*
* @class
* @constructor
* @extends {ve.ce.LeafNode}
* @param {ve.dm.HeadingNode} model Heading model to view
*/
ve.ce.HeadingNode = function( model ) {
// Inheritance
var level = model.getElementAttribute( 'level' ),
type = ve.ce.HeadingNode.domNodeTypes[level];
if ( type === undefined ) {
throw 'Invalid level attribute for heading node: ' + level;
}
ve.ce.LeafNode.call( this, model, $( '<' + type + '></' + type + '>' ) );
2012-03-08 12:27:02 +00:00
// Properties
this.currentLevelHash = level;
2012-03-08 12:27:02 +00:00
// DOM Changes
this.$.addClass( 've-ce-headingNode' );
2012-03-08 12:27:02 +00:00
// Events
var _this = this;
this.model.on( 'update', function() {
_this.setLevel();
2012-03-08 12:27:02 +00:00
} );
};
/* Static Members */
ve.ce.HeadingNode.domNodeTypes = {
'1': 'h1',
'2': 'h2',
'3': 'h3',
'4': 'h4',
'5': 'h5',
'6': 'h6'
};
2012-03-08 12:27:02 +00:00
/* Methods */
ve.ce.HeadingNode.prototype.setLevel = function() {
var level = this.model.getElementAttribute( 'level' ),
type = ve.ce.HeadingNode.domNodeTypes[level];
if ( type === undefined ) {
throw 'Invalid level attribute for heading node: ' + level;
}
2012-03-08 12:27:02 +00:00
if ( level !== this.currentLevelHash ) {
this.currentLevelHash = level;
this.convertDomElement( type );
2012-03-08 12:27:02 +00:00
}
};
/* Registration */
ve.ce.DocumentNode.splitRules.heading = {
'self': true,
'children': null
};
/* Inheritance */
ve.extendClass( ve.ce.HeadingNode, ve.ce.LeafNode );