-
Notifications
You must be signed in to change notification settings - Fork 116
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
Dismiss optimistic order update/complete notification right away if an error occur #6085
Conversation
You can trigger optional UI/connected tests for these changes by visiting CircleCI here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @chrisKns, I was thinking about how this could be used in other situations and how another call site could not have access to the currently displayed notice.
I'm thinking that providing something some sort of priority to the notice could help us determine if we should display the notice immediately or not.
We could do this either by providing a priority inside the Notice
struct or by adding a priority parameter inside the func enqueue(notice: Notice)
method.
What do you think?
Hi @Ecarrion , I like your suggestion, it solves the general problem being able to immediately display a I would not like to over engineer the solution with many priorities. So I propose to define two priorities:
I would add this priority to the But I see one downside. With the current implementation in this PR you can explicitly cancel a specific Both solutions overlap, but I think solve slightly different problem. I like the solution with priorities since it is more flexible and solves a more general problem. The downside is trivial since (from what I understand) for important notices the user also receives an email. I you agree I will move forward with the implementation! |
Hi @chrisKns
True, but I wouldn't worry about that. Is not something that we are trying to solve or that it has been a problem so far.
I'm not sure what you are referring to, but I don't think notices imply an email at all.
Sure you can proceed. |
@Ecarrion I implemented the solution with priorities(not pushed yet), however there seems to be non trivial problems.
That will result in the "Order Successful" being displayed only: Simulator.Screen.Recording.-.iPod.touch.7th.generation.-.2022-02-07.at.23.59.12.mp4The situation is similar when you try to perform an order status change when a "Order Fail" message is already displayed(from a previous attempt). The optimistic "Order Successful" Notice will be enqueued and then "Order Fail" Notice will try to be enqueued that will fail since it is already displayed. Even if it was enqueued since it had higher priority the last message displayed would be of the "Order Successful". I think the solution with priorities needs more careful design. I am back to the drawing board. I am hesitant removing the checking if a |
@Ecarrion You can review the solution with priorities here for reference. |
@chrisKns have you thought/considered something simpler like |
Yes and unfortunately I think it will have similar problems. If an "Order Fail" |
What other side effects? |
I should elaborate more on the "side effects": since in the queue are added |
I think that would a "primary" effect 😅 Anyway, as discussed, I will close this PR so we can tackle it later with more time and information. |
After trying to solve this issue with different designs here is my experience with the problem and solutions tried: An initial simplistic implementation that added the ability to explicitly cancel a With help in the design suggestions from @Ecarrion I tried other designs that have more flexibility: for example skipping the queue and replacing the currently presented The above scenario is not an edge case, in case for poor network connectivity If an "Order Fail" Notice is being presented and before it is auto-dismissed we make an attempt for another order status change, when the normal optimistic "Order Successful" with be enqueued, and then immediately a second "Order Fail”. Here we want the second "Order Fail” to remove the previous "Order Successful”. It seems that these cases you will have to have access to the original Notice` remove only that or empty the entire queue. |
Closes: #3817
Description
When
DefaultNoticePresenter
displays aNotice
there is a dismissDelay of 5 seconds, so any otherNotice
that is enqueued afterwards it will have to wait at most 5 seconds to be displayed.When we mark an order as complete(or update its status) in
OrderDetailsViewController
we optimistically display a success message but if the API update fails immediately the user will have to wait about 5 seconds to get notified.This PR fixes the problem, by add the capability to the
DefaultNoticePresenter
to cancel aNotice
that is presented or in the queue to be presented.Testing instructions
Marking Order complete flow:
Updating the Order's status flow:
Screenshots
Order Complete message is immediately dismissed when the error occurs
Simulator.Screen.Recording.-.iPod.touch.7th.generation.-.2022-02-04.at.20.09.09.mp4
Similarly the order update message is immediately dismissed when the error occurs
Simulator.Screen.Recording.-.iPod.touch.7th.generation.-.2022-02-04.at.20.46.51.mp4
RELEASE-NOTES.txt
if necessary.