[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
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.
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
andformatter.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 thiswc-analytics/customers
endpoint. I also tried using thewc/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:
Yosemite/Yosemite/Model/Storage/Customer+ReadOnlyConvertible.swift
: Updated the logic to assign the first component of the name tofirstName
and the rest tolastName
, matching the behavior of the Android implementation.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).
Add Customer Details
Testing information
Screenshots
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: