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

[$250] Comment not deleted when delete button in red and hit enter key #42645

Closed
1 of 6 tasks
m-natarajan opened this issue May 27, 2024 · 30 comments
Closed
1 of 6 tasks
Assignees
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. External Added to denote the issue can be worked on by a contributor Weekly KSv2

Comments

@m-natarajan
Copy link

m-natarajan commented May 27, 2024

If you haven’t already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!


Version Number: 1.4.76-0
Reproducible in staging?: y
Reproducible in production?: y
If this was caught during regression testing, add the test name, ID and link from TestRail:
Email or phone of affected tester (no customers):
Logs: https://stackoverflow.com/c/expensify/questions/4856
Expensify/Expensify Issue URL:
Issue reported by: @iwiznia
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1716823498553919

Action Performed:

  1. Go to staging.new.expensify.com and login
  2. Send a message to anyone
  3. Edit the message by right clicking
  4. Delete the message and press "Enter"
  5. Press "Enter" again

Expected Result:

Message/comment deleted

Actual Result:

Message/comment is not deleted because the focus is on the cancel button (even though delete is in red)

Workaround:

Unknown

Platforms:

Which of our officially supported platforms is this issue occurring on?

  • Android: Native
  • Android: mWeb Chrome
  • iOS: Native
  • iOS: mWeb Safari
  • MacOS: Chrome / Safari
  • MacOS: Desktop

Screenshots/Videos

Add any screenshot/video evidence

Recording.128.mp4

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~01b70ac798adfe8d66
  • Upwork Job ID: 1795470513005948928
  • Last Price Increase: 2024-05-28
  • Automatic offers:
    • bernhardoj | Contributor | 102543808
Issue OwnerCurrent Issue Owner: @sobitneupane
@m-natarajan m-natarajan added Daily KSv2 Bug Something is broken. Auto assigns a BugZero manager. labels May 27, 2024
Copy link

melvin-bot bot commented May 27, 2024

Triggered auto assignment to @garrettmknight (Bug), see https://stackoverflow.com/c/expensify/questions/14418 for more details. Please add this bug to a GH project, as outlined in the SO.

@dragnoir
Copy link
Contributor

dragnoir commented May 27, 2024

Proposal

Please re-state the problem that we are trying to solve in this issue.

Comment not deleted when delete button in red and hit enter key

What is the root cause of that problem?

Needs focus trap

What changes do you think we should make in order to solve the problem?

After this PR merged #39520

We need to use focus trap to set the focus inside the delete popup and to set the focus to the delete button

What alternative solutions did you explore?

To set focus on the button when the component loads, we can use the useRef hook to create a reference to the button and then use the useEffect hook to focus it once the component has mounted. Here's how you can modify the ConfirmContent component to achieve this:

  1. Import the useRef and useEffect hooks from React.
  2. Create a reference using useRef.
  3. Apply the reference to the button.
  4. Use useEffect to set the focus when the component loads.

Here's the updated code:

const confirmButtonRef = useRef(null); // Create a ref for the confirm button

