qwc2 2025.10.13 → 2025.10.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/display.js +30 -1
- package/actions/editing.js +22 -1
- package/actions/layerinfo.js +13 -1
- package/actions/layers.js +213 -3
- package/actions/localConfig.js +58 -1
- package/actions/locale.js +21 -1
- package/actions/locate.js +26 -1
- package/actions/logging.js +10 -1
- package/actions/map.js +105 -2
- package/actions/measurement.js +12 -1
- package/actions/processNotifications.js +37 -1
- package/actions/redlining.js +18 -1
- package/actions/redliningPick.js +12 -1
- package/actions/search.js +12 -1
- package/actions/serviceinfo.js +12 -1
- package/actions/task.js +55 -3
- package/actions/theme.js +339 -19
- package/actions/windows.js +164 -5
- package/components/AppMenu.js +435 -3
- package/components/AttributeForm.js +928 -32
- package/components/AttributeTableWidget.js +1105 -13
- package/components/AutoEditForm.js +189 -3
- package/components/CoordinateDisplayer.js +78 -2
- package/components/EditComboField.js +190 -6
- package/components/EditUploadField.js +315 -3
- package/components/ExportSelection.js +203 -2
- package/components/FullscreenSwitcher.js +90 -3
- package/components/Icon.js +81 -2
- package/components/IdentifyViewer.js +1161 -6
- package/components/ImportLayer.js +718 -20
- package/components/LayerInfoWindow.js +145 -2
- package/components/LinkFeatureForm.js +246 -5
- package/components/MapButton.js +88 -2
- package/components/MapSelection.js +287 -8
- package/components/MessageBar.js +68 -2
- package/components/NumericInputWindow.js +359 -2
- package/components/PickFeature.js +266 -2
- package/components/PluginsContainer.js +227 -8
- package/components/PrintSelection.js +620 -49
- package/components/ProcessNotifications.js +104 -2
- package/components/QtDesignerForm.js +1137 -18
- package/components/ResizeableWindow.js +591 -8
- package/components/SearchBox.js +1307 -20
- package/components/ServiceInfoWindow.js +107 -2
- package/components/SideBar.js +204 -4
- package/components/StandardApp.js +381 -20
- package/components/Swipeable.js +15 -1
- package/components/TaskBar.js +85 -2
- package/components/ThemeLayersListWindow.js +216 -4
- package/components/ThemeList.js +381 -7
- package/components/Toolbar.js +106 -2
- package/components/WindowManager.js +178 -2
- package/components/map/OlLayer.js +257 -6
- package/components/map/OlMap.js +405 -5
- package/components/map/layers/BingLayer.js +31 -2
- package/components/map/layers/GoogleLayer.js +222 -19
- package/components/map/layers/GraticuleLayer.js +21 -1
- package/components/map/layers/ImageLayer.js +15 -1
- package/components/map/layers/MVTLayer.js +52 -2
- package/components/map/layers/OSMLayer.js +24 -2
- package/components/map/layers/OverlayLayer.js +55 -3
- package/components/map/layers/VectorLayer.js +173 -8
- package/components/map/layers/WFSLayer.js +220 -6
- package/components/map/layers/WMSLayer.js +180 -6
- package/components/map/layers/WMTSLayer.js +67 -3
- package/components/map/layers/XYZLayer.js +24 -2
- package/components/map/layers/index.js +28 -1
- package/components/map3d/EditDataset3D.js +190 -3
- package/components/map3d/HeightProfile3D.js +402 -3
- package/components/map3d/ImportObjects3D.js +162 -2
- package/components/map3d/Map3D.js +1304 -38
- package/components/map3d/MapControls3D.js +392 -7
- package/components/map3d/SearchField3D.js +183 -11
- package/components/map3d/View3DSwitcher.js +98 -2
- package/components/map3d/drawtool/CreateTool3D.js +174 -4
- package/components/map3d/drawtool/EditTool3D.js +590 -6
- package/components/map3d/drawtool/NumericInput3D.js +336 -4
- package/components/map3d/layers/GeoTIFFLayer3D.js +15 -1
- package/components/map3d/layers/VectorLayer3D.js +53 -2
- package/components/map3d/layers/WFSLayer3D.js +109 -3
- package/components/map3d/layers/WMSLayer3D.js +70 -2
- package/components/map3d/layers/WMTSLayer3D.js +27 -3
- package/components/map3d/layers/index.js +14 -1
- package/components/map3d/utils/FirstPersonControls3D.js +423 -16
- package/components/map3d/utils/MiscUtils3D.js +221 -13
- package/components/map3d/utils/OrbitControls3D.js +176 -5
- package/components/map3d/utils/Tiles3DStyle.js +238 -9
- package/components/share/ShareLink.js +54 -2
- package/components/share/ShareQRCode.js +62 -2
- package/components/share/ShareSocials.js +125 -3
- package/components/timeline/FixedTimeline.js +236 -5
- package/components/timeline/InfiniteTimeline.js +347 -8
- package/components/timeline/TimelineFeaturesSlider.js +439 -5
- package/components/widgets/AccordeonWidget.js +96 -2
- package/components/widgets/ButtonBar.js +124 -2
- package/components/widgets/ColorButton.js +201 -3
- package/components/widgets/ComboBox.js +166 -2
- package/components/widgets/CopyButton.js +110 -2
- package/components/widgets/DateTimeInput.js +100 -3
- package/components/widgets/EditableSelect.js +230 -3
- package/components/widgets/FileSelector.js +128 -4
- package/components/widgets/Input.js +124 -2
- package/components/widgets/InputContainer.js +96 -2
- package/components/widgets/LayerCatalogWidget.js +219 -3
- package/components/widgets/MenuButton.js +157 -1
- package/components/widgets/ModalDialog.js +64 -2
- package/components/widgets/NavBar.js +119 -2
- package/components/widgets/NumberInput.js +226 -4
- package/components/widgets/PopupMenu.js +72 -1
- package/components/widgets/Primitives.js +6 -1
- package/components/widgets/ReCaptchaWidget.js +55 -1
- package/components/widgets/SearchWidget.js +255 -2
- package/components/widgets/Spinner.js +44 -2
- package/components/widgets/SuggestionInput.js +77 -2
- package/components/widgets/TextInput.js +308 -2
- package/components/widgets/ToggleSwitch.js +85 -2
- package/components/widgets/VectorLayerPicker.js +85 -3
- package/libs/openlayers.js +225 -5
- package/package.json +1 -1
- package/plugins/API.js +358 -15
- package/plugins/AttributeTable.js +109 -3
- package/plugins/Authentication.js +130 -5
- package/plugins/BackgroundSwitcher.js +218 -4
- package/plugins/Bookmark.js +289 -3
- package/plugins/BottomBar.js +298 -4
- package/plugins/CookiePopup.js +67 -3
- package/plugins/Cyclomedia.js +442 -5
- package/plugins/Editing.js +497 -9
- package/plugins/FeatureForm.js +366 -4
- package/plugins/FeatureSearch.js +458 -3
- package/plugins/GeometryDigitizer.js +664 -7
- package/plugins/HeightProfile.js +763 -15
- package/plugins/Help.js +102 -3
- package/plugins/HomeButton.js +80 -3
- package/plugins/Identify.js +543 -5
- package/plugins/LayerCatalog.js +215 -4
- package/plugins/LayerTree.js +1194 -6
- package/plugins/LocateButton.js +94 -3
- package/plugins/Map.js +320 -16
- package/plugins/MapCompare.js +94 -3
- package/plugins/MapCopyright.js +127 -5
- package/plugins/MapExport.js +613 -20
- package/plugins/MapFilter.js +868 -12
- package/plugins/MapInfoTooltip.js +277 -3
- package/plugins/MapLegend.js +253 -4
- package/plugins/MapTip.js +290 -4
- package/plugins/Measure.js +220 -4
- package/plugins/NewsPopup.js +137 -3
- package/plugins/OverviewMap.js +167 -7
- package/plugins/Panoramax.js +340 -2
- package/plugins/Portal.js +199 -4
- package/plugins/Print.js +1231 -15
- package/plugins/Redlining.js +750 -6
- package/plugins/Reports.js +332 -3
- package/plugins/Routing.js +1278 -15
- package/plugins/ScratchDrawing.js +173 -5
- package/plugins/Settings.js +241 -4
- package/plugins/Share.js +198 -3
- package/plugins/StartupMarker.js +84 -4
- package/plugins/TaskButton.js +88 -3
- package/plugins/ThemeSwitcher.js +164 -4
- package/plugins/TimeManager.js +971 -10
- package/plugins/TopBar.js +300 -7
- package/plugins/TourGuide.js +213 -2
- package/plugins/ValueTool.js +419 -4
- package/plugins/View3D.js +519 -14
- package/plugins/ZoomButtons.js +165 -3
- package/plugins/map/EditingSupport.js +199 -7
- package/plugins/map/LocateSupport.js +260 -4
- package/plugins/map/MeasurementSupport.js +216 -8
- package/plugins/map/RedliningPickSupport.js +201 -7
- package/plugins/map/RedliningSupport.js +726 -17
- package/plugins/map/SnapInteraction.js +101 -1
- package/plugins/map/SnapSupport.js +210 -2
- package/plugins/map/SnappingSupport.js +356 -17
- package/plugins/map3d/BackgroundSwitcher3D.js +44 -3
- package/plugins/map3d/BottomBar3D.js +118 -3
- package/plugins/map3d/Compare3D.js +422 -8
- package/plugins/map3d/Draw3D.js +353 -6
- package/plugins/map3d/ExportObjects3D.js +393 -18
- package/plugins/map3d/HideObjects3D.js +313 -12
- package/plugins/map3d/Identify3D.js +283 -12
- package/plugins/map3d/LayerTree3D.js +323 -3
- package/plugins/map3d/MapCopyright3D.js +128 -5
- package/plugins/map3d/MapExport3D.js +590 -10
- package/plugins/map3d/MapLight3D.js +553 -6
- package/plugins/map3d/Measure3D.js +571 -20
- package/plugins/map3d/OverviewMap3D.js +169 -3
- package/plugins/map3d/Settings3D.js +73 -3
- package/plugins/map3d/TopBar3D.js +207 -9
- package/plugins/redlining/RedliningBufferSupport.js +206 -3
- package/reducers/display.js +34 -2
- package/reducers/editing.js +68 -3
- package/reducers/index.js +9 -1
- package/reducers/layerinfo.js +26 -2
- package/reducers/layers.js +456 -9
- package/reducers/localConfig.js +122 -2
- package/reducers/locale.js +38 -2
- package/reducers/locate.js +40 -2
- package/reducers/map.js +176 -5
- package/reducers/measurement.js +42 -2
- package/reducers/processNotifications.js +49 -2
- package/reducers/redlining.js +50 -2
- package/reducers/redliningPick.js +27 -2
- package/reducers/search.js +20 -1
- package/reducers/serviceinfo.js +25 -2
- package/reducers/task.js +45 -2
- package/reducers/theme.js +51 -2
- package/reducers/windows.js +203 -2
- package/scripts/dist.sh +1 -1
- package/scripts/gen-plugin-docs.js +152 -2
- package/scripts/makeIconkit.js +85 -6
- package/scripts/themesConfig.js +742 -40
- package/scripts/updateTranslations.js +251 -10
- package/selectors/searchproviders.js +44 -2
- package/stores/StandardStore.js +42 -2
- package/utils/ConfigUtils.js +84 -3
- package/utils/CoordinatesUtils.js +234 -23
- package/utils/DxfUtils.js +237 -11
- package/utils/EditingInterface.js +421 -87
- package/utils/EditingUtils.js +357 -13
- package/utils/ElevationInterface.js +83 -22
- package/utils/FeatureStyles.js +429 -5
- package/utils/IdentifyUtils.js +443 -7
- package/utils/ImageEditor.js +79 -9
- package/utils/LayerUtils.js +1516 -50
- package/utils/LocaleUtils.js +117 -7
- package/utils/MapUtils.js +241 -59
- package/utils/MeasureUtils.js +323 -2
- package/utils/MiscUtils.js +189 -11
- package/utils/PermaLinkUtils.js +429 -6
- package/utils/PluginStore.js +27 -1
- package/utils/ResourceRegistry.js +15 -1
- package/utils/RoutingInterface.js +307 -7
- package/utils/SearchProviders.js +722 -19
- package/utils/ServiceLayerUtils.js +669 -14
- package/utils/Signal.js +32 -2
- package/utils/ThemeUtils.js +341 -7
- package/utils/VectorLayerUtils.js +589 -15
- package/utils/expr_grammar/grammar.js +2239 -2
- package/utils/expr_grammar/test.js +65 -3
|
@@ -1,7 +1,150 @@
|
|
|
1
|
-
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
3
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
4
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
5
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
6
|
+
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
|
|
7
|
+
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
|
8
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
9
|
+
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
|
|
10
|
+
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
|
|
11
|
+
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
|
|
12
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
+
/**
|
|
2
16
|
* Copyright 2016-2024 Sourcepole AG
|
|
3
17
|
* All rights reserved.
|
|
4
18
|
*
|
|
5
19
|
* This source code is licensed under the BSD-style license found in the
|
|
6
20
|
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
import React from 'react';
|
|
24
|
+
import { connect } from 'react-redux';
|
|
25
|
+
import DOMPurify from 'dompurify';
|
|
26
|
+
import PropTypes from 'prop-types';
|
|
27
|
+
import { setActiveLayerInfo } from '../actions/layerinfo';
|
|
28
|
+
import ResizeableWindow from '../components/ResizeableWindow';
|
|
29
|
+
import LayerUtils from '../utils/LayerUtils';
|
|
30
|
+
import LocaleUtils from '../utils/LocaleUtils';
|
|
31
|
+
import MapUtils from '../utils/MapUtils';
|
|
32
|
+
import MiscUtils from '../utils/MiscUtils';
|
|
33
|
+
import { Image } from './widgets/Primitives';
|
|
34
|
+
import './style/LayerInfoWindow.css';
|
|
35
|
+
var LayerInfoWindow = /*#__PURE__*/function (_React$Component) {
|
|
36
|
+
function LayerInfoWindow() {
|
|
37
|
+
var _this;
|
|
38
|
+
_classCallCheck(this, LayerInfoWindow);
|
|
39
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
40
|
+
args[_key] = arguments[_key];
|
|
41
|
+
}
|
|
42
|
+
_this = _callSuper(this, LayerInfoWindow, [].concat(args));
|
|
43
|
+
_defineProperty(_this, "renderRow", function (title, content) {
|
|
44
|
+
var html = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
45
|
+
if (content) {
|
|
46
|
+
return /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, title, ":"), html ? /*#__PURE__*/React.createElement("td", {
|
|
47
|
+
dangerouslySetInnerHTML: {
|
|
48
|
+
__html: MiscUtils.addLinkAnchors(DOMPurify.sanitize(content))
|
|
49
|
+
}
|
|
50
|
+
}) : /*#__PURE__*/React.createElement("td", null, content));
|
|
51
|
+
}
|
|
52
|
+
return null;
|
|
53
|
+
});
|
|
54
|
+
_defineProperty(_this, "renderMetadata", function (metadata) {
|
|
55
|
+
return metadata.map(function (entry) {
|
|
56
|
+
return _this.renderRow(LocaleUtils.tr(entry.label), entry.content, true);
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
_defineProperty(_this, "renderScale", function (scale) {
|
|
60
|
+
if (scale === 0) {
|
|
61
|
+
return "0";
|
|
62
|
+
} else if (scale >= 1) {
|
|
63
|
+
return "1:" + Math.round(scale);
|
|
64
|
+
} else {
|
|
65
|
+
return Math.round(1 / scale) + ":1";
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
_defineProperty(_this, "onClose", function () {
|
|
69
|
+
_this.props.setActiveLayerInfo(null, null);
|
|
70
|
+
});
|
|
71
|
+
return _this;
|
|
72
|
+
}
|
|
73
|
+
_inherits(LayerInfoWindow, _React$Component);
|
|
74
|
+
return _createClass(LayerInfoWindow, [{
|
|
75
|
+
key: "renderLink",
|
|
76
|
+
value: function renderLink(text, url) {
|
|
77
|
+
if (url) {
|
|
78
|
+
return /*#__PURE__*/React.createElement("a", {
|
|
79
|
+
href: url,
|
|
80
|
+
rel: "noreferrer",
|
|
81
|
+
target: "_blank"
|
|
82
|
+
}, text);
|
|
83
|
+
} else if (text) {
|
|
84
|
+
return text;
|
|
85
|
+
}
|
|
86
|
+
return null;
|
|
87
|
+
}
|
|
88
|
+
}, {
|
|
89
|
+
key: "render",
|
|
90
|
+
value: function render() {
|
|
91
|
+
if (!this.props.layer || !this.props.sublayer) {
|
|
92
|
+
return null;
|
|
93
|
+
}
|
|
94
|
+
var legend = null;
|
|
95
|
+
var scale = MapUtils.computeForZoom(this.props.map.scales, this.props.map.zoom);
|
|
96
|
+
var legendUrl = LayerUtils.getLegendUrl(this.props.layer, this.props.sublayer, scale, this.props.map, this.props.bboxDependentLegend, this.props.scaleDependentLegend);
|
|
97
|
+
if (legendUrl) {
|
|
98
|
+
legend = /*#__PURE__*/React.createElement(Image, {
|
|
99
|
+
className: "layer-info-window-legend",
|
|
100
|
+
src: legendUrl
|
|
101
|
+
});
|
|
102
|
+
} else if (this.props.layer.color) {
|
|
103
|
+
legend = /*#__PURE__*/React.createElement("span", {
|
|
104
|
+
className: "layer-info-window-coloricon",
|
|
105
|
+
style: {
|
|
106
|
+
backgroundColor: this.props.layer.color
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
return /*#__PURE__*/React.createElement(ResizeableWindow, {
|
|
111
|
+
icon: "info-sign",
|
|
112
|
+
initialHeight: this.props.layerInfoGeometry.initialHeight,
|
|
113
|
+
initialWidth: this.props.layerInfoGeometry.initialWidth,
|
|
114
|
+
initialX: this.props.layerInfoGeometry.initialX,
|
|
115
|
+
initialY: this.props.layerInfoGeometry.initialY,
|
|
116
|
+
initiallyDocked: this.props.layerInfoGeometry.initiallyDocked,
|
|
117
|
+
onClose: this.onClose,
|
|
118
|
+
title: LocaleUtils.tr("layerinfo.title")
|
|
119
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
120
|
+
className: "layer-info-window-body",
|
|
121
|
+
role: "body"
|
|
122
|
+
}, /*#__PURE__*/React.createElement("h4", {
|
|
123
|
+
className: "layer-info-window-title"
|
|
124
|
+
}, this.props.sublayer.title), /*#__PURE__*/React.createElement("div", {
|
|
125
|
+
className: "layer-info-window-frame"
|
|
126
|
+
}, /*#__PURE__*/React.createElement("table", {
|
|
127
|
+
className: "layer-info-window-table"
|
|
128
|
+
}, /*#__PURE__*/React.createElement("tbody", null, this.renderRow(LocaleUtils.tr("layerinfo.abstract"), this.props.sublayer["abstract"], true), this.props.sublayer.attribution ? this.renderRow(LocaleUtils.tr("layerinfo.attribution"), this.renderLink(this.props.sublayer.attribution.Title, this.props.sublayer.attribution.OnlineResource)) : null, this.renderRow(LocaleUtils.tr("layerinfo.keywords"), this.props.sublayer.keywords), this.renderRow(LocaleUtils.tr("layerinfo.dataUrl"), this.renderLink(this.props.sublayer.dataUrl, this.props.sublayer.dataUrl)), this.renderRow(LocaleUtils.tr("layerinfo.metadataUrl"), this.renderLink(this.props.sublayer.metadataUrl, this.props.sublayer.metadataUrl)), this.props.sublayer.minScale !== undefined ? this.renderRow(LocaleUtils.tr("layerinfo.maxscale"), this.renderScale(this.props.sublayer.minScale)) : null, this.props.sublayer.maxScale !== undefined ? this.renderRow(LocaleUtils.tr("layerinfo.minscale"), this.renderScale(this.props.sublayer.maxScale)) : null, this.renderRow(LocaleUtils.tr("layerinfo.legend"), legend), this.props.sublayer.metadata !== undefined ? this.renderMetadata(this.props.sublayer.metadata) : null)))));
|
|
129
|
+
}
|
|
130
|
+
}]);
|
|
131
|
+
}(React.Component);
|
|
132
|
+
_defineProperty(LayerInfoWindow, "propTypes", {
|
|
133
|
+
bboxDependentLegend: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
|
|
134
|
+
layer: PropTypes.object,
|
|
135
|
+
layerInfoGeometry: PropTypes.object,
|
|
136
|
+
map: PropTypes.object,
|
|
137
|
+
scaleDependentLegend: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
|
|
138
|
+
setActiveLayerInfo: PropTypes.func,
|
|
139
|
+
sublayer: PropTypes.object
|
|
140
|
+
});
|
|
141
|
+
var selector = function selector(state) {
|
|
142
|
+
return {
|
|
143
|
+
map: state.map,
|
|
144
|
+
layer: state.layerinfo.layer,
|
|
145
|
+
sublayer: state.layerinfo.sublayer
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
export default connect(selector, {
|
|
149
|
+
setActiveLayerInfo: setActiveLayerInfo
|
|
150
|
+
})(LayerInfoWindow);
|
|
@@ -1,10 +1,251 @@
|
|
|
1
|
-
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
5
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
6
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
7
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
8
|
+
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
|
|
9
|
+
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
|
10
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11
|
+
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
|
|
12
|
+
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
|
|
13
|
+
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
|
|
14
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
16
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
17
|
+
/**
|
|
2
18
|
* Copyright 2017-2024 Sourcepole AG
|
|
3
19
|
* All rights reserved.
|
|
4
20
|
*
|
|
5
21
|
* This source code is licensed under the BSD-style license found in the
|
|
6
22
|
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
import React from 'react';
|
|
26
|
+
import { connect } from 'react-redux';
|
|
27
|
+
import PropTypes from 'prop-types';
|
|
28
|
+
import { setEditContext } from '../actions/editing';
|
|
29
|
+
import { LayerRole, addLayerFeatures, removeLayer } from '../actions/layers';
|
|
30
|
+
import { getFeatureTemplate } from '../utils/EditingUtils';
|
|
31
|
+
import LocaleUtils from '../utils/LocaleUtils';
|
|
32
|
+
import MapUtils from '../utils/MapUtils';
|
|
33
|
+
import AttributeForm from './AttributeForm';
|
|
34
|
+
import './style/LinkFeatureForm.css';
|
|
35
|
+
var LinkFeatureForm = /*#__PURE__*/function (_React$Component) {
|
|
36
|
+
function LinkFeatureForm() {
|
|
37
|
+
var _this;
|
|
38
|
+
_classCallCheck(this, LinkFeatureForm);
|
|
39
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
40
|
+
args[_key] = arguments[_key];
|
|
41
|
+
}
|
|
42
|
+
_this = _callSuper(this, LinkFeatureForm, [].concat(args));
|
|
43
|
+
_defineProperty(_this, "state", {
|
|
44
|
+
editContext: {},
|
|
45
|
+
pickedFeatures: null,
|
|
46
|
+
highlightedFeature: null
|
|
47
|
+
});
|
|
48
|
+
_defineProperty(_this, "childPickQuery", function (coordinate) {
|
|
49
|
+
var scale = Math.round(MapUtils.computeForZoom(_this.props.map.scales, _this.props.map.zoom));
|
|
50
|
+
_this.props.iface.getFeature(_this.props.editConfig, coordinate, _this.props.map.projection, scale, 96, function (featureCollection) {
|
|
51
|
+
var features = featureCollection ? featureCollection.features : null;
|
|
52
|
+
if (features && features.length === 1) {
|
|
53
|
+
if (!_this.props.pickFilter) {
|
|
54
|
+
_this.props.finished(features[0]);
|
|
55
|
+
} else {
|
|
56
|
+
var newFeature = _this.props.pickFilter(features[0]);
|
|
57
|
+
if (newFeature) {
|
|
58
|
+
_this.props.finished(newFeature);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
} else {
|
|
62
|
+
_this.setState({
|
|
63
|
+
pickedFeatures: features
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
_defineProperty(_this, "finish", function () {
|
|
69
|
+
var editContext = _this.props.editing.contexts[_this.props.editContextId];
|
|
70
|
+
_this.props.finished(editContext.feature);
|
|
71
|
+
});
|
|
72
|
+
_defineProperty(_this, "hoverFeature", function (feature) {
|
|
73
|
+
var layer = {
|
|
74
|
+
id: _this.props.editContextId + "-pick-selection",
|
|
75
|
+
role: LayerRole.SELECTION
|
|
76
|
+
};
|
|
77
|
+
_this.props.addLayerFeatures(layer, [feature], true);
|
|
78
|
+
_this.setState({
|
|
79
|
+
highlightedFeature: feature.id
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
_defineProperty(_this, "unhoverFeature", function (feature) {
|
|
83
|
+
if (_this.state.highlightedFeature === feature.id) {
|
|
84
|
+
_this.props.removeLayer(_this.props.editContextId + "-pick-selection");
|
|
85
|
+
_this.setState({
|
|
86
|
+
highlightedFeature: null
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
_defineProperty(_this, "pickFeatureSelected", function (feature) {
|
|
91
|
+
_this.unhoverFeature(feature);
|
|
92
|
+
if (!_this.props.pickFilter) {
|
|
93
|
+
_this.props.finished(feature);
|
|
94
|
+
} else {
|
|
95
|
+
var newFeature = _this.props.pickFilter(feature);
|
|
96
|
+
if (newFeature) {
|
|
97
|
+
_this.props.finished(newFeature);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
_defineProperty(_this, "onDiscard", function () {
|
|
102
|
+
var editContext = _this.props.editing.contexts[_this.props.editContextId];
|
|
103
|
+
if (editContext.action === "Draw") {
|
|
104
|
+
// Discarded draw = cancel
|
|
105
|
+
_this.props.finished(null);
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
return _this;
|
|
109
|
+
}
|
|
110
|
+
_inherits(LinkFeatureForm, _React$Component);
|
|
111
|
+
return _createClass(LinkFeatureForm, [{
|
|
112
|
+
key: "componentDidMount",
|
|
113
|
+
value: function componentDidMount() {
|
|
114
|
+
var _this2 = this;
|
|
115
|
+
if (this.props.action === 'Edit') {
|
|
116
|
+
if (this.props.feature) {
|
|
117
|
+
this.props.setEditContext(this.props.editContextId, {
|
|
118
|
+
action: 'Pick',
|
|
119
|
+
feature: this.props.feature,
|
|
120
|
+
geomType: this.props.editConfig.geomType
|
|
121
|
+
});
|
|
122
|
+
} else {
|
|
123
|
+
this.props.iface.getFeatureById(this.props.editConfig, this.props.featureId, this.props.map.projection, function (result) {
|
|
124
|
+
if (result) {
|
|
125
|
+
_this2.props.setEditContext(_this2.props.editContextId, {
|
|
126
|
+
action: 'Pick',
|
|
127
|
+
feature: result,
|
|
128
|
+
geomType: _this2.props.editConfig.geomType
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
} else if (this.props.action === 'Create') {
|
|
134
|
+
var featureSkel = _objectSpread({
|
|
135
|
+
type: "Feature",
|
|
136
|
+
properties: {}
|
|
137
|
+
}, this.props.feature);
|
|
138
|
+
var mapPrefix = (this.props.editConfig.editDataset.match(/^[^.]+\./) || [""])[0];
|
|
139
|
+
getFeatureTemplate(this.props.editConfig, featureSkel, this.props.iface, mapPrefix, this.props.map.projection, function (feature) {
|
|
140
|
+
_this2.props.setEditContext(_this2.props.editContextId, {
|
|
141
|
+
action: 'Draw',
|
|
142
|
+
geomType: _this2.props.editConfig.geomType,
|
|
143
|
+
feature: feature
|
|
144
|
+
});
|
|
145
|
+
});
|
|
146
|
+
} else if (this.props.action === 'Pick') {
|
|
147
|
+
this.props.setEditContext(this.props.editContextId, {
|
|
148
|
+
action: null
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}, {
|
|
153
|
+
key: "componentDidUpdate",
|
|
154
|
+
value: function componentDidUpdate(prevProps) {
|
|
155
|
+
// Handle drawPick
|
|
156
|
+
var editContext = this.props.editing.contexts[this.props.editContextId];
|
|
157
|
+
if (editContext && editContext.action === null && this.props.map.click && this.props.map.click !== prevProps.map.click) {
|
|
158
|
+
this.childPickQuery(this.props.map.click.coordinate);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}, {
|
|
162
|
+
key: "render",
|
|
163
|
+
value: function render() {
|
|
164
|
+
var _this3 = this;
|
|
165
|
+
var editContext = this.props.editing.contexts[this.props.editContextId];
|
|
166
|
+
if (!editContext) {
|
|
167
|
+
return null;
|
|
168
|
+
}
|
|
169
|
+
if (editContext.action === null) {
|
|
170
|
+
// Picking
|
|
171
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
172
|
+
className: "link-feature-form"
|
|
173
|
+
}, !this.state.pickedFeatures ? /*#__PURE__*/React.createElement("div", {
|
|
174
|
+
className: "link-feature-form-hint"
|
|
175
|
+
}, /*#__PURE__*/React.createElement("span", null, LocaleUtils.tr("linkfeatureform.pickhint"))) : /*#__PURE__*/React.createElement("div", {
|
|
176
|
+
className: "link-feature-form-feature-list"
|
|
177
|
+
}, this.state.pickedFeatures.map(function (feature) {
|
|
178
|
+
var _feature$properties$_;
|
|
179
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
180
|
+
key: feature.id,
|
|
181
|
+
onClick: function onClick() {
|
|
182
|
+
return _this3.pickFeatureSelected(feature);
|
|
183
|
+
},
|
|
184
|
+
onMouseOut: function onMouseOut() {
|
|
185
|
+
return _this3.unhoverFeature(feature);
|
|
186
|
+
},
|
|
187
|
+
onMouseOver: function onMouseOver() {
|
|
188
|
+
return _this3.hoverFeature(feature);
|
|
189
|
+
}
|
|
190
|
+
}, (_feature$properties$_ = feature.properties[_this3.props.displayField]) !== null && _feature$properties$_ !== void 0 ? _feature$properties$_ : feature.id);
|
|
191
|
+
})), /*#__PURE__*/React.createElement("div", {
|
|
192
|
+
className: "link-feature-form-close"
|
|
193
|
+
}, /*#__PURE__*/React.createElement("button", {
|
|
194
|
+
className: "button",
|
|
195
|
+
disabled: editContext.changed,
|
|
196
|
+
onClick: this.finish
|
|
197
|
+
}, LocaleUtils.tr("linkfeatureform.cancel"))));
|
|
198
|
+
} else if (editContext.feature) {
|
|
199
|
+
var drawing = editContext.action === 'Draw' && !editContext.feature.geometry && this.props.editConfig.geomType;
|
|
200
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
201
|
+
className: "link-feature-form"
|
|
202
|
+
}, drawing ? /*#__PURE__*/React.createElement("div", {
|
|
203
|
+
className: "link-feature-form-hint"
|
|
204
|
+
}, /*#__PURE__*/React.createElement("span", null, LocaleUtils.tr("linkfeatureform.drawhint"))) : /*#__PURE__*/React.createElement(AttributeForm, {
|
|
205
|
+
editConfig: this.props.editConfig,
|
|
206
|
+
editContext: editContext,
|
|
207
|
+
hideDelete: this.props.hideDelete,
|
|
208
|
+
iface: this.props.iface,
|
|
209
|
+
onDiscard: this.onDiscard,
|
|
210
|
+
readOnly: this.props.readOnly
|
|
211
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
212
|
+
className: "link-feature-form-close"
|
|
213
|
+
}, /*#__PURE__*/React.createElement("button", {
|
|
214
|
+
className: "button",
|
|
215
|
+
disabled: editContext.changed,
|
|
216
|
+
onClick: this.finish
|
|
217
|
+
}, drawing ? LocaleUtils.tr("linkfeatureform.cancel") : LocaleUtils.tr("linkfeatureform.close"))));
|
|
218
|
+
} else {
|
|
219
|
+
return null;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}]);
|
|
223
|
+
}(React.Component);
|
|
224
|
+
_defineProperty(LinkFeatureForm, "propTypes", {
|
|
225
|
+
action: PropTypes.string,
|
|
226
|
+
addLayerFeatures: PropTypes.func,
|
|
227
|
+
displayField: PropTypes.string,
|
|
228
|
+
editConfig: PropTypes.object,
|
|
229
|
+
editContextId: PropTypes.string,
|
|
230
|
+
editing: PropTypes.object,
|
|
231
|
+
feature: PropTypes.object,
|
|
232
|
+
featureId: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
233
|
+
finished: PropTypes.func,
|
|
234
|
+
hideDelete: PropTypes.bool,
|
|
235
|
+
iface: PropTypes.object,
|
|
236
|
+
map: PropTypes.object,
|
|
237
|
+
pickFilter: PropTypes.func,
|
|
238
|
+
readOnly: PropTypes.bool,
|
|
239
|
+
removeLayer: PropTypes.func,
|
|
240
|
+
setEditContext: PropTypes.func
|
|
241
|
+
});
|
|
242
|
+
export default connect(function (state) {
|
|
243
|
+
return {
|
|
244
|
+
editing: state.editing,
|
|
245
|
+
map: state.map
|
|
246
|
+
};
|
|
247
|
+
}, {
|
|
248
|
+
addLayerFeatures: addLayerFeatures,
|
|
249
|
+
removeLayer: removeLayer,
|
|
250
|
+
setEditContext: setEditContext
|
|
251
|
+
})(LinkFeatureForm);
|
package/components/MapButton.js
CHANGED
|
@@ -1,7 +1,93 @@
|
|
|
1
|
-
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
3
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
4
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
5
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
6
|
+
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
|
|
7
|
+
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
|
8
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
9
|
+
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
|
|
10
|
+
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
|
|
11
|
+
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
|
|
12
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
+
/**
|
|
2
16
|
* Copyright 2025 Sourcepole AG
|
|
3
17
|
* All rights reserved.
|
|
4
18
|
*
|
|
5
19
|
* This source code is licensed under the BSD-style license found in the
|
|
6
20
|
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
import React from 'react';
|
|
24
|
+
import ReactDOM from 'react-dom';
|
|
25
|
+
import classNames from 'classnames';
|
|
26
|
+
import PropTypes from 'prop-types';
|
|
27
|
+
import Icon from './Icon';
|
|
28
|
+
import { MapButtonPortalContext } from './PluginsContainer';
|
|
29
|
+
import Spinner from './widgets/Spinner';
|
|
30
|
+
import './style/MapButton.css';
|
|
31
|
+
var MapButton = /*#__PURE__*/function (_React$Component) {
|
|
32
|
+
function MapButton() {
|
|
33
|
+
_classCallCheck(this, MapButton);
|
|
34
|
+
return _callSuper(this, MapButton, arguments);
|
|
35
|
+
}
|
|
36
|
+
_inherits(MapButton, _React$Component);
|
|
37
|
+
return _createClass(MapButton, [{
|
|
38
|
+
key: "componentDidMount",
|
|
39
|
+
value: function componentDidMount() {
|
|
40
|
+
this.componentDidUpdate({});
|
|
41
|
+
}
|
|
42
|
+
}, {
|
|
43
|
+
key: "componentDidUpdate",
|
|
44
|
+
value: function componentDidUpdate(prevProps) {
|
|
45
|
+
if (this.context && this.props.position !== prevProps.position) {
|
|
46
|
+
this.context.recomputeSpacers();
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}, {
|
|
50
|
+
key: "render",
|
|
51
|
+
value: function render() {
|
|
52
|
+
if (!this.context) {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
var className = classNames({
|
|
56
|
+
"map-button": true,
|
|
57
|
+
"map-button-active": this.props.active,
|
|
58
|
+
"map-button-disabled": this.props.disabled,
|
|
59
|
+
"map-button-engaged": this.props.engaged
|
|
60
|
+
});
|
|
61
|
+
var position = this.props.position || 0;
|
|
62
|
+
return /*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/React.createElement("div", {
|
|
63
|
+
className: "map-button-container",
|
|
64
|
+
"data-slot": position,
|
|
65
|
+
style: {
|
|
66
|
+
order: position
|
|
67
|
+
}
|
|
68
|
+
}, /*#__PURE__*/React.createElement("button", {
|
|
69
|
+
className: "".concat(className, " ").concat(this.props.className || ""),
|
|
70
|
+
onClick: this.props.onClick,
|
|
71
|
+
title: this.props.tooltip
|
|
72
|
+
}, this.props.busy ? /*#__PURE__*/React.createElement(Spinner, null) : /*#__PURE__*/React.createElement(Icon, {
|
|
73
|
+
icon: this.props.icon,
|
|
74
|
+
size: this.props.iconSize
|
|
75
|
+
})), this.props.children), this.context);
|
|
76
|
+
}
|
|
77
|
+
}]);
|
|
78
|
+
}(React.Component);
|
|
79
|
+
_defineProperty(MapButton, "contextType", MapButtonPortalContext);
|
|
80
|
+
_defineProperty(MapButton, "propTypes", {
|
|
81
|
+
active: PropTypes.bool,
|
|
82
|
+
busy: PropTypes.bool,
|
|
83
|
+
children: PropTypes.oneOfType([PropTypes.node, PropTypes.func]),
|
|
84
|
+
className: PropTypes.string,
|
|
85
|
+
disabled: PropTypes.bool,
|
|
86
|
+
engaged: PropTypes.bool,
|
|
87
|
+
icon: PropTypes.string,
|
|
88
|
+
iconSize: PropTypes.string,
|
|
89
|
+
onClick: PropTypes.func,
|
|
90
|
+
position: PropTypes.number,
|
|
91
|
+
tooltip: PropTypes.string
|
|
92
|
+
});
|
|
93
|
+
export { MapButton as default };
|