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

BA-2357: Support first and last name during signup #236

Merged
merged 4 commits into from
Mar 21, 2025

Conversation

sundayguru
Copy link
Contributor

@sundayguru sundayguru commented Mar 10, 2025

  • __package_name__ package update - v __package_version__
    • Support first and last name in useSignup hook

Summary by CodeRabbit

  • New Features

    • Enhanced the registration process to support separate first and last name inputs, improving user profile detail.
    • Introduced a configurable option that allows toggling between separate name fields and a consolidated name field.
    • Updated form validation to ensure correct input for the revised registration fields.
  • Bug Fixes

    • Corrected the initialization of registration values to include first and last name properties.
  • Chores

    • Updated package version to reflect recent changes.

Copy link

changeset-bot bot commented Mar 10, 2025

⚠️ No Changeset found

Latest commit: d75f596

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

coderabbitai bot commented Mar 10, 2025

Walkthrough

The changes update the sign-up functionality by modifying the validation schemas and registration data structure. The original validation schema has been replaced, and a new schema has been introduced that includes separate fields for first and last names. The sign-up hook now accepts a new optional parameter to toggle between the two schemas. Additionally, the type definitions for sign-up options and the registration request have been updated to support these new fields. The package version has also been incremented to reflect these updates.

Changes

File(s) Summary of Changes
packages/.../useSignUp/constants.ts Replaced the original DEFAULT_VALIDATION_SCHEMA with DEFAULT_VALIDATION_SCHEMA_WITH_NAME (excluding the name field), added a new DEFAULT_VALIDATION_SCHEMA that includes firstName and lastName, and updated DEFAULT_INITIAL_VALUES accordingly.
packages/.../useSignUp/index.ts Introduced a new optional parameter useNameField in useSignUp to conditionally select the appropriate validation schema, and updated the import statement to include the new schema.
packages/.../useSignUp/types.ts Added an optional property useNameField?: boolean to the UseSignUpOptions interface.
packages/.../auth.ts Modified the RegisterRequest interface to add optional firstName and lastName properties alongside the existing name property.
packages/.../package.json Updated the version number from "4.1.9" to "4.2.0" for the @baseapp-frontend/authentication module.
packages/.../CHANGELOG.md Added entry for version 4.2.0, detailing enhancements to the registration process, including separate inputs for first and last names and the new useNameField option.
packages/.../useSignUp/tests/useSignUp.test.tsx Updated test cases to include the new useNameField property and added onSuccess and onError callbacks for enhanced testing of the useSignUp hook.
packages/.../components/modules/navigations/web/shared/NavSectionHorizontal/NavList/NavItem/index.tsx Modified JSX structure for StyledLink component by consolidating props into a single line without altering functionality.
packages/.../components/modules/navigations/web/shared/NavSectionHorizontal/NavList/NavItem/styled.tsx Removed a line indicating the end of the StyledLink styled component definition without affecting its functionality.

Sequence Diagram(s)

sequenceDiagram
    participant U as User
    participant S as useSignUp Hook
    participant V1 as Schema_With_Name
    participant V2 as Schema_Default

    U->>S: Call useSignUp(useNameField: boolean)
    alt useNameField is true
        S->>V1: Select DEFAULT_VALIDATION_SCHEMA_WITH_NAME
    else useNameField is false
        S->>V2: Select DEFAULT_VALIDATION_SCHEMA
    end
    S->>U: Return form configuration with chosen schema
Loading

Suggested labels

needs review

Suggested reviewers

  • anicioalexandre
  • deboracosilveira
  • priscilladeroode

Poem

I'm hopping with glee through code and tree,
New fields emerge, setting data free.
First name and last, no "name" in between,
A toggle to choose the path unseen.
A rabbit's joy in each line we weave,
Celebrating changes as we believe.
🐇✨

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

packages/authentication/modules/access/useSignUp/types.ts

Oops! Something went wrong! :(

ESLint: 8.57.1

Error: Cannot read config file: /packages/authentication/.eslintrc.js
Error: Cannot find module '@baseapp-frontend/config/.eslintrc.js'
Require stack:

  • /packages/authentication/.eslintrc.js
  • /node_modules/.pnpm/@eslint+eslintrc@2.1.4/node_modules/@eslint/eslintrc/dist/eslintrc.cjs
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/cli-engine/cli-engine.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/eslint/eslint.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/eslint/index.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/cli.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/bin/eslint.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1248:15)
    at Module._load (node:internal/modules/cjs/loader:1074:27)
    at TracingChannel.traceSync (node:diagnostics_channel:315:14)
    at wrapModuleLoad (node:internal/modules/cjs/loader:217:24)
    at Module.require (node:internal/modules/cjs/loader:1339:12)
    at require (node:internal/modules/helpers:135:16)
    at Object. (/packages/authentication/.eslintrc.js:1:18)
    at Module._compile (node:internal/modules/cjs/loader:1546:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1691:10)
    at Module.load (node:internal/modules/cjs/loader:1317:32)
