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

[Order Creation] Set a customer's first/last name from a full name so that all components after the first one goes to the last name #15462

Open
wants to merge 4 commits into
base: trunk
Choose a base branch
from

Conversation

jaclync
Copy link
Contributor

@jaclync jaclync commented Apr 1, 2025

Closes: #14510

Description

This pull request updates how we convert the full name of a customer from wc-analytics/customers response to first and last name to match the Android implementation wordpress-mobile/WordPress-FluxC-Android#3113.

Before this PR, we were considering the last word to be the last name and the rest goes to the first name. It was implemented this way to account for middle name in the first name, but doesn't work when there were multiple words in the last name. Example:

Full Name : Firstname and a very long last name
First name : Firstname and a very long last
Last name : name

After this PR, we are considering first word to be the first name and all other words as last name. Example:

Full Name : Firstname and a very long last name
First name : Firstname
Last name : and a very long last name

I wasn't a fan of this solution to assume the first name just has the word before the first space but a few alternatives didn't work. I first tried PersonNameComponentsFormatter and formatter.personNameComponents(from: customer.name) to see if we can have a more localizable version, but it doesn't work well because core always adds a space between the first and last name for the customer name in this wc-analytics/customers endpoint. I also tried using the wc/v3/customers endpoint, but the response just had a small subset of customers compared to the one we use and didn't dig deeper. At this point, I think it's better to main platform consistency and consider using the core endpoint that provides first/last names in the future.

Changes to name component handling:

Steps to reproduce

Prerequisite: the store has a customer with a first name and multiple words in the last name (note: I noticed that when creating an order with a new customer, the customer only appears in the customer list after a minute or so).

  • Go to the orders tab
  • Tap + to create order
  • Tap Add Customer Details
  • Search or scroll down the list to find and select the customer in the prerequisite
  • Tap to edit the customer --> the first name should just has the first word in the full name, and the rest of the words in the full name goes to the last name

Testing information

Screenshots

before after
Simulator Screenshot - iPad Pro 11-inch (M4) - 2025-04-01 at 13 10 58 Simulator Screenshot - iPad Pro 11-inch (M4) - 2025-04-01 at 13 09 55

  • I have considered if this change warrants user-facing release notes and have added them to RELEASE-NOTES.txt if necessary.

Reviewer (or Author, in the case of optional code reviews):

Please make sure these conditions are met before approving the PR, or request changes if the PR needs improvement:

  • The PR is small and has a clear, single focus, or a valid explanation is provided in the description. If needed, please request to split it into smaller PRs.
  • Ensure Adequate Unit Test Coverage: The changes are reasonably covered by unit tests or an explanation is provided in the PR description.
  • Manual Testing: The author listed all the tests they ran, including smoke tests when needed (e.g., for refactorings). The reviewer confirmed that the PR works as expected on all devices (phone/tablet) and no regressions are added.

… a name field to match Android implementation.
@jaclync jaclync added type: bug A confirmed bug. feature: order creation All tasks related to creating an order labels Apr 1, 2025
@jaclync jaclync added this to the 22.1 milestone Apr 1, 2025
@wpmobilebot
Copy link
Collaborator

wpmobilebot commented Apr 1, 2025

App Icon📲 You can test the changes from this Pull Request in WooCommerce iOS Prototype by scanning the QR code below to install the corresponding build.

App NameWooCommerce iOS Prototype
Build Number29107
VersionPR #15462
Bundle IDcom.automattic.alpha.woocommerce
Commit162992a
Installation URL5oaggcm7o0n3o
Automatticians: You can use our internal self-serve MC tool to give yourself access to those builds if needed.

@jaclync jaclync changed the title [Order Creation] Set a customer's first/last name from one full name so that all components after the first one goes to the last name [Order Creation] Set a customer's first/last name from a full name so that all components after the first one goes to the last name Apr 1, 2025
@jaclync jaclync marked this pull request as ready for review April 1, 2025 07:07
@jaclync jaclync requested a review from iamgabrielma April 1, 2025 07:07
@iamgabrielma iamgabrielma self-assigned this Apr 2, 2025
@jaclync jaclync modified the milestones: 22.1, 22.2 Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature: order creation All tasks related to creating an order type: bug A confirmed bug.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Order Creation]The order form treats all words except the last one as the customer's first name.
3 participants