useEffect(() => { if (confirmButtonRef.current) { confirmButtonRef.current.focus(); // Focus the confirm button when the component loads } }, []);

<Button  ref={confirmButtonRef} //..

In this updated code, the confirmButtonRef is used to create a reference to the confirm button, and useEffect is used to set the focus on the button when the component loads.

@bernhardoj
Copy link
Contributor

Proposal

Please re-state the problem that we are trying to solve in this issue.

Pressing the Enter key when opening the delete confirmation modal doesn't delete the comment/message.

What is the root cause of that problem?

When the delete confirmation modal is shown, the focus trap from the rn-web Modal focuses on the Cancel button, so pressing Enter will press the Cancel button. We set pressOnEnter shortcut to the Delete button, but it will be disabled if the current focus is focused on an element with an accessibility role, except text.

const shouldDisableEnterShortcut = useMemo(() => accessibilityRoles.includes(activeElementRole ?? '') && activeElementRole !== CONST.ACCESSIBILITY_ROLE.TEXT, [activeElementRole]);

Now, the question is why the cancel button is focused first when we open the confirmation modal. In the confirmation modal, there are 3 focusable elements, the overlay, delete button, and cancel button. The logic of the focus trap is here. It will focus on the first focusable element first and keep the focus when tabbing within the focus trapped element.

Here is how it behaves in this GH test case. First, it will focus on the first focusable descendant of the modal, in our case, it's the modal overlay. The modal overlay is saved as the last focused element. At this point, the edit composer is blurred. If the edit composer is blurred, it will set SHOULD_SHOW_COMPOSE_INPUT to true.

setShouldShowComposeInputKeyboardAware(true);

SHOULD_SHOW_COMPOSE_INPUT hides the main composer when an edit composer is focused, on small screens only. Besides the SHOULD_SHOW_COMPOSE_INPUT controls the main composer visibility, it also controls the autoFocus behavior.

const shouldAutoFocus =
!modal?.isVisible && isFocused && (shouldFocusInputOnScreenFocus || (isEmptyChat && !ReportActionsUtils.isTransactionThread(parentReportAction))) && shouldShowComposeInput;

Because SHOULD_SHOW_COMPOSE_INPUT is now true, autoFocus now becomes true too. Before, it was false because an edit composer was focused which set SHOULD_SHOW_COMPOSE_INPUT to false.

Now, here's the problem. autoFocus is supposed to work only once when the text input is mounted. However, the live markdown input will focus on the input every time the autoFocus is changed to true.
https://github.com/Expensify/react-native-live-markdown/blob/main/src/MarkdownTextInput.web.tsx#L584-L588

The input focus then triggers the focus trap logic again which first focuses on the first focusable descendant, that is the overlay. Then it checks whether the last (prev) focused element is the same as the current focused element. If it's the same, it will start focusing on the last focusable descendant element.

In our case, the last focused element is the overlay and the first focusable descendant is also the overlay, so the focus trap will focus on the last focusable descendant element, that is the cancel button.

What changes do you think we should make in order to solve the problem?

We can:

  1. Update the autoFocus condition to only consider the SHOULD_SHOW_COMPOSE_INPUT value for the small screen,
  2. Don't change the SHOULD_SHOW_COMPOSE_INPUT to true when the edit composer is blurred by the confirmation modal

but I would like to address the root cause of the issue, that is the input gets focused every time autoFocus is changed which doesn't happen with the react native TextInput.

To fix the issue, we should remove autoFocus from the effect deps here
https://github.com/Expensify/react-native-live-markdown/blob/377ab57fa02c598b624eb91e4faf4fd2693596a2/src/MarkdownTextInput.web.tsx#L584-L588

This way, it will work as pointed out by the comment, that is to auto-focus only when the component is mounted, not when autoFocus is changed.

This happens after this react native live markdown PR which adds the react hooks eslint rule and adds the autoFocus as the deps to fix the lint, but we shouldn't do that for autoFocus case.

This will also fix an issue where the main composer is focused every time the edit composer is blurred.

Screen.Recording.2024-05-28.at.15.55.48.mov

After this change, the overlay will be the one that is focused when opening the confirmation modal, which is what happens with other confirmation modals. Pressing Enter on the overlay will trigger the pressOnEnter shortcut because the overlay doesn't have any role.

@garrettmknight garrettmknight added the External Added to denote the issue can be worked on by a contributor label May 28, 2024
@melvin-bot melvin-bot bot changed the title Comment not deleted when delete button in red and hit enter key [$250] Comment not deleted when delete button in red and hit enter key May 28, 2024
Copy link

melvin-bot bot commented May 28, 2024

Job added to Upwork: https://www.upwork.com/jobs/~01b70ac798adfe8d66

@melvin-bot melvin-bot bot added the Help Wanted Apply this label when an issue is open to proposals by contributors label May 28, 2024
Copy link

melvin-bot bot commented May 28, 2024

Triggered auto assignment to Contributor-plus team member for initial proposal review - @sobitneupane (External)

@sobitneupane
Copy link
Contributor

Thanks for the proposal everyone.

Proposal from @bernhardoj looks good to me.

🎀👀🎀 C+ reviewed

Copy link

melvin-bot bot commented May 31, 2024

Triggered auto assignment to @blimpich, see https://stackoverflow.com/c/expensify/questions/7972 for more details.

@melvin-bot melvin-bot bot removed the Help Wanted Apply this label when an issue is open to proposals by contributors label May 31, 2024
Copy link

melvin-bot bot commented May 31, 2024

📣 @bernhardoj 🎉 An offer has been automatically sent to your Upwork account for the Contributor role 🎉 Thanks for contributing to the Expensify app!

Offer link
Upwork job
Please accept the offer and leave a comment on the Github issue letting us know when we can expect a PR to be ready for review 🧑‍💻
Keep in mind: Code of Conduct | Contributing 📖

@bernhardoj
Copy link
Contributor

The live markdown PR is here

@bernhardoj
Copy link
Contributor

bernhardoj commented Jun 3, 2024

The live markdown PR is merged and released in 0.7.78, but we can't update it yet because 0.7.76 caused a regression, so we need to wait for a new version that fixes the issue.

@melvin-bot melvin-bot bot added the Overdue label Jun 3, 2024
@garrettmknight
Copy link
Contributor

Holding on #42766

@garrettmknight
Copy link
Contributor

Still holding on #42766

@melvin-bot melvin-bot bot removed the Overdue label Jun 5, 2024
@garrettmknight garrettmknight changed the title [$250] Comment not deleted when delete button in red and hit enter key [HOLD on #42766] [$250] Comment not deleted when delete button in red and hit enter key Jun 5, 2024
@blimpich
Copy link
Contributor

Sweet! @sobitneupane does this mean we can finish with pay out for this issue and close it?

cc: @garrettmknight

Copy link

melvin-bot bot commented Jun 10, 2024

@garrettmknight @blimpich @sobitneupane @bernhardoj this issue was created 2 weeks ago. Are we close to approving a proposal? If not, what's blocking us from getting this issue assigned? Don't hesitate to create a thread in #expensify-open-source to align faster in real time. Thanks!

@sobitneupane
Copy link
Contributor

I can confirm that the issue is resolved.

Screen.Recording.2024-06-11.at.12.53.22.mov

does this mean we can finish with pay out for this issue and close it?

Yup.

@garrettmknight
Copy link
Contributor

Nice one!

Payment Summary

@sobitneupane is any of the checklist necessary on this one?

@sobitneupane
Copy link
Contributor

Regression Test Proposal

  1. Send a message to anyone
  2. Edit the message by right clicking
  3. Remove all the texts from the message and press enter
  4. Verify that the Delete Comment Modal pops up
  5. Press Enter
  6. Verify that the comment is deleted.

Do we agree 👍 or 👎

@garrettmknight garrettmknight added Weekly KSv2 and removed Daily KSv2 labels Jun 11, 2024
@garrettmknight
Copy link
Contributor

Dropping to weekly for you to request @sobitneupane

@melvin-bot melvin-bot bot added the Overdue label Jun 19, 2024
@garrettmknight
Copy link
Contributor

Just awating the reqeust

@melvin-bot melvin-bot bot removed the Overdue label Jun 19, 2024
Copy link

melvin-bot bot commented Jun 24, 2024

@garrettmknight @blimpich @sobitneupane @bernhardoj this issue is now 4 weeks old, please consider:

  • Finding a contributor to fix the bug
  • Closing the issue if BZ has been unable to add the issue to a VIP or Wave project
  • If you have any questions, don't hesitate to start a discussion in #expensify-open-source

Thanks!

@melvin-bot melvin-bot bot added the Overdue label Jun 28, 2024
@garrettmknight
Copy link
Contributor

Still awaiting payment request

@melvin-bot melvin-bot bot removed the Overdue label Jul 1, 2024
@garrettmknight garrettmknight added the Awaiting Payment Auto-added when associated PR is deployed to production label Jul 1, 2024
@melvin-bot melvin-bot bot added Daily KSv2 and removed Weekly KSv2 labels Jul 7, 2024
Copy link

melvin-bot bot commented Jul 10, 2024

@garrettmknight, @blimpich, @sobitneupane, @bernhardoj Uh oh! This issue is overdue by 2 days. Don't forget to update your issues!

@melvin-bot melvin-bot bot added the Overdue label Jul 10, 2024
@garrettmknight garrettmknight added Weekly KSv2 and removed Daily KSv2 labels Jul 12, 2024
@melvin-bot melvin-bot bot removed the Overdue label Jul 12, 2024
@garrettmknight
Copy link
Contributor

Still awaiting the payment request

1 similar comment
@garrettmknight
Copy link
Contributor

Still awaiting the payment request

@melvin-bot melvin-bot bot added the Overdue label Jul 23, 2024
@garrettmknight
Copy link
Contributor

@sobitneupane I'm gonna close this one, but submit the payment request when you get a chance.

@JmillsExpensify
Copy link

$250 approved for @sobitneupane

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. External Added to denote the issue can be worked on by a contributor Weekly KSv2
Projects
No open projects
Development

No branches or pull requests

7 participants