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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Phone validation #1987

Merged
merged 2 commits into from
Jan 31, 2024
Merged

fix: Phone validation #1987

merged 2 commits into from
Jan 31, 2024

Conversation

Dhruwang
Copy link
Contributor

@Dhruwang Dhruwang commented Jan 31, 2024

What does this PR do?

Fixes # 1786 #1963

How should this be tested?

  • Test A
  • Test B

Checklist

Required

  • Filled out the "How to test" section in this PR
  • Read How we Code at Formbricks
  • Self-reviewed my own code
  • Commented on my code in hard-to-understand bits
  • Ran pnpm build
  • Checked for warnings, there are none
  • Removed all console.logs
  • Merged the latest changes from main onto my branch with git pull origin main
  • My changes don't cause any responsiveness issues
  • First PR at Formbricks? Please sign the CLA! Without it we wont be able to merge it 馃檹

Appreciated

  • If a UI change was made: Added a screen recording or screenshots to this PR
  • Updated the Formbricks Docs if changes were necessary

Copy link

vercel bot commented Jan 31, 2024

The latest updates on your projects. Learn more about Vercel for Git 鈫楋笌

2 Ignored Deployments
Name Status Preview Updated (UTC)
formbricks-cloud 猬滐笍 Ignored (Inspect) Jan 31, 2024 0:34am
formbricks-com 猬滐笍 Ignored (Inspect) Jan 31, 2024 0:34am

Copy link
Contributor

github-actions bot commented Jan 31, 2024

Thank you for following the naming conventions for pull request titles! 馃檹

Copy link
Contributor

packages/surveys/src/components/questions/OpenTextQuestion.tsx

The current phone number validation pattern is a bit too lenient and could be improved to better match common phone number formats. This will help ensure that users enter their phone numbers in a consistent and expected format.
Create Issue
See the diff
Checkout the fix

    pattern={question.inputType === "phone" ? "^\\+?[1-9]\\d{1,14}$" : ".*"}
git fetch origin && git checkout -b ReviewBot/Impro-gp8b3wu origin/ReviewBot/Impro-gp8b3wu

The current form submission process involves a lot of repeated code and unnecessary calculations. By moving the form submission logic into a separate function, we can improve the performance and readability of the code.
Create Issue
See the diff
Checkout the fix

    const handleSubmit = (e) => {
      e.preventDefault();
      const updatedttc = getUpdatedTtc(ttc, question.id, performance.now() - startTime);
      setTtc(updatedttc);
      onSubmit({ [question.id]: value, inputType: question.inputType }, updatedttc);
    };

    // Then replace the onSubmit handlers with this function
    onSubmit={handleSubmit}
git fetch origin && git checkout -b ReviewBot/Impro-wibcpyr origin/ReviewBot/Impro-wibcpyr

Copy link
Member

@mattinannt mattinannt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Dhruwang thanks for the changes 馃槉馃挭

@mattinannt mattinannt added this pull request to the merge queue Jan 31, 2024
Merged via the queue into main with commit 43566a5 Jan 31, 2024
16 checks passed
@mattinannt mattinannt deleted the phone-validation branch January 31, 2024 14:29
kevinkong91 added a commit to kevinkong91/formbricks that referenced this pull request Mar 15, 2024
* main: (87 commits)
  fix: remove default env vars in docker compose (formbricks#2018)
  feat: cache web builds & playwright binaries in CI (formbricks#2009)
  chore: prepare 1.5.1 release (formbricks#2012)
  docs: add ClassroomIO to OSS Friends (formbricks#2008)
  feat: Add support for Cloudfront country header (formbricks#2003)
  fix: create survey API expects creator (formbricks#2007)
  fix: ECS deployment GitHub Action (formbricks#2005)
  chore: remove old CLA form from docs & github templates (formbricks#1995)
  fix: ecs github action (formbricks#1992)
  feat: auto subscribing to teams survey responses email (formbricks#1990)
  fix: formbricks-com build errors (formbricks#1991)
  fix: default autocomplete value (formbricks#1986)
  chore: Tweaked survey list (formbricks#1978)
  feat: enable weekly summary & support for callbacks on login (formbricks#1885)
  fix: ecs-deployment.yml (formbricks#1989)
  fix: ECS deployment Github Action (formbricks#1988)
  fix: links and survey overlapping (formbricks#1985)
  fix: Phone validation (formbricks#1987)
  fix: app page redirect throws error (formbricks#1984)
  feat(github action): Add's a new GitHub Action to deploy webapp to ECS cluster (formbricks#1982)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants