2012-05-01 00:36:22 +00:00
|
|
|
/**
|
|
|
|
* ContentEditable node for a list.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @constructor
|
|
|
|
* @extends {ve.ce.BranchNode}
|
|
|
|
* @param model {ve.dm.ListNode} Model to observe
|
|
|
|
*/
|
|
|
|
ve.ce.ListNode = function( model ) {
|
|
|
|
// Inheritance
|
2012-05-01 02:38:42 +00:00
|
|
|
ve.ce.BranchNode.call( this, model, ve.ce.ListNode.getDomElement( model ) );
|
2012-05-02 18:29:44 +00:00
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.currentStyle = model.getAttribute( 'style' );
|
|
|
|
|
|
|
|
// Events
|
2012-05-02 20:58:50 +00:00
|
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
2012-05-01 00:36:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Static Members */
|
|
|
|
|
|
|
|
/**
|
2012-05-02 18:29:44 +00:00
|
|
|
* Node rules.
|
|
|
|
*
|
2012-05-01 00:36:22 +00:00
|
|
|
* @see ve.ce.NodeFactory
|
2012-05-02 18:29:44 +00:00
|
|
|
* @static
|
|
|
|
* @member
|
2012-05-01 00:36:22 +00:00
|
|
|
*/
|
|
|
|
ve.ce.ListNode.rules = {
|
|
|
|
'canHaveChildren': true,
|
|
|
|
'canHaveGrandchildren': true,
|
|
|
|
'canBeSplit': false
|
|
|
|
};
|
|
|
|
|
2012-05-02 18:29:44 +00:00
|
|
|
/**
|
|
|
|
* Mapping of list style values and DOM wrapper element types.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @member
|
|
|
|
*/
|
|
|
|
ve.ce.ListNode.domWrapperElementTypes = {
|
2012-05-01 02:38:42 +00:00
|
|
|
'bullet': 'ul',
|
|
|
|
'number': 'ol',
|
|
|
|
'definition': 'dl'
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Static Methods */
|
|
|
|
|
2012-05-02 18:29:44 +00:00
|
|
|
/**
|
|
|
|
* Gets an appropriate DOM wrapper for the model.
|
|
|
|
*
|
|
|
|
* This method is static because it is used before the node is fully constructed. Before all parent
|
|
|
|
* constructors are called this.model may not be ready to be used.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @method
|
|
|
|
* @param {ve.dm.ListNode} model Model to create DOM wrapper for
|
|
|
|
* @returns {jQuery} Selection containing DOM wrapper
|
|
|
|
*/
|
|
|
|
ve.ce.ListNode.getDomWrapper = function( model ) {
|
|
|
|
var style = model.getAttribute( 'style' ),
|
|
|
|
type = ve.ce.ListNode.domWrapperElementTypes[style];
|
2012-05-01 02:38:42 +00:00
|
|
|
if ( type === undefined ) {
|
|
|
|
throw 'Invalid style attribute in list node model: ' + style;
|
|
|
|
}
|
|
|
|
return $( '<' + type + '></' + type + '>' );
|
|
|
|
};
|
|
|
|
|
2012-05-02 18:29:44 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responds to model update events.
|
|
|
|
*
|
|
|
|
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ce.ListNode.prototype.onUpdate = function() {
|
|
|
|
var style = this.model.getAttribute( 'style' );
|
|
|
|
if ( style !== this.currentStyle ) {
|
|
|
|
this.currentStyle = style;
|
|
|
|
this.replaceDomWrapper( ve.ce.ListNode.getDomWrapper( this.model ) );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-05-01 00:36:22 +00:00
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ce.factory.register( 'list', ve.ce.ListNode );
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.ce.ListNode, ve.ce.BranchNode );
|