Problem
I am using leaflet-contextmenu v1.4.0
in react-leaflet v3.2.1
. The problem is with my code below is that showColor
never updates when color
changes.
For example, if color
is 'blue'
at app initialization, showColor will know color
is 'blue'
. If color
changes to 'red'
, showColor
never updates; it seems to be immutable.
Question
How can I update callbacks within leaflet-contextmenu
menu items?
const Component = ({ color: string }) => {
var map = L.map('map', {
contextmenu: true,
contextmenuWidth: 140,
contextmenuItems: [
{
text: 'Show color',
callback: showColor,
},
],
});
function showColor() {
alert(color);
}
};