-
Notifications
You must be signed in to change notification settings - Fork 11
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
feat: added realtime client side validation on checkout form inputs #27
Open
Ankesh2004
wants to merge
1
commit into
juspay:main
Choose a base branch
from
Ankesh2004:add-client-side-validation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,173 @@ | ||||||||||||||||||||||
window.addEventListener('load', function () { | ||||||||||||||||||||||
const form = document.querySelector('.wc-block-checkout__form'); | ||||||||||||||||||||||
const placeOrderButton = document.querySelector('.wc-block-components-checkout-place-order-button'); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!form) { | ||||||||||||||||||||||
console.error('Checkout form not found'); | ||||||||||||||||||||||
return; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
console.log('Checkout form found'); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!placeOrderButton) { | ||||||||||||||||||||||
console.error('Place Order button not found'); | ||||||||||||||||||||||
return; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Comment on lines
+5
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
console.log('Place Order button found'); | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
|
||||||||||||||||||||||
const emailField = form.querySelector('input[id="email"]'); | ||||||||||||||||||||||
const firstNameField = form.querySelector('input[id="shipping-first_name"]'); | ||||||||||||||||||||||
const lastNameField = form.querySelector('input[id="shipping-last_name"]'); | ||||||||||||||||||||||
const addressField = form.querySelector('input[id="shipping-address_1"]'); | ||||||||||||||||||||||
const cityField = form.querySelector('input[id="shipping-city"]'); | ||||||||||||||||||||||
const stateField = form.querySelector('select[id="shipping-state"]'); | ||||||||||||||||||||||
const zipCodeField = form.querySelector('input[id="shipping-postcode"]'); | ||||||||||||||||||||||
const phoneField = form.querySelector('input[id="shipping-phone"]'); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!emailField || !firstNameField || !lastNameField || !zipCodeField || !phoneField) { | ||||||||||||||||||||||
console.error('One or more form fields not found'); | ||||||||||||||||||||||
return; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Comment on lines
+26
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
|
||||||||||||||||||||||
function showError(field, message) { | ||||||||||||||||||||||
let errorElement = field.parentElement.querySelector('.wc-block-components-validation-error'); | ||||||||||||||||||||||
if (!errorElement) { | ||||||||||||||||||||||
errorElement = document.createElement('div'); | ||||||||||||||||||||||
errorElement.className = 'wc-block-components-validation-error'; | ||||||||||||||||||||||
errorElement.setAttribute('role', 'alert'); | ||||||||||||||||||||||
errorElement.style.color = 'red'; | ||||||||||||||||||||||
field.parentElement.appendChild(errorElement); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
errorElement.innerHTML = `<p>${message}</p>`; | ||||||||||||||||||||||
field.classList.add('input-error'); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
function clearError(field) { | ||||||||||||||||||||||
const errorElement = field.parentElement.querySelector('.wc-block-components-validation-error'); | ||||||||||||||||||||||
if (errorElement) { | ||||||||||||||||||||||
errorElement.remove(); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
field.classList.remove('input-error'); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
function validateEmail(email) { | ||||||||||||||||||||||
const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; | ||||||||||||||||||||||
return re.test(String(email).toLowerCase()); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
function validateZipCode(zipCode) { | ||||||||||||||||||||||
const re = /^\d{5}(-\d{4})?$/; | ||||||||||||||||||||||
return re.test(String(zipCode)); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
function validatePhone(phone) { | ||||||||||||||||||||||
if (!phone) return true; // Phone is optional | ||||||||||||||||||||||
const re = /^\d{10}$/; // Assuming a 10-digit format for US phone numbers | ||||||||||||||||||||||
return re.test(String(phone)); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
function validateNotEmpty(field, message) { | ||||||||||||||||||||||
if (field.value.trim() === '') { | ||||||||||||||||||||||
showError(field, message); | ||||||||||||||||||||||
return false; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(field); | ||||||||||||||||||||||
return true; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
// Real-time validation as user types in fields | ||||||||||||||||||||||
emailField.addEventListener('input', function () { | ||||||||||||||||||||||
if (!validateEmail(emailField.value)) { | ||||||||||||||||||||||
showError(emailField, 'Please enter a valid email address.'); | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(emailField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
firstNameField.addEventListener('input', function () { | ||||||||||||||||||||||
if (firstNameField.value.trim() === '') { | ||||||||||||||||||||||
showError(firstNameField, 'First name is required.'); | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(firstNameField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
lastNameField.addEventListener('input', function () { | ||||||||||||||||||||||
if (lastNameField.value.trim() === '') { | ||||||||||||||||||||||
showError(lastNameField, 'Last name is required.'); | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(lastNameField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
zipCodeField.addEventListener('input', function () { | ||||||||||||||||||||||
if (!validateZipCode(zipCodeField.value)) { | ||||||||||||||||||||||
showError(zipCodeField, 'Please enter a valid ZIP code.'); | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(zipCodeField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
phoneField.addEventListener('input', function () { | ||||||||||||||||||||||
if (!validatePhone(phoneField.value)) { | ||||||||||||||||||||||
showError(phoneField, 'Please enter a valid phone number.'); | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(phoneField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
addressField.addEventListener('input', function () { | ||||||||||||||||||||||
validateNotEmpty(addressField, 'Address is required.'); | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
cityField.addEventListener('input', function () { | ||||||||||||||||||||||
validateNotEmpty(cityField, 'City is required.'); | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
|
||||||||||||||||||||||
// Validate when the Place Order button is clicked | ||||||||||||||||||||||
placeOrderButton.addEventListener('click', function (event) { | ||||||||||||||||||||||
let isValid = true; | ||||||||||||||||||||||
console.log('Place Order button clicked'); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!validateEmail(emailField.value)) { | ||||||||||||||||||||||
showError(emailField, 'Please enter a valid email address.'); | ||||||||||||||||||||||
isValid = false; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(emailField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (firstNameField.value.trim() === '') { | ||||||||||||||||||||||
showError(firstNameField, 'First name is required.'); | ||||||||||||||||||||||
isValid = false; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(firstNameField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (lastNameField.value.trim() === '') { | ||||||||||||||||||||||
showError(lastNameField, 'Last name is required.'); | ||||||||||||||||||||||
isValid = false; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(lastNameField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!validateZipCode(zipCodeField.value)) { | ||||||||||||||||||||||
showError(zipCodeField, 'Please enter a valid ZIP code.'); | ||||||||||||||||||||||
isValid = false; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(zipCodeField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!validatePhone(phoneField.value)) { | ||||||||||||||||||||||
showError(phoneField, 'Please enter a valid phone number.'); | ||||||||||||||||||||||
isValid = false; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
clearError(phoneField); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if (!isValid) { | ||||||||||||||||||||||
event.preventDefault(); | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
form.submit(); // Manually submit the form if validation passes | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}); | ||||||||||||||||||||||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.