-
Notifications
You must be signed in to change notification settings - Fork 69
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
Apply User-Defined Date Formatting Settings to WP Admin React Components #9635
base: develop
Are you sure you want to change the base?
Apply User-Defined Date Formatting Settings to WP Admin React Components #9635
Conversation
…g-arent-respected-in-react-components
I mean I'd prefer the placement within the table but if this increases the complexity much, I'd understand this. With regards to the Payments Overview though, are we placing it there cause the change also reflects in the mini Deposits overview table? I personally wouldn't advise we have it there otherwise, and even in that case... I'm not sure this needs to be surfaced there... rather than only in the actual Deposits table on the Deposits page. WDYT?
Does it mean that if the user clears the cache, the previously dismissed banner comes back? I'm asking just out of curiosity, as I think this isn't a big deal. And like you say... we should probably keep it for a few release cycles only. |
Actually, after a bit more thinking... I understand it iseasier to implement it above the table, and I hate being stubborn and saying this but I’m leaning towards suggesting that we implement it within the table instead. Unless this really increases the effort massively?? |
…g-arent-respected-in-react-components
…g-arent-respected-in-react-components
…g-arent-respected-in-react-components
Added blocked status until we implement the inline notification in the TableCard header: woocommerce/woocommerce#53496. Please check previous comments for context. |
…g-arent-respected-in-react-components
This is an important PR – making dates respect user preferences. Here's my understanding of why it's blocked:
This is unfortunate – we should be able to fix date formatting without implementing a new kind of notice. Here are some options I think are reasonable:
@rogermattic @mgascam would you be concerned if we went with (1) approach – ship quietly? Do we expect significant support requests – @AashikP keen for your thoughts on risk of shipping quietly. @rogermattic – how important is it to you that we delay shipping the date fix until we have a new kind of notice implemented in core?
Personally, I think a spotlight notice is reasonable. It's a little loud, but this is a pervasive change (respecting date format throughout WooPayments), so a "global" notice is a good fit. We used a spotlight for payouts which was a less impactful and more localised change. |
I’d definitely go for option 2. I think it could get confusing for users if they see a change and don’t know how to get back to their previous setup.
So yeah, I think it’s quite important to show some kind of context or information.
At first, I thought we already had that inline notice ready, so I definitely didn’t mean to delay shipping. I only suggested it because I thought it’d be helpful to have the notice closer to the context —that’s all. Sorry for complicating @mgascam ’s life in the process!
@mgascam apologies, but would it still be possible to somehow go back to the notice style and positioning that you had implemented initially, just with the copy I proposed? |
From what I understand, this is a very welcome change that implements consistency across WooPayments. Is there a specific reason we'd want to ship this quietly? Unless we do, there should be some (any) form of notice to the merchants. Without that, we can expect some support requests. Maybe it is because of confusion and, in some cases, anger because they never noticed that the time now reflects the time they've configured under General settings. One extreme example is when the merchant blames us for the lost dispute. They might say they missed the deadline because they assumed the time was in UTC, their time zone, etc. @aheckler We should also add a notice in the public docs letting them know what timezone WooPayments uses and how they can change it. cc @francoishvz |
IMHO we should just ship this and not worry about it. No announcement needed other than the release notes / changelog. The fact that the dates and times shown by WooPayments did NOT respect the merchant's core WP settings from the very beginning is/was a bug. This PR fixes that bug. And we release bug fixes all the time with zero notice. I don't think this one needs to be any different. I wouldn't even bother mentioning this in the docs to be honest, since following the core WP settings is the obviously correct thing to do. |
@aheckler Now that you mention it, you're right! I totally missed that this was originally reported as a bug. I assumed this to be a feature update. There's only one merchant report in the bug report, and we will get back to them during the release phase. We don't usually provide notices for bug fixes. That said, I'd still consider this notice as The public docs update is understandable since this was a bug to begin with. We don't need to specifically mention this in the docs. |
…g-arent-respected-in-react-components
…rview page" This reverts commit 0086c7c.
…g-arent-respected-in-react-components
…g-arent-respected-in-react-components
Thank you, everyone, for your helpful comments!
@haszari I also prefer this option, and it seems we are all aligned on it. I've made the necessary changes to use the BannerNotice component in this commit. For context, I completely agree that this is a bug. However, my main concern has been avoiding unintended negative impacts from fixing it, especially given the low number of complaints. The suggestion to show a notice for merchants resonated with me as a practical solution. Additionally, I appreciated @rogermattic's idea to place the notice within the table context, as it would have been more targeted. Initially, I assumed it would be straightforward to implement this change using the new TableCard component from the woocommerce/components repository. However, after gaining more experience, I realized I underestimated the complexity. Specifically, the plugin relies on the woocommerce/components bundle from WooCommerce core, which means we would need to wait for a new WooCommerce core release. This approach would be problematic, as merchants who update WooPayments without updating WooCommerce core would not see the notice. Given this limitation, I believe moving forward with the BannerNotice is the best option. While not ideal, it ensures we can inform merchants about the change effectively. I've added the notice to all pages under the Payments navigation menu. Below are some screenshots for your review—please let me know your thoughts. Lastly, I’ll be on extended AFK starting Dec 23rd, so it would be great to get additional reviews and feedback next week. Thank you! |
…g-arent-respected-in-react-components
…g-arent-respected-in-react-components
Looks good to me! Thank you! |
…g-arent-respected-in-react-components
Fixes #6567
This pull request includes changes to ensure that user-defined date and time formatting settings are respected across various React components in the WP Admin UI. The most important changes involve replacing the
dateI18n
function with custom date formatting functions and adding a new component to inform users about the update.Changes proposed in this Pull Request
Date and Time Formatting Updates:
client/capital/index.tsx
: ReplaceddateI18n
withformatDateTimeFromString
for displaying loan dates. [1] [2] [3]client/components/account-status/account-fees/expiration-description.js
: ReplaceddateI18n
withformatDateTimeFromString
for expiration dates. [1] [2]client/components/active-loan-summary/index.tsx
: ReplaceddateI18n
withformatDateTimeFromTimestamp
for loan summary dates. [1] [2] [3]client/deposits/details/index.tsx
: ReplaceddateI18n
withformatDateTimeFromString
for deposit dates.client/deposits/list/index.tsx
: ReplaceddateI18n
withformatDateTimeFromString
for deposit list dates. [1] [2]New Component Addition:
client/components/date-format-notice/index.tsx
: Added a newDateFormatNotice
component to inform users about the new date and time formatting settings and provide a link to configure these settings.Test Updates:
dateFormat
in the global settings to ensure tests respect the user-defined date format. [1] [2] [3] [4] [5] [6] [7] [8] [9]Testing instructions
General Date and Time Display Testing
WP Admin > Settings > General
and set your preferred Date and Time Formats and Timezone.Component Specific Testing
Transactions
WP Admin > Payments > Transactions
.Date / Time
andDeposit Date
columns.Capital Loans
This section is hidden if your user does not have capital loans. Follow the steps in this guide to create one offer for your user. Once the offer is created, your user will get an email to confirm it. Visit the link in the email, but make sure to use your local store URL, not the server one.
WP Admin > Payments > Capital loans
Active loan overview
dates are formatted according to the user settings.All Loans
table dates are formatted according to the user settings. There are two columns that contain dates:Disbursed
andFirst Paydown
.Deposits
WP Admin > Payments > Deposits
Disputes
You can use test cards to create disputed orders.
WP Admin > Payments > Disputes
Disputed on
column (you may need to reveal it)Challenge Dispute
and verify the dates in the form are correctDocuments
In the server, you can use the cli to add a document to your account
wp wcpay add_document_for_account 236870460 vat_invoice --period_from="2024-10-01 00:00:00" --period_to="2024-10-31 23:59:59"
WP Admin > Payments > Documents
npm run changelog
to add a changelog file, choosepatch
to leave it empty if the change is not significant. You can add multiple changelog files in one PR by running this command a few times.Post merge