mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.MWTemplateNode.js
Inez Korczyński ba5c4f104d Build TemplateDialog based on parameters that are passed to template
(instead of TemplateData as before).

Change-Id: I50b0e6ef1936c4b56f40fa73bd42b03587bdf979
2013-05-15 22:47:59 +00:00

107 lines
2.5 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWTemplateNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki template node.
*
* @class
* @abstract
* @extends ve.ce.GeneratedContentNode
* @mixins ve.ce.ProtectedNode
* @mixins ve.ce.FocusableNode
*
* @constructor
* @param {ve.dm.MWTemplateNode} model Model to observe
* @param {Object} [config] Config options
*/
ve.ce.MWTemplateNode = function VeCeMWTemplateNode( model, config ) {
// Parent constructor
ve.ce.GeneratedContentNode.call( this, model, config );
// Mixin constructors
ve.ce.ProtectedNode.call( this );
ve.ce.FocusableNode.call( this );
// DOM Changes
this.$.addClass( 've-ce-MWtemplateNode' );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWTemplateNode, ve.ce.GeneratedContentNode );
ve.mixinClass( ve.ce.MWTemplateNode, ve.ce.ProtectedNode );
ve.mixinClass( ve.ce.MWTemplateNode, ve.ce.FocusableNode );
/* Static Properties */
ve.ce.MWTemplateNode.static.name = 'MWtemplate';
/* Methods */
ve.ce.MWTemplateNode.prototype.generateContents = function () {
// TODO: return $.ajax( api call to get new contents )
return new $.Deferred();
};
/* Concrete subclasses */
/**
* ContentEditable MediaWiki template block node.
*
* @class
* @extends ve.ce.MWTemplateNode
* @constructor
* @param {ve.dm.MWTemplateBlockNode} model Model to observe
*/
ve.ce.MWTemplateBlockNode = function VeCeMWTemplateBlockNode( model ) {
// Parent constructor
ve.ce.MWTemplateNode.call( this, model );
// DOM Changes
this.$.addClass( 've-ce-MWtemplateBlockNode' );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWTemplateBlockNode, ve.ce.MWTemplateNode );
/* Static Properties */
ve.ce.MWTemplateBlockNode.static.name = 'MWtemplateBlock';
/**
* ContentEditable MediaWiki template inline node.
*
* @class
* @extends ve.ce.MWTemplateNode
* @constructor
* @param {ve.dm.MWTemplateInlineNode} model Model to observe
*/
ve.ce.MWTemplateInlineNode = function VeCeMWTemplateInlineNode( model ) {
// Parent constructor
ve.ce.MWTemplateNode.call( this, model );
// DOM Changes
this.$.addClass( 've-ce-MWtemplateInlineNode' );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWTemplateInlineNode, ve.ce.MWTemplateNode );
/* Static Properties */
ve.ce.MWTemplateInlineNode.static.name = 'MWtemplateInline';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWTemplateNode );
ve.ce.nodeFactory.register( ve.ce.MWTemplateBlockNode );
ve.ce.nodeFactory.register( ve.ce.MWTemplateInlineNode );