2013-06-11 19:16:04 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWTransclusionPartModel class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MediaWiki transclusion part model.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @mixins ve.EventEmitter
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.dm.MWTransclusionModel} transclusion Transclusion
|
|
|
|
*/
|
|
|
|
ve.dm.MWTransclusionPartModel = function VeDmMWTransclusionPartModel( transclusion ) {
|
|
|
|
// Mixin constructors
|
|
|
|
ve.EventEmitter.call( this );
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.transclusion = transclusion;
|
2013-06-18 19:39:21 +00:00
|
|
|
this.id = 'part_' + this.transclusion.getUniquePartId();
|
2013-06-11 19:16:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.mixinClass( ve.dm.MWTransclusionPartModel, ve.EventEmitter );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get transclusion part is in.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @returns {ve.dm.MWTransclusionModel} Transclusion
|
|
|
|
*/
|
|
|
|
ve.dm.MWTransclusionPartModel.prototype.getTransclusion = function () {
|
|
|
|
return this.transclusion;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a unique part ID within the transclusion.
|
|
|
|
*
|
2013-06-17 10:50:24 +00:00
|
|
|
* @returns {string} Unique ID.
|
2013-06-11 19:16:04 +00:00
|
|
|
*/
|
|
|
|
ve.dm.MWTransclusionPartModel.prototype.getId = function () {
|
|
|
|
return this.id;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove part from transclusion.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.dm.MWTransclusionPartModel.prototype.remove = function () {
|
|
|
|
this.transclusion.removePart( this );
|
|
|
|
};
|