timolins / react-hot-toast

Smoking Hot React Notifications 🔥
https://react-hot-toast.com
MIT License
9.66k stars 319 forks source link

Possible for toast to appear near mouse click position? #229

Closed ADTC closed 1 year ago

ADTC commented 1 year ago

My idea is to have a toast appear near (above, below, left, right or on-top) the mouse-click position when the click was done on an action, so that the toast has an "Undo" button to reverse the action.

Would this be possible somehow? Note that there are multiple actions, dynamically generated (like a table with rows). Hopefully you won't say I have to put a <Toaster> next to every action button and use relative position. 😆 I'd rather just have the toast appear where the mouse click was or where the mouse pointer is.

(Same applies for finger tap on touchscreens.)

ADTC commented 1 year ago

Also, how could I implement a Toast with an "Undo" button which would somehow cancel a pending action?

c-eiser13 commented 1 year ago

@ADTC came across this issue looking for something else, but I had this exact requirement and used a custom hook to return the x/y coordinates of the click and used the Toaster containerStyle prop to implement.

hook: image

In the component: image

finally, the Toaster: image

The div with the ref wraps all my JSX where clicks can happen. Hope this helps...