Refactor (avoid using else) changelog ignore

This commit is contained in:
garronej 2022-07-03 15:58:00 +02:00
parent 30315027c1
commit 09d4ba2bb0

View File

@ -30,7 +30,9 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
</#attempt>
"printIfExists": function (fieldName, x) {
<#if messagesPerField?? >
<#if !messagesPerField?? >
return undefined;
</#if>
<#list fieldNames as fieldName>
if(fieldName === "${fieldName}" ){
<#attempt>
@ -40,12 +42,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
}
</#list>
throw new Error("There is no " + fieldName + " field");
<#else>
return undefined;
</#if>
},
"existsError": function (fieldName) {
<#if messagesPerField?? >
<#if !messagesPerField?? >
return false;
</#if>
<#list fieldNames as fieldName>
if(fieldName === "${fieldName}" ){
<#attempt>
@ -55,12 +56,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
}
</#list>
throw new Error("There is no " + fieldName + " field");
<#else>
return false;
</#if>
},
"get": function (fieldName) {
<#if messagesPerField?? >
<#if !messagesPerField?? >
return '';
</#if>
<#list fieldNames as fieldName>
if(fieldName === "${fieldName}" ){
<#attempt>
@ -72,12 +72,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
}
</#list>
throw new Error("There is no " + fieldName + " field");
<#else>
return '';
</#if>
},
"exists": function (fieldName) {
<#if messagesPerField?? >
<#if !messagesPerField?? >
return false;
</#if>
<#list fieldNames as fieldName>
if(fieldName === "${fieldName}" ){
<#attempt>
@ -87,9 +86,6 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
}
</#list>
throw new Error("There is no " + fieldName + " field");
<#else>
return false;
</#if>
}
};