2022-11-27 03:13:27 +00:00
|
|
|
<#macro userProfileFormFields>
|
|
|
|
<#assign currentGroup="">
|
|
|
|
|
|
|
|
<#list profile.attributes as attribute>
|
|
|
|
|
2024-11-13 16:06:04 +00:00
|
|
|
<#assign group = (attribute.group)!"">
|
|
|
|
<#if group != currentGroup>
|
|
|
|
<#assign currentGroup=group>
|
|
|
|
<#if currentGroup != "">
|
|
|
|
<div class="${properties.kcFormGroupClass!}"
|
|
|
|
<#list group.html5DataAnnotations as key, value>
|
|
|
|
data-${key}="${value}"
|
|
|
|
</#list>
|
|
|
|
>
|
2022-11-27 03:13:27 +00:00
|
|
|
|
2024-11-13 16:06:04 +00:00
|
|
|
<#assign groupDisplayHeader=group.displayHeader!"">
|
2022-11-27 03:13:27 +00:00
|
|
|
<#if groupDisplayHeader != "">
|
2024-11-13 16:06:04 +00:00
|
|
|
<#assign groupHeaderText=advancedMsg(groupDisplayHeader)!group>
|
2022-11-27 03:13:27 +00:00
|
|
|
<#else>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#assign groupHeaderText=group.name!"">
|
2022-11-27 03:13:27 +00:00
|
|
|
</#if>
|
|
|
|
<div class="${properties.kcContentWrapperClass!}">
|
2024-11-13 16:06:04 +00:00
|
|
|
<label id="header-${attribute.group.name}" class="${kcFormGroupHeader!}">${groupHeaderText}</label>
|
2022-11-27 03:13:27 +00:00
|
|
|
</div>
|
|
|
|
|
2024-11-13 16:06:04 +00:00
|
|
|
<#assign groupDisplayDescription=group.displayDescription!"">
|
2022-11-27 03:13:27 +00:00
|
|
|
<#if groupDisplayDescription != "">
|
2024-11-13 16:06:04 +00:00
|
|
|
<#assign groupDescriptionText=advancedMsg(groupDisplayDescription)!"">
|
2022-11-27 03:13:27 +00:00
|
|
|
<div class="${properties.kcLabelWrapperClass!}">
|
2024-11-13 16:06:04 +00:00
|
|
|
<label id="description-${group.name}" class="${properties.kcLabelClass!}">${groupDescriptionText}</label>
|
2022-11-27 03:13:27 +00:00
|
|
|
</div>
|
|
|
|
</#if>
|
|
|
|
</div>
|
|
|
|
</#if>
|
|
|
|
</#if>
|
|
|
|
|
|
|
|
<#nested "beforeField" attribute>
|
|
|
|
<div class="${properties.kcFormGroupClass!}">
|
|
|
|
<div class="${properties.kcLabelWrapperClass!}">
|
|
|
|
<label for="${attribute.name}" class="${properties.kcLabelClass!}">${advancedMsg(attribute.displayName!'')}</label>
|
|
|
|
<#if attribute.required>*</#if>
|
|
|
|
</div>
|
|
|
|
<div class="${properties.kcInputWrapperClass!}">
|
|
|
|
<#if attribute.annotations.inputHelperTextBefore??>
|
|
|
|
<div class="${properties.kcInputHelperTextBeforeClass!}" id="form-help-text-before-${attribute.name}" aria-live="polite">${kcSanitize(advancedMsg(attribute.annotations.inputHelperTextBefore))?no_esc}</div>
|
|
|
|
</#if>
|
|
|
|
<@inputFieldByType attribute=attribute/>
|
|
|
|
<#if messagesPerField.existsError('${attribute.name}')>
|
|
|
|
<span id="input-error-${attribute.name}" class="${properties.kcInputErrorMessageClass!}" aria-live="polite">
|
|
|
|
${kcSanitize(messagesPerField.get('${attribute.name}'))?no_esc}
|
|
|
|
</span>
|
|
|
|
</#if>
|
|
|
|
<#if attribute.annotations.inputHelperTextAfter??>
|
|
|
|
<div class="${properties.kcInputHelperTextAfterClass!}" id="form-help-text-after-${attribute.name}" aria-live="polite">${kcSanitize(advancedMsg(attribute.annotations.inputHelperTextAfter))?no_esc}</div>
|
|
|
|
</#if>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<#nested "afterField" attribute>
|
|
|
|
</#list>
|
2024-11-13 16:06:04 +00:00
|
|
|
|
|
|
|
<#list profile.html5DataAnnotations?keys as key>
|
|
|
|
<script type="module" src="${url.resourcesPath}/js/${key}.js"></script>
|
|
|
|
</#list>
|
2022-11-27 03:13:27 +00:00
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro inputFieldByType attribute>
|
|
|
|
<#switch attribute.annotations.inputType!''>
|
|
|
|
<#case 'textarea'>
|
|
|
|
<@textareaTag attribute=attribute/>
|
|
|
|
<#break>
|
|
|
|
<#case 'select'>
|
|
|
|
<#case 'multiselect'>
|
|
|
|
<@selectTag attribute=attribute/>
|
|
|
|
<#break>
|
|
|
|
<#case 'select-radiobuttons'>
|
|
|
|
<#case 'multiselect-checkboxes'>
|
|
|
|
<@inputTagSelects attribute=attribute/>
|
|
|
|
<#break>
|
|
|
|
<#default>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#if attribute.multivalued && attribute.values?has_content>
|
|
|
|
<#list attribute.values as value>
|
|
|
|
<@inputTag attribute=attribute value=value!''/>
|
|
|
|
</#list>
|
|
|
|
<#else>
|
|
|
|
<@inputTag attribute=attribute value=attribute.value!''/>
|
|
|
|
</#if>
|
2022-11-27 03:13:27 +00:00
|
|
|
</#switch>
|
|
|
|
</#macro>
|
|
|
|
|
2024-11-13 16:06:04 +00:00
|
|
|
<#macro inputTag attribute value>
|
|
|
|
<input type="<@inputTagType attribute=attribute/>" id="${attribute.name}" name="${attribute.name}" value="${(value!'')}" class="${properties.kcInputClass!}"
|
2022-11-27 03:13:27 +00:00
|
|
|
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
|
|
|
|
<#if attribute.readOnly>disabled</#if>
|
|
|
|
<#if attribute.autocomplete??>autocomplete="${attribute.autocomplete}"</#if>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#if attribute.annotations.inputTypePlaceholder??>placeholder="${advancedMsg(attribute.annotations.inputTypePlaceholder)}"</#if>
|
2022-11-27 03:13:27 +00:00
|
|
|
<#if attribute.annotations.inputTypePattern??>pattern="${attribute.annotations.inputTypePattern}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeSize??>size="${attribute.annotations.inputTypeSize}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeMaxlength??>maxlength="${attribute.annotations.inputTypeMaxlength}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeMinlength??>minlength="${attribute.annotations.inputTypeMinlength}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeMax??>max="${attribute.annotations.inputTypeMax}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeMin??>min="${attribute.annotations.inputTypeMin}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeStep??>step="${attribute.annotations.inputTypeStep}"</#if>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#if attribute.annotations.inputTypeStep??>step="${attribute.annotations.inputTypeStep}"</#if>
|
|
|
|
<#list attribute.html5DataAnnotations as key, value>
|
|
|
|
data-${key}="${value}"
|
|
|
|
</#list>
|
2022-11-27 03:13:27 +00:00
|
|
|
/>
|
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro inputTagType attribute>
|
|
|
|
<#compress>
|
|
|
|
<#if attribute.annotations.inputType??>
|
|
|
|
<#if attribute.annotations.inputType?starts_with("html5-")>
|
|
|
|
${attribute.annotations.inputType[6..]}
|
|
|
|
<#else>
|
|
|
|
${attribute.annotations.inputType}
|
|
|
|
</#if>
|
|
|
|
<#else>
|
|
|
|
text
|
|
|
|
</#if>
|
|
|
|
</#compress>
|
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro textareaTag attribute>
|
|
|
|
<textarea id="${attribute.name}" name="${attribute.name}" class="${properties.kcInputClass!}"
|
|
|
|
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
|
|
|
|
<#if attribute.readOnly>disabled</#if>
|
|
|
|
<#if attribute.annotations.inputTypeCols??>cols="${attribute.annotations.inputTypeCols}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeRows??>rows="${attribute.annotations.inputTypeRows}"</#if>
|
|
|
|
<#if attribute.annotations.inputTypeMaxlength??>maxlength="${attribute.annotations.inputTypeMaxlength}"</#if>
|
|
|
|
>${(attribute.value!'')}</textarea>
|
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro selectTag attribute>
|
|
|
|
<select id="${attribute.name}" name="${attribute.name}" class="${properties.kcInputClass!}"
|
|
|
|
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
|
|
|
|
<#if attribute.readOnly>disabled</#if>
|
|
|
|
<#if attribute.annotations.inputType=='multiselect'>multiple</#if>
|
|
|
|
<#if attribute.annotations.inputTypeSize??>size="${attribute.annotations.inputTypeSize}"</#if>
|
|
|
|
>
|
|
|
|
<#if attribute.annotations.inputType=='select'>
|
|
|
|
<option value=""></option>
|
|
|
|
</#if>
|
|
|
|
|
|
|
|
<#if attribute.annotations.inputOptionsFromValidation?? && attribute.validators[attribute.annotations.inputOptionsFromValidation]?? && attribute.validators[attribute.annotations.inputOptionsFromValidation].options??>
|
|
|
|
<#assign options=attribute.validators[attribute.annotations.inputOptionsFromValidation].options>
|
|
|
|
<#elseif attribute.validators.options?? && attribute.validators.options.options??>
|
|
|
|
<#assign options=attribute.validators.options.options>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#else>
|
|
|
|
<#assign options=[]>
|
2022-11-27 03:13:27 +00:00
|
|
|
</#if>
|
|
|
|
|
2024-11-13 16:06:04 +00:00
|
|
|
<#list options as option>
|
2022-11-27 03:13:27 +00:00
|
|
|
<option value="${option}" <#if attribute.values?seq_contains(option)>selected</#if>><@selectOptionLabelText attribute=attribute option=option/></option>
|
2024-11-13 16:06:04 +00:00
|
|
|
</#list>
|
|
|
|
|
2022-11-27 03:13:27 +00:00
|
|
|
</select>
|
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro inputTagSelects attribute>
|
|
|
|
<#if attribute.annotations.inputType=='select-radiobuttons'>
|
|
|
|
<#assign inputType='radio'>
|
|
|
|
<#assign classDiv=properties.kcInputClassRadio!>
|
|
|
|
<#assign classInput=properties.kcInputClassRadioInput!>
|
|
|
|
<#assign classLabel=properties.kcInputClassRadioLabel!>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#else>
|
2022-11-27 03:13:27 +00:00
|
|
|
<#assign inputType='checkbox'>
|
|
|
|
<#assign classDiv=properties.kcInputClassCheckbox!>
|
|
|
|
<#assign classInput=properties.kcInputClassCheckboxInput!>
|
|
|
|
<#assign classLabel=properties.kcInputClassCheckboxLabel!>
|
|
|
|
</#if>
|
2024-11-13 16:06:04 +00:00
|
|
|
|
2022-11-27 03:13:27 +00:00
|
|
|
<#if attribute.annotations.inputOptionsFromValidation?? && attribute.validators[attribute.annotations.inputOptionsFromValidation]?? && attribute.validators[attribute.annotations.inputOptionsFromValidation].options??>
|
|
|
|
<#assign options=attribute.validators[attribute.annotations.inputOptionsFromValidation].options>
|
|
|
|
<#elseif attribute.validators.options?? && attribute.validators.options.options??>
|
|
|
|
<#assign options=attribute.validators.options.options>
|
2024-11-13 16:06:04 +00:00
|
|
|
<#else>
|
|
|
|
<#assign options=[]>
|
2022-11-27 03:13:27 +00:00
|
|
|
</#if>
|
|
|
|
|
2024-11-13 16:06:04 +00:00
|
|
|
<#list options as option>
|
2022-11-27 03:13:27 +00:00
|
|
|
<div class="${classDiv}">
|
|
|
|
<input type="${inputType}" id="${attribute.name}-${option}" name="${attribute.name}" value="${option}" class="${classInput}"
|
|
|
|
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
|
|
|
|
<#if attribute.readOnly>disabled</#if>
|
|
|
|
<#if attribute.values?seq_contains(option)>checked</#if>
|
|
|
|
/>
|
|
|
|
<label for="${attribute.name}-${option}" class="${classLabel}<#if attribute.readOnly> ${properties.kcInputClassRadioCheckboxLabelDisabled!}</#if>"><@selectOptionLabelText attribute=attribute option=option/></label>
|
|
|
|
</div>
|
2024-11-13 16:06:04 +00:00
|
|
|
</#list>
|
2022-11-27 03:13:27 +00:00
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro selectOptionLabelText attribute option>
|
|
|
|
<#compress>
|
|
|
|
<#if attribute.annotations.inputOptionLabels??>
|
|
|
|
${advancedMsg(attribute.annotations.inputOptionLabels[option]!option)}
|
|
|
|
<#else>
|
|
|
|
<#if attribute.annotations.inputOptionLabelsI18nPrefix??>
|
|
|
|
${msg(attribute.annotations.inputOptionLabelsI18nPrefix + '.' + option)}
|
|
|
|
<#else>
|
|
|
|
${option}
|
|
|
|
</#if>
|
|
|
|
</#if>
|
|
|
|
</#compress>
|
2024-11-13 16:06:04 +00:00
|
|
|
</#macro>
|