Merge "Allow adding a new parameter again"

This commit is contained in:
jenkins-bot 2015-02-19 02:10:11 +00:00 committed by Gerrit Code Review
commit ca94adc3a9
2 changed files with 12 additions and 7 deletions

View file

@ -823,7 +823,7 @@ mw.TemplateData.Model.prototype.getParams = function () {
};
mw.TemplateData.Model.prototype.isParamDeleted = function ( key ) {
return this.params[key].deleted === true;
return this.params[key] && this.params[key].deleted === true;
};
mw.TemplateData.Model.prototype.isParamExists = function ( key ) {

View file

@ -224,7 +224,15 @@ mw.TemplateData.Dialog.prototype.onModelChangeDescription = function ( descripti
};
mw.TemplateData.Dialog.prototype.onAddParamInputChange = function ( value ) {
if ( this.model.isParamExists( value ) && !this.model.isParamDeleted( value ) ) {
var allProps = mw.TemplateData.Model.static.getAllProperties( true );
if (
value.match( allProps.name.restrict ) ||
(
this.model.isParamExists( value ) &&
!this.model.isParamDeleted( value )
)
) {
// Disable the add button
this.addParamButton.setDisabled( true );
} else {
@ -355,14 +363,11 @@ mw.TemplateData.Dialog.prototype.onAddParamButtonClick = function () {
allProps = mw.TemplateData.Model.static.getAllProperties( true );
// Validate parameter
if (
!newParamKey.match( allProps.name.restrict ) &&
this.model.isParamExists( newParamKey )
) {
if ( !newParamKey.match( allProps.name.restrict ) ) {
if ( this.model.isParamDeleted( newParamKey ) ) {
// Empty param
this.model.emptyParamData( newParamKey );
} else {
} else if ( !this.model.isParamExists( newParamKey ) ) {
// Add to model
if ( this.model.addParam( newParamKey ) ) {
// Add parameter to list