packages/authentication/modules/access/useSignUp/__tests__/useSignUp.test.tsx

Oops! Something went wrong! :(

ESLint: 8.57.1

Error: Cannot read config file: /packages/authentication/.eslintrc.js
Error: Cannot find module '@baseapp-frontend/config/.eslintrc.js'
Require stack:

  • /packages/authentication/.eslintrc.js
  • /node_modules/.pnpm/@eslint+eslintrc@2.1.4/node_modules/@eslint/eslintrc/dist/eslintrc.cjs
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/cli-engine/cli-engine.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/eslint/eslint.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/eslint/index.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/cli.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/bin/eslint.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1248:15)
    at Module._load (node:internal/modules/cjs/loader:1074:27)
    at TracingChannel.traceSync (node:diagnostics_channel:315:14)
    at wrapModuleLoad (node:internal/modules/cjs/loader:217:24)
    at Module.require (node:internal/modules/cjs/loader:1339:12)
    at require (node:internal/modules/helpers:135:16)
    at Object. (/packages/authentication/.eslintrc.js:1:18)
    at Module._compile (node:internal/modules/cjs/loader:1546:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1691:10)
    at Module.load (node:internal/modules/cjs/loader:1317:32)
packages/authentication/modules/access/useSignUp/index.ts

Oops! Something went wrong! :(

ESLint: 8.57.1

Error: Cannot read config file: /packages/authentication/.eslintrc.js
Error: Cannot find module '@baseapp-frontend/config/.eslintrc.js'
Require stack:

  • /packages/authentication/.eslintrc.js
  • /node_modules/.pnpm/@eslint+eslintrc@2.1.4/node_modules/@eslint/eslintrc/dist/eslintrc.cjs
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/cli-engine/cli-engine.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/eslint/eslint.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/eslint/index.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/lib/cli.js
  • /node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/bin/eslint.js
    at Module._resolveFilename (node:internal/modules/cjs/loader:1248:15)
    at Module._load (node:internal/modules/cjs/loader:1074:27)
    at TracingChannel.traceSync (node:diagnostics_channel:315:14)
    at wrapModuleLoad (node:internal/modules/cjs/loader:217:24)
    at Module.require (node:internal/modules/cjs/loader:1339:12)
    at require (node:internal/modules/helpers:135:16)
    at Object. (/packages/authentication/.eslintrc.js:1:18)
    at Module._compile (node:internal/modules/cjs/loader:1546:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1691:10)
    at Module.load (node:internal/modules/cjs/loader:1317:32)
  • 3 others

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 47181e9 and d75f596.

📒 Files selected for processing (9)
  • packages/authentication/CHANGELOG.md (1 hunks)
  • packages/authentication/modules/access/useSignUp/__tests__/useSignUp.test.tsx (4 hunks)
  • packages/authentication/modules/access/useSignUp/constants.ts (1 hunks)
  • packages/authentication/modules/access/useSignUp/index.ts (1 hunks)
  • packages/authentication/modules/access/useSignUp/types.ts (1 hunks)
  • packages/authentication/package.json (1 hunks)
  • packages/authentication/types/auth.ts (1 hunks)
  • packages/components/modules/navigations/web/__shared__/NavSectionHorizontal/NavList/NavItem/index.tsx (1 hunks)
  • packages/components/modules/navigations/web/__shared__/NavSectionHorizontal/NavList/NavItem/styled.tsx (0 hunks)
💤 Files with no reviewable changes (1)
  • packages/components/modules/navigations/web/shared/NavSectionHorizontal/NavList/NavItem/styled.tsx
🚧 Files skipped from review as they are similar to previous changes (8)
  • packages/components/modules/navigations/web/shared/NavSectionHorizontal/NavList/NavItem/index.tsx
  • packages/authentication/package.json
  • packages/authentication/modules/access/useSignUp/types.ts
  • packages/authentication/types/auth.ts
  • packages/authentication/CHANGELOG.md
  • packages/authentication/modules/access/useSignUp/tests/useSignUp.test.tsx
  • packages/authentication/modules/access/useSignUp/constants.ts
  • packages/authentication/modules/access/useSignUp/index.ts

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🧹 Nitpick comments (4)
packages/authentication/modules/access/useSignUp/types.ts (1)

15-15: Clarify the parameter naming.

The boolean parameter useNameField is not intuitive - from the naming, one might expect that true means "use first and last name fields" when it actually means the opposite (use a single name field instead of separate first/last name fields).

Consider renaming this to something more descriptive like useSingleNameField to make the intention clearer:

- useNameField?: boolean
+ useSingleNameField?: boolean
packages/authentication/modules/access/useSignUp/index.ts (2)

23-23: Consider renaming the parameter for clarity.

Similar to the type definition, the parameter name useNameField is counterintuitive since true means use a single name field rather than separate first/last name fields.

Rename for clarity:

- useNameField = false,
+ useSingleNameField = false,

28-30: Verify conditional schema selection.

The schema selection logic works but relies on potentially confusing parameter naming. This will select DEFAULT_VALIDATION_SCHEMA_WITH_NAME (single name field) when useNameField is true, and DEFAULT_VALIDATION_SCHEMA (first/last name fields) when useNameField is false.

For better readability:

- resolver: zodResolver(
-   useNameField ? DEFAULT_VALIDATION_SCHEMA_WITH_NAME : DEFAULT_VALIDATION_SCHEMA,
- ),
+ resolver: zodResolver(
+   useNameField 
+     ? DEFAULT_VALIDATION_SCHEMA_WITH_NAME // Single name field
+     : DEFAULT_VALIDATION_SCHEMA, // First and last name fields
+ ),
packages/authentication/modules/access/useSignUp/constants.ts (1)

1-30: Ensure data consistency across the application.

With this implementation, it's possible to have both a single name and separate firstName/lastName values in the same form data, which could lead to inconsistent user data.

Consider implementing a transformation function that ensures only the relevant fields are sent to the API:

// In useSignUp/index.ts
const handleSubmit: SubmitHandler<TRegisterRequest> = async (values) => {
  try {
    const transformedValues = { ...values };
    
    // Clean up data based on which schema is used
    if (useNameField) {
      // Using single name field - remove firstName and lastName
      delete transformedValues.firstName;
      delete transformedValues.lastName;
    } else {
      // Using first/last name fields - remove name
      delete transformedValues.name;
    }
    
    await mutation.mutateAsync(transformedValues);
  } catch (error) {
    // handled by onError
  }
}

This ensures that only the relevant fields are sent to the API, preventing data inconsistency.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ffe56f0 and 6276949.

📒 Files selected for processing (4)
  • packages/authentication/modules/access/useSignUp/constants.ts (1 hunks)
  • packages/authentication/modules/access/useSignUp/index.ts (1 hunks)
  • packages/authentication/modules/access/useSignUp/types.ts (1 hunks)
  • packages/authentication/types/auth.ts (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
packages/authentication/modules/access/useSignUp/index.ts (1)

11-15: LGTM - Clean imports.

The imports have been properly updated to include the new schema constant.

packages/authentication/modules/access/useSignUp/constants.ts (1)

15-22: Verify schema definition.

The new validation schema for first and last name fields looks good, with proper validation rules applied to each field.

However, to make the naming more consistent with its functionality:

- export const DEFAULT_VALIDATION_SCHEMA = z.object({
+ export const FIRST_LAST_NAME_VALIDATION_SCHEMA = z.object({
  firstName: z.string().min(1, ZOD_MESSAGE.required),
  lastName: z.string().min(1, ZOD_MESSAGE.required),
  password: z.string().min(1, ZOD_MESSAGE.required).regex(PASSWORD_REGEX, {
    message: ZOD_MESSAGE.password,
  }),
  email: z.string().min(1, ZOD_MESSAGE.required).email(ZOD_MESSAGE.email),
})

@anicioalexandre anicioalexandre added the needs changes PR was reviewed, and changes are required. label Mar 12, 2025
@sundayguru sundayguru force-pushed the BA-2357-support-first-and-last-name branch from ec7b33b to a3f2946 Compare March 20, 2025 14:22
@sundayguru sundayguru force-pushed the BA-2357-support-first-and-last-name branch from 47181e9 to d75f596 Compare March 20, 2025 15:17
Copy link

Quality Gate Failed Quality Gate failed

Failed conditions
1 Security Hotspot

See analysis details on SonarQube Cloud

@sundayguru sundayguru merged commit f2fbaa1 into master Mar 21, 2025
8 of 11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs changes PR was reviewed, and changes are required.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants