mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWTocItemWidget.js
James D. Forrester f2e22babaa Update VE core submodule to master (1f82a47)
New changes:
5d063a2 Don't use three different coordinate systems in getSelectionRect()
feeb1ae Only focus the paste target if focusedNode has changed
2c1bb97 Update OOjs UI to v0.1.0-pre (4cef83f702)

Local changes:
* Update references to renamed classes
* Update calling patterns element mixins

Change-Id: I330c0e308807597dec31dad8dbf713eb29fdc290
2014-09-03 17:20:09 -07:00

89 lines
2.3 KiB
JavaScript

/*!
* VisualEditor UserInterface MWTocItemWidget class.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Creates an item an item for the MWTocWidget
*
* @class
* @extends OO.ui.Widget
* @mixins OO.ui.GroupElement
*
* @constructor
* @param {Object} config TOC Item configuration
* @cfg {ve.ce.Node} node ContentEditable node
* @cfg {ve.ui.MWTocItemWidget} parent Parent toc item
* @cfg {string} sectionPrefix TOC item section number
* @cfg {number} tocLevel Depth level of the TOC item
* @cfg {number} tocIndex Running count of TOC items
*
*/
ve.ui.MWTocItemWidget = function VeCeMWTocItemWidget( config ) {
// Parent constructor
OO.ui.Widget.call( this, config );
// Mixin Constructor
OO.ui.GroupElement.call( this, $.extend( {}, config, { $group: this.$( '<ul>' ) } ) );
config = config || {};
// Properties
this.node = config.node || null;
this.parent = config.parent;
this.sectionPrefix = config.sectionPrefix;
this.tocLevel = config.tocLevel;
this.tocIndex = config.tocIndex;
// Allows toc items to be optionally associated to a node.
// For the case of the zero level parent item.
if ( this.node ) {
this.$tocNumber = this.$( '<span>' ).addClass( 'tocnumber' )
.text( this.sectionPrefix );
this.$tocText = this.$( '<span>' ).addClass( 'toctext' )
.text( this.node.$element.text() );
this.$element
.addClass( 'toclevel-' + this.tocLevel )
.addClass( 'tocsection-' + this.tocIndex )
.append( this.$( '<a>' ).append( this.$tocNumber, this.$tocText ) );
// Monitor node events
this.node.model.connect( this, { update: 'onUpdate' } );
}
this.$element.append( this.$group );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWTocItemWidget, OO.ui.Widget );
OO.mixinClass( ve.ui.MWTocItemWidget, OO.ui.GroupElement );
/* Static Properties */
ve.ui.MWTocItemWidget.static.tagName = 'li';
/* Methods */
/**
* Updates the text of the toc item
*
*/
ve.ui.MWTocItemWidget.prototype.onUpdate = function () {
// Timeout needed to let the dom element actually update
setTimeout( function () {
this.$tocText.text( this.node.$element.text() );
}.bind( this ), 0 );
};
/**
* Removes this toc item from its parent
*
*/
ve.ui.MWTocItemWidget.prototype.remove = function () {
this.node.model.disconnect( this );
this.parent.removeItems( [this] );
};