From 6dfaaabf704febfc9f714c8d673f2e30984ab2ba Mon Sep 17 00:00:00 2001 From: James Lyne Date: Mon, 24 May 2021 18:24:15 +0100 Subject: [PATCH] Cleanup --- src/components/map/MapContextMenu.vue | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/components/map/MapContextMenu.vue b/src/components/map/MapContextMenu.vue index 80d9537..403b431 100644 --- a/src/components/map/MapContextMenu.vue +++ b/src/components/map/MapContextMenu.vue @@ -51,7 +51,7 @@ export default defineComponent({ currentZoom = computed(() => store.state.currentZoom), location = computed(() => { - if(!event.value) { + if (!event.value) { return {x: 0, y: 0, z: 0} } @@ -70,7 +70,7 @@ export default defineComponent({ //Url to copy url = computed(() => { - if(!currentWorld.value || !currentMap.value) { + if (!currentWorld.value || !currentMap.value) { return ''; } @@ -81,14 +81,14 @@ export default defineComponent({ }), style = computed(() => { - if(!menuElement.value || !event.value) { + if (!menuElement.value || !event.value) { return {}; } //Don't position offscreen const x = Math.min( window.innerWidth - menuElement.value.offsetWidth - 10, - event.value.originalEvent.clientX + event.value.originalEvent.clientX ), y = Math.min( window.innerHeight - menuElement.value.offsetHeight - 10, @@ -101,7 +101,6 @@ export default defineComponent({ }); const handleEsc = (e: KeyboardEvent) => { - console.log(e); if (e.key === "Escape") { closeContextMenu(); } @@ -110,13 +109,13 @@ export default defineComponent({ event.value = null; }, pan = () => { - if(event.value) { + if (event.value) { props.leaflet.panTo(event.value.latlng); } }; watch(menuVisible, visible => { - if(visible) { + if (visible) { requestAnimationFrame(() => locationButton.value && locationButton.value.focus()); } });