-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[$500] Web - Chat-Mouse scroll and slide functions reversely if pressed on mouse wheel #33299
Comments
Job added to Upwork: https://www.upwork.com/jobs/~01ece60315a26cd5ed |
Triggered auto assignment to @NicMendonca ( |
Bug0 Triage Checklist (Main S/O)
|
Triggered auto assignment to Contributor-plus team member for initial proposal review - @thesahindia ( |
ProposalPlease re-state the problem that we are trying to solve in this issue.Web - Chat-Mouse scroll and slide functions reversely if pressed on mouse wheel What is the root cause of that problem?Mouse wheel direction is reversed. What changes do you think we should make in order to solve the problem?We can custom mouse wheel direction. export function useHorizontalScroll() {
const elRef = useRef();
useEffect(() => {
const el = elRef.current;
if (el) {
const onWheel = e => {
if (e.deltaY == 0) return;
e.preventDefault();
el.scrollTo({
left: el.scrollLeft + e.deltaY,
behavior: "smooth"
});
};
el.addEventListener("wheel", onWheel);
return () => el.removeEventListener("wheel", onWheel);
}
}, []);
return elRef;
} What alternative solutions did you explore? (Optional) |
I am considering presenting a proposal in the near future, and I want to verify if this is an issue worth fixing or not or whether it would be included in a wave latter on or if it will be paid out if we are able to present a solution. Is this issue a priority for you guys and will you pay out for it if a solution is presented? |
📣 @KevinBlakeLopez! 📣
|
Contributor details |
✅ Contributor details stored successfully. Thank you for contributing to Expensify! |
@thesahindia Hi, I'm also interested in presenting a proposal. Is this issue available to take on? |
@thesahindia a proposal for you here! |
I won't be able to take this. Please reassign. |
@NicMendonca I can take over |
@NicMendonca Whoops! This issue is 2 days overdue. Let's get this updated quick! |
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸 |
@NicMendonca Eep! 4 days overdue now. Issues have feelings too... |
@NicMendonca 8 days overdue is a lot. Should this be a Weekly issue? If so, feel free to change it! |
1 similar comment
@NicMendonca 8 days overdue is a lot. Should this be a Weekly issue? If so, feel free to change it! |
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸 |
@NicMendonca 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! |
📣 @situchan 🎉 An offer has been automatically sent to your Upwork account for the Contributor role 🎉 Thanks for contributing to the Expensify app! Offer link |
@situchan sorry - just saw this now! assigned you |
I am going to close this as per this update - https://expensify.slack.com/archives/C01GTK53T8Q/p1702496349813859 This isn't directly related to a roadmap issue |
If you haven’t already, check out our contributing guidelines for onboarding and email [email protected] to request to join our Slack channel!
Version Number: 1.4.14.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: Applause - Internal Team
Slack conversation:
Action Performed:
Expected Result:
While pressing on the mouse wheel, sliding should be harmonious with the scroll bar
Actual Result:
While pressing on the mouse wheel, if user tries to slide down or up, sliding functions reversely. Mouse cursor works opposite with the scroll bar.
Workaround:
Unknown
Platforms:
Which of our officially supported platforms is this issue occurring on?
Screenshots/Videos
Add any screenshot/video evidence
Bug6319865_1703001796494.2023-12-19_15-15-30.mp4
View all open jobs on GitHub
Upwork Automation - Do Not Edit
The text was updated successfully, but these errors were encountered: