Skip to content
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

Reorganize the copy/paste menu #743

Merged
merged 7 commits into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
165 changes: 89 additions & 76 deletions src/mapml/handlers/ContextMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ to deal in the Software without restriction, including without limitation the ri
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
/* global M */

export var ContextMenu = L.Handler.extend({
_touchstart: L.Browser.msPointer ? 'MSPointerDown' : L.Browser.pointer ? 'pointerdown' : 'touchstart',

Expand All @@ -16,22 +18,18 @@ export var ContextMenu = L.Handler.extend({
this._items = [
{
text: M.options.locale.cmBack + " (<kbd>B</kbd>)",
callback:this._goBack,
callback:this._goBack
},
{
text: M.options.locale.cmForward + " (<kbd>F</kbd>)",
callback:this._goForward,
callback:this._goForward
},
{
text: M.options.locale.cmReload + " (<kbd>R</kbd>)",
callback:this._reload,
},
{
spacer:"-",
callback:this._reload
},
{
text: M.options.locale.cmToggleControls + " (<kbd>T</kbd>)",
callback:this._toggleControls,
spacer:"-"
},
{
text: M.options.locale.cmCopyCoords + " (<kbd>C</kbd>)<span></span>",
Expand All @@ -40,83 +38,60 @@ export var ContextMenu = L.Handler.extend({
popup:true,
submenu:[
{
text:"tile",
callback:this._copyTile,
},
{
text:"tilematrix",
callback:this._copyTileMatrix,
},
{
spacer:"-",
},
{
text:"map",
callback:this._copyMap,
},
{
spacer:"-",
},
{
text:"tcrs",
callback:this._copyTCRS,
text: M.options.locale.cmCopyMapML,
callback:this._copyMapML
},
{
text:"pcrs",
callback:this._copyPCRS,
text: M.options.locale.cmCopyExtent,
callback:this._copyExtent
},
{
text:"gcrs",
callback:this._copyGCRS,
},
{
spacer:"-",
},
{
text: M.options.locale.cmCopyAll,
callback:this._copyAllCoords,
text: M.options.locale.cmCopyLocation,
callback:this._copyLocation
}
]
},
{
text: M.options.locale.cmToggleDebug + " (<kbd>D</kbd>)",
callback:this._toggleDebug,
text: M.options.locale.cmPasteLayer + " (<kbd>P</kbd>)",
callback:this._paste
},
{
text: M.options.locale.cmCopyMapML + " (<kbd>M</kbd>)",
callback:this._copyMapML,
spacer:"-"
},
{
text: M.options.locale.cmPasteLayer + " (<kbd>P</kbd>)",
callback:this._paste,
text: M.options.locale.cmToggleControls + " (<kbd>T</kbd>)",
callback:this._toggleControls
}, {
text: M.options.locale.cmToggleDebug + " (<kbd>D</kbd>)",
callback:this._toggleDebug
},
{
text: M.options.locale.cmViewSource + " (<kbd>V</kbd>)",
callback:this._viewSource,
},
callback:this._viewSource
}
];

// setting the default cs for copying location and extent
// should be public as they are used in tests
this.defExtCS = M.options.defaultExtCoor;
this.defLocCS = M.options.defaultLocCoor;
this._layerItems = [
{
text: M.options.locale.lmZoomToLayer + " (<kbd>Z</kbd>)",
callback:this._zoomToLayer
},
{
text: M.options.locale.lmCopyExtent + " (<kbd>C</kbd>)",
callback:this._copyLayerExtent
},
{
text: M.options.locale.lmCopyLayer + " (<kbd>L</kbd>)",
callback:this._copyLayer
},
}
];
this._mapMenuVisible = false;
this._keyboardEvent = false;

this._container = L.DomUtil.create("div", "mapml-contextmenu", map._container);
this._container.setAttribute('hidden', '');

for (let i = 0; i < 6; i++) {
for (let i = 0; i < 5; i++) {
this._items[i].el = this._createItem(this._container, this._items[i]);
}

Expand All @@ -126,10 +101,11 @@ export var ContextMenu = L.Handler.extend({

this._clickEvent = null;

for(let i =0;i<this._items[5].submenu.length;i++){
this._createItem(this._coordMenu,this._items[5].submenu[i],i);
for(let i =0;i<this._items[4].submenu.length;i++){
this._createItem(this._coordMenu,this._items[4].submenu[i],i);
}

this._items[5].el = this._createItem(this._container, this._items[5]);
this._items[6].el = this._createItem(this._container, this._items[6]);
this._items[7].el = this._createItem(this._container, this._items[7]);
this._items[8].el = this._createItem(this._container, this._items[8]);
Expand Down Expand Up @@ -188,13 +164,37 @@ export var ContextMenu = L.Handler.extend({
}, this);
},

_copyLayerExtent: function (e) {
let context = e instanceof KeyboardEvent ? this._map.contextMenu : this.contextMenu,
layerElem = context._layerClicked.layer._layerEl,
tL = layerElem.extent.topLeft.pcrs,
bR = layerElem.extent.bottomRight.pcrs;
_updateCS: function () {
if (this.defExtCS !== M.options.defaultExtCoor || this.defLocCS !== M.options.defaultLocCoor) {
this.defExtCS = M.options.defaultExtCoor;
this.defLocCS = M.options.defaultLocCoor;
}
},

let data = `<map-meta name="extent" content="top-left-easting=${tL.horizontal}, top-left-northing=${tL.vertical}, bottom-right-easting=${bR.horizontal}, bottom-right-northing=${bR.vertical}"></map-meta>`;
_copyExtent: function (e) {
let context = e instanceof KeyboardEvent ? this._map.contextMenu : this.contextMenu,
coord = context.defExtCS? context.defExtCS.toLowerCase() : 'pcrs',
tL = e instanceof KeyboardEvent? this.extent.topLeft[coord] : this.options.mapEl.extent.topLeft[coord],
bR = e instanceof KeyboardEvent? this.extent.bottomRight[coord] : this.options.mapEl.extent.bottomRight[coord],
data = "";
switch(coord) {
case 'MapML':
default:
if (coord === 'pcrs') {
data = `<map-meta name="extent" content="top-left-easting=${tL.horizontal}, top-left-northing=${tL.vertical}, bottom-right-easting=${bR.horizontal}, bottom-right-northing=${bR.vertical}"></map-meta>`;
} else if (coord === 'gcrs') {
data = `<map-meta name="extent" content="top-left-longitude=${tL.horizontal},top-left-latitude=${tL.vertical},bottom-right-longitude=${bR.horizontal},bottom-right-latitude=${bR.vertical}"></map-meta>`;
} else if (coord === 'tcrs') {
data = `<map-meta name="extent" content="top-left-x=${tL[0].horizontal},top-left-y=${tL[0].vertical},
bottom-right-x=${bR[bR.length - 1].horizontal},bottom-right-y=${bR[bR.length - 1].vertical}"></map-meta>`;
} else if (coord === 'tilematrix') {
data = `<map-meta name="extent" content="top-left-column=${tL[0].horizontal},top-left-row=${tL[0].vertical},
bottom-right-column=${bR[bR.length - 1].horizontal},bottom-right-row=${bR[bR.length - 1].vertical}"></map-meta>`;
} else {
console.log('not support');
}
break;
}
context._copyData(data);
},

Expand Down Expand Up @@ -272,10 +272,25 @@ export var ContextMenu = L.Handler.extend({
document.body.removeChild(el);
},

_copyLocation: function(e){
const menu = this.contextMenu;
switch(menu.defLocCS.toLowerCase()) {
case 'tile': menu._copyTile.call(this, e); break;
case 'tilematrix': menu._copyTileMatrix.call(this, e); break;
case 'map': menu._copyMap.call(this, e); break;
case 'tcrs': menu._copyTCRS.call(this, e); break;
case 'pcrs': menu._copyPCRS.call(this, e); break;
case 'gcrs':
default:
menu._copyGCRS.call(this, e);
break;
}
},

_copyGCRS: function(e){
let mapEl = this.options.mapEl,
click = this.contextMenu._clickEvent;
this.contextMenu._copyData(`z:${mapEl.zoom}, lon :${click.latlng.lng.toFixed(6)}, lat:${click.latlng.lat.toFixed(6)}`);
this.contextMenu._copyData(`lon :${click.latlng.lng.toFixed(6)}, lat:${click.latlng.lat.toFixed(6)}`);
},

_copyTCRS: function(e){
Expand All @@ -299,7 +314,7 @@ export var ContextMenu = L.Handler.extend({
point = mapEl._map.project(click.latlng),
scale = mapEl._map.options.crs.scale(+mapEl.zoom),
pcrs = mapEl._map.options.crs.transformation.untransform(point,scale);
this.contextMenu._copyData(`z:${mapEl.zoom}, easting:${pcrs.x.toFixed(2)}, northing:${pcrs.y.toFixed(2)}`);
this.contextMenu._copyData(`easting:${pcrs.x.toFixed(2)}, northing:${pcrs.y.toFixed(2)}`);
},

_copyTile: function(e){
Expand Down Expand Up @@ -453,14 +468,16 @@ export var ContextMenu = L.Handler.extend({
this._showAtPoint(e.containerPoint, e, this._layerMenu);
} else if(elem.classList.contains("leaflet-container") || elem.classList.contains("mapml-debug-extent") ||
elem.tagName === "path") {
this._layerClicked = undefined;
let layerList = this._map.options.mapEl.layers;
this._layerClicked = Array.from(layerList).find(el => el.checked);
// the 'hidden' attribute must be removed before any attempt to get the size of container
this._container.removeAttribute('hidden');
this._showAtPoint(e.containerPoint, e, this._container);
this._updateCS();
}
if(e.originalEvent.button === 0 || e.originalEvent.button === -1){
this._keyboardEvent = true;
if(this._layerClicked){
if(this._layerClicked.className.includes('mapml-layer-item')){
let activeEl = document.activeElement;
this._elementInFocus = activeEl.shadowRoot.activeElement;
this._layerMenuTabs = 1;
Expand Down Expand Up @@ -587,7 +604,7 @@ export var ContextMenu = L.Handler.extend({
L.DomEvent.stop(e);
this._focusOnLayerControl();
}
} else if(key !== 16 && key!== 9 && !(!this._layerClicked && key === 67) && path[0].innerText !== (M.options.locale.cmCopyCoords + " (C)")){
} else if(key !== 16 && key!== 9 && !(!(this._layerClicked.className.includes('mapml-layer-item')) && key === 67) && path[0].innerText !== (M.options.locale.cmCopyCoords + " (C)")){
this._hide();
}
switch(key){
Expand All @@ -600,13 +617,9 @@ export var ContextMenu = L.Handler.extend({
this._goBack(e);
break;
case 67: //C KEY
if(this._layerClicked){
this._copyLayerExtent(e);
} else {
this._copyCoords({
latlng:this._map.getCenter()
});
}
this._copyCoords({
latlng:this._map.getCenter()
});
break;
case 68: //D KEY
this._toggleDebug(e);
Expand All @@ -618,7 +631,7 @@ export var ContextMenu = L.Handler.extend({
this._goForward(e);
break;
case 76: //L KEY
if(this._layerClicked)
if(this._layerClicked.className.includes('mapml-layer-item'))
this._copyLayer(e);
break;
case 80: //P KEY
Expand All @@ -634,7 +647,7 @@ export var ContextMenu = L.Handler.extend({
this._viewSource(e);
break;
case 90: //Z KEY
if(this._layerClicked)
if(this._layerClicked.className.includes('mapml-layer-item'))
this._zoomToLayer(e);
break;
}
Expand Down Expand Up @@ -677,7 +690,7 @@ export var ContextMenu = L.Handler.extend({
if(!e.relatedTarget || !e.relatedTarget.parentElement ||
e.relatedTarget.parentElement.classList.contains("mapml-submenu") ||
e.relatedTarget.classList.contains("mapml-submenu"))return;
let menu = this._coordMenu, copyEl = this._items[5].el.el;
let menu = this._coordMenu, copyEl = this._items[4].el.el;
copyEl.setAttribute("aria-expanded","false");
menu.setAttribute('hidden', '');
},
Expand Down
10 changes: 6 additions & 4 deletions src/mapml/options.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
export var Options = {
featureIndexOverlayOption: false,
announceMovement: false,
defaultExtCoor: 'pcrs',
defaultLocCoor: 'gcrs',
locale: {
cmBack: "Back",
cmForward: "Forward",
cmReload: "Reload",
cmToggleControls: "Toggle Controls",
cmCopyCoords: "Copy Coordinates",
cmCopyCoords: "Copy",
cmCopyMapML: "Map",
cmCopyExtent: "Extent",
cmCopyLocation: "Location",
cmToggleDebug: "Toggle Debug Mode",
cmCopyMapML: "Copy MapML",
cmPasteLayer: "Paste",
cmViewSource: "View Map Source",
cmCopyAll: "All",
lmZoomToLayer: "Zoom To Layer",
lmCopyExtent: "Copy Extent",
lmCopyLayer: "Copy Layer",
lcOpacity: "Opacity",
btnZoomIn: "Zoom in",
Expand Down
12 changes: 0 additions & 12 deletions test/e2e/core/layerContextMenu.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,6 @@ test.describe("Playwright Layer Context Menu Tests", () => {
expect(menuDisplay).toEqual("block");
});

test("Layer context menu copy layer extent", async () => {
await page.keyboard.press("c");
await page.click("body > textarea#messageExtent");
await page.keyboard.press("Control+v");
const copyValue = await page.$eval(
"body > textarea#messageExtent",
(text) => text.value
);

expect(copyValue).toEqual("<map-meta name=\"extent\" content=\"top-left-easting=-6207743.103886206, top-left-northing=10861943.103886206, bottom-right-easting=3952277.216154434, bottom-right-northing=-3362085.3441706896\"></map-meta>");
});

test("Layer context menu copy layer", async () => {
await page.hover("div > div.leaflet-control-container > div.leaflet-top.leaflet-right > div");
await page.click("div > div.leaflet-control-container > div.leaflet-top.leaflet-right > div > section > div.leaflet-control-layers-overlays > fieldset:nth-child(1) > div:nth-child(1) > label > span",
Expand Down
Loading