I'm creating a color palette where I have a clipboard icon within a Tooltip component next to each color. On click it will copy the color's name onto the user's clipboard. When that happens, the Tooltip's message should change from "copy" to "copy success". I'm having issues trying to display the success message individually for each color.
How to properly render a success message upon clipboard click and copy
1.3k Views Asked by AudioBubble At
2
There are 2 best solutions below
0

Try passing 'event' as a parameter to your onClick function and using the stopPropagation() method. Like so:
<Tooltip title={copyMessage} placement="right">
<span
onClick={(event) => {
event.stopPropagation()
copyNameToClipboard(color.name);
setState({
copyMessage: 'copy success',
});
}}
>
This should stop your event from 'bubbling up' to other components:
https://developer.mozilla.org/en-US/docs/Web/API/Event/stopPropagation
All of you
Tooltip
components are using the same parent statethis.state.copyMessage
. If you click copy on one, that setsthis.state.copyMessage
to"copy success"
, and it gets rerendered for all other Tooltips. You need to be able to either:I'd personally go with a way to identify who was clicked.
Global declaration
Set your state onClick
Get the appropriate message for the specific color
Pass in the title
There are many ways to work around this, and this is just one I find readable!