Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve validation framework to align with system validation rules #7977

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/silver-chairs-bathe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/identity-apps-core": patch
---

Improve username validation
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export const getRuleLabel = (rule) => {
const minLen = getConditionValue(rule, "min.length");
const maxLen = getConditionValue(rule, "max.length");
const confirmPassword = getConditionValue(rule, "confirm.password");
const isValidatorEnabled = getConditionValue(rule, "enable.validator");

switch (rule.name) {
case "LengthValidator":
Expand Down Expand Up @@ -106,13 +107,26 @@ export const getRuleLabel = (rule) => {
return "Must contain special character(s).";

case "ConfirmPasswordValidator":

if (confirmPassword) {
return "Must match with the password.";
}

return null;

case "EmailFormatValidator":
if (isValidatorEnabled) {
return "Must use a valid email address.";
}

return null;

case "AlphanumericValidator":
if (isValidatorEnabled) {
return "Must contain only alphanumeric characters.";
}

return null;

default:
return null;
}
Expand Down Expand Up @@ -161,6 +175,11 @@ const ValidationCriteria = ({ validationConfig, errors = [], value = "" }) => {
);
};

PolicyValidationStatus.propTypes = {
isValid: PropTypes.boolean,
value: PropTypes.string
};

ValidationCriteria.propTypes = {
errors: PropTypes.array,
validationConfig: PropTypes.array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ValidationError = ({ name, errors }) => {
const formError = errors.formStateErrors.length > 0 &&
errors.formStateErrors.filter(error => error.label === name);
const fieldError = formError[0] && formError[0].error ||
(errors.fieldErrors.length > 0 ? errors.fieldErrors[0] : null);
(errors.fieldErrors.length > 0 ? errors.fieldErrors[errors.fieldErrors.length - 1] : null);

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/**
* Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
*
* WSO2 LLC. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

export const DEFAULT_EMAIL_REGEX = "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$";
export const DEFAULT_ALPHANUMERIC_REGEX = "^[a-zA-Z0-9]+$";
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
*/

import { useCallback, useState } from "react";
import { DEFAULT_ALPHANUMERIC_REGEX, DEFAULT_EMAIL_REGEX } from "../constants/validation-constants";
import { validateWithRegex } from "../utils/validation-utils";

/**
* A custom hook for validating form fields using a flexible “rules” approach.
Expand Down Expand Up @@ -173,6 +175,22 @@ const useFieldValidation = (validationConfig) => {
break;
}

case "EmailFormatValidator": {
if (!validateWithRegex(value, DEFAULT_EMAIL_REGEX)) {
return "Must use a valid email address.";
}

break;
}

case "AlphanumericValidator": {
if (!validateWithRegex(value, DEFAULT_ALPHANUMERIC_REGEX)) {
return "Must contain only alphanumeric characters.";
}

break;
}

default:
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@

export const isRequired = value => value !== undefined && value !== null && value.trim() !== "";

export const validateEmail = (email, emailRegex) => {
if (!email) {
export const validateWithRegex = (value, regex) => {
if (!value || !regex) {

return false;
}

return emailRegex.test(email);
const pattern = new RegExp(regex);

return pattern.test(value);
};
Loading