mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.MWTemplateNode.js
Ed Sanders b5ead95ee8 Implement roundtrip update of template contents
Currently there is no Parsoid call for this so we're using the PHP
parser API.

Change-Id: I8bc4f96924d88de7bc67203336bf465ba91fc37b
2013-05-16 00:56:44 +01:00

148 lines
3.7 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWTemplateNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/*global mw */
/**
* 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 () {
var promise = $.Deferred();
$.ajax( {
'url': mw.util.wikiScript( 'api' ),
'data': {
'action': 'visualeditor',
'paction': 'parsefragment',
'page': mw.config.get( 'wgRelevantPageName' ),
'wikitext': this.model.getWikitext(),
'token': mw.user.tokens.get( 'editToken' ),
'format': 'json'
},
'dataType': 'json',
'type': 'POST',
// Wait up to 100 seconds before giving up
'timeout': 100000,
'cache': 'false',
'success': ve.bind( this.onParseSuccess, this, promise ),
'error': ve.bind( this.onParseError, this, promise )
} );
return promise;
};
/**
* Handle a successful response from the parser for the wikitext fragment.
*
* @param {jQuery.Promise} promise The promise object created by generateContents
* @param {Object} response Response data
*/
ve.ce.MWTemplateNode.prototype.onParseSuccess = function ( promise, response ) {
var data = response.visualeditor;
promise.resolve( $( data.content ).get() );
};
/**
* Handle an unsuccessful response from the parser for the wikitext fragment.
*
* @param {jQuery.Promise} promise The promise object created by generateContents
* @param {Object} response Response data
*/
ve.ce.MWTemplateNode.prototype.onParseError = function ( promise ) {
promise.reject();
};
/* 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 );