mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
2a40b3b27b
Parameters are ordered using 2 consecutive buckets, the intersection of paramOrder and parameters in use ordered using paramOrder followed by the remaining parameters in alpha-numeric order. A patch to TemplateData was needed to make this work, but we won't get a crash without it, just no order specification: Ic5b42c4189868412138680654c499b6c8bc8f47e The paramOrder property needs some help still, as it currently requires being either omitted or containing an exhaustive list of all known parameters. It should backfill unmentioned params in JSON specified order instead. Bug: 51930 Change-Id: Ic3eb665389380c8e3dd6562b059c2f6655a22588
324 lines
8 KiB
JavaScript
324 lines
8 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWTemplateSpecModel class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*global mw */
|
|
|
|
/**
|
|
* MediaWiki template specification.
|
|
*
|
|
* See https://raw.github.com/wikimedia/mediawiki-extensions-TemplateData/master/spec.templatedata.json
|
|
* for the latest version of the TemplateData specification.
|
|
*
|
|
* @class
|
|
*
|
|
* @constructor
|
|
* @param {ve.dm.MWTemplateModel} template Template
|
|
*/
|
|
ve.dm.MWTemplateSpecModel = function VeDmMWTemplateSpecModel( template ) {
|
|
// Properties
|
|
this.template = template;
|
|
this.description = null;
|
|
this.params = {};
|
|
this.paramOrder = [];
|
|
this.sets = [];
|
|
|
|
// Initialization
|
|
this.fill();
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Extend with template spec data.
|
|
*
|
|
* Template spec data is available from the TemplateData extension's API. Extension is passive so
|
|
* any filled in values are not overwritten unless new values are available. This prevents changes
|
|
* in the API or fill methods from causing issues.
|
|
*
|
|
* @method
|
|
* @param {Object} data Template spec data
|
|
* @param {string} [data.description] Template description
|
|
* @param {string[]} [data.paramOrder] Canonically ordered parameter names
|
|
* @param {Object} [data.params] Template param specs keyed by param name
|
|
* @param {string[][]} [data.sets] Lists of param sets
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.extend = function ( data ) {
|
|
var key, param, i, len;
|
|
|
|
if ( data.description !== null ) {
|
|
this.description = data.description;
|
|
}
|
|
if ( Array.isArray( data.paramOrder ) ) {
|
|
this.paramOrder = data.paramOrder.slice();
|
|
}
|
|
if ( ve.isPlainObject( data.params ) ) {
|
|
for ( key in data.params ) {
|
|
// Pre-fill spec
|
|
if ( !this.params[key] ) {
|
|
this.params[key] = this.getDefaultParameterSpec( key );
|
|
}
|
|
param = this.params[key];
|
|
// Extend existing spec
|
|
ve.extendObject( true, this.params[key], data.params[key] );
|
|
// Add aliased references
|
|
if ( param.aliases.length ) {
|
|
for ( i = 0, len = param.aliases.length; i < len; i++ ) {
|
|
this.params[ param.aliases[i] ] = param;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.sets = data.sets;
|
|
};
|
|
|
|
/**
|
|
* Fill from template.
|
|
*
|
|
* Filling is passive, so existing information is never overwitten. The spec should be re-filled
|
|
* after a parameter is added to ensure it's still complete, and this is safe because existing data
|
|
* is never overwritten.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.fill = function () {
|
|
var key;
|
|
|
|
for ( key in this.template.getParameters() ) {
|
|
if ( !this.params[key] ) {
|
|
this.params[key] = this.getDefaultParameterSpec( key );
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get the default spec for a parameter.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {Object} Parameter spec
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getDefaultParameterSpec = function ( name ) {
|
|
return {
|
|
'label': name,
|
|
'description': null,
|
|
'default': '',
|
|
'type': 'string',
|
|
'aliases': [],
|
|
'name': name,
|
|
'required': false,
|
|
'deprecated': false
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Get template label.
|
|
*
|
|
* @method
|
|
* @returns {string} Template label
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getLabel = function () {
|
|
var titleObj,
|
|
title = this.template.getTitle(),
|
|
target = this.template.getTarget();
|
|
|
|
if ( title ) {
|
|
try {
|
|
// Normalize and remove namespace prefix if in the Template: namespace
|
|
titleObj = new mw.Title( title );
|
|
if ( titleObj.getNamespaceId() === 10 ) {
|
|
// Template namespace, remove namespace prefix
|
|
title = titleObj.getNameText();
|
|
} else {
|
|
// Other namespace, already has a prefix
|
|
title = titleObj.getPrefixedText();
|
|
}
|
|
} catch ( e ) { }
|
|
}
|
|
|
|
return title || target.wt;
|
|
};
|
|
|
|
/**
|
|
* Get template description.
|
|
*
|
|
* @method
|
|
* @param {string} [lang] Language to get description in
|
|
* @returns {string|null} Template description or null if not available
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getDescription = function ( lang ) {
|
|
var value = this.description;
|
|
return ve.isPlainObject( value ) ? OO.ui.getLocalValue( value, lang ) : value;
|
|
};
|
|
|
|
/**
|
|
* Get parameter order.
|
|
*
|
|
* @method
|
|
* @returns {string[]} Canonically ordered parameter names
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterOrder = function () {
|
|
return this.paramOrder.slice();
|
|
};
|
|
|
|
/**
|
|
* Check if a parameter name is known.
|
|
*
|
|
* Could be a primary name or alias.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {boolean} Parameter name is known
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.isParameterKnown = function ( name ) {
|
|
return this.params[name] !== undefined;
|
|
};
|
|
|
|
/**
|
|
* Check if a parameter name is an alias.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {boolean} Parameter name is an alias
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.isParameterAlias = function ( name ) {
|
|
return this.params[name] !== undefined && this.params[name].name !== name;
|
|
};
|
|
|
|
/**
|
|
* Get a parameter label.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @param {string} [lang] Language to get label in
|
|
* @returns {string} Parameter label
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterLabel = function ( name, lang ) {
|
|
var value = this.params[name].label;
|
|
return ve.isPlainObject( value ) ? OO.ui.getLocalValue( value, lang ) : value;
|
|
};
|
|
|
|
/**
|
|
* Get a parameter description.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @param {string} [lang] Language to get description
|
|
* @returns {string|null} Parameter description
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterDescription = function ( name, lang ) {
|
|
var value = this.params[name].description;
|
|
return ve.isPlainObject( value ) ? OO.ui.getLocalValue( value, lang ) : value;
|
|
};
|
|
|
|
/**
|
|
* Get a parameter value.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {string} Default parameter value
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterDefaultValue = function ( name ) {
|
|
return this.params[name]['default'];
|
|
};
|
|
|
|
/**
|
|
* Get a parameter type.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {string} Parameter type
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterType = function ( name ) {
|
|
return this.params[name].type;
|
|
};
|
|
|
|
/**
|
|
* Get parameter aliases.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {string[]} Alternate parameter names
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterAliases = function ( name ) {
|
|
return this.params[name].aliases;
|
|
};
|
|
|
|
/**
|
|
* Get the parameter name, resolving an alias.
|
|
*
|
|
* If a parameter is not an alias of another, the output will be the same as the input.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter alias
|
|
* @returns {string} Parameter name
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterName = function ( name ) {
|
|
return this.params[name].name;
|
|
};
|
|
|
|
/**
|
|
* Check if parameter is required.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {boolean} Parameter is required
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.isParameterRequired = function ( name ) {
|
|
return !!this.params[name].required;
|
|
};
|
|
|
|
/**
|
|
* Check if parameter is deprecated.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {boolean} Parameter is deprecated
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.isParameterDeprecated = function ( name ) {
|
|
return this.params[name].deprecated !== false;
|
|
};
|
|
|
|
/**
|
|
* Get parameter deprecation description.
|
|
*
|
|
* @method
|
|
* @param {string} name Parameter name
|
|
* @returns {string} Explaining of why parameter is deprecated, empty if parameter is not deprecated
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterDeprecationDescription = function ( name ) {
|
|
return this.params[name].deprecated || '';
|
|
};
|
|
|
|
/**
|
|
* Get all primary parameter names.
|
|
*
|
|
* @method
|
|
* @returns {string[]} Parameter names
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterNames = function () {
|
|
var name,
|
|
names = [];
|
|
|
|
for ( name in this.params ) {
|
|
if ( this.params[name].name === name ) {
|
|
names.push( name );
|
|
}
|
|
}
|
|
|
|
return names;
|
|
};
|
|
|
|
/**
|
|
* Get parameter sets.
|
|
*
|
|
* @method
|
|
* @returns {Object[]} Lists of parameter set descriptors
|
|
*/
|
|
ve.dm.MWTemplateSpecModel.prototype.getParameterSets = function () {
|
|
return this.sets;
|
|
};
|