@esri/solutions-components 0.10.14 → 0.10.16
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/dist/cjs/calcite-flow_6.cjs.entry.js +3 -4
- package/dist/cjs/crowdsource-reporter.cjs.entry.js +4 -2
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/map-select-tools_3.cjs.entry.js +11 -1
- package/dist/cjs/public-notification.cjs.entry.js +4 -2
- package/dist/cjs/solutions-components.cjs.js +1 -1
- package/dist/collection/components/create-feature/create-feature.js +3 -4
- package/dist/collection/components/crowdsource-reporter/crowdsource-reporter.js +38 -2
- package/dist/collection/components/map-select-tools/map-select-tools.js +47 -1
- package/dist/collection/components/public-notification/public-notification.js +40 -2
- package/dist/collection/demos/crowdsource-reporter.html +63 -113
- package/dist/components/create-feature2.js +3 -4
- package/dist/components/crowdsource-reporter.js +6 -2
- package/dist/components/map-select-tools2.js +13 -1
- package/dist/components/public-notification.js +6 -2
- package/dist/esm/calcite-flow_6.entry.js +3 -4
- package/dist/esm/crowdsource-reporter.entry.js +4 -2
- package/dist/esm/loader.js +1 -1
- package/dist/esm/map-select-tools_3.entry.js +11 -1
- package/dist/esm/public-notification.entry.js +4 -2
- package/dist/esm/solutions-components.js +1 -1
- package/dist/solutions-components/demos/crowdsource-reporter.html +63 -113
- package/dist/solutions-components/p-2737e44e.entry.js +17 -0
- package/dist/solutions-components/p-5907d17d.entry.js +6 -0
- package/dist/solutions-components/p-c5e05351.entry.js +6 -0
- package/dist/solutions-components/p-f0a23f46.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/crowdsource-reporter/crowdsource-reporter.d.ts +8 -0
- package/dist/types/components/map-select-tools/map-select-tools.d.ts +8 -0
- package/dist/types/components/public-notification/public-notification.d.ts +8 -0
- package/dist/types/components.d.ts +48 -0
- package/package.json +1 -1
- package/dist/solutions-components/p-31f7dd8e.entry.js +0 -6
- package/dist/solutions-components/p-40e305b4.entry.js +0 -17
- package/dist/solutions-components/p-4d44410b.entry.js +0 -6
- package/dist/solutions-components/p-abd3e579.entry.js +0 -6
@@ -49,7 +49,9 @@ const MapSelectTools = /*@__PURE__*/ proxyCustomElement(class MapSelectTools ext
|
|
49
49
|
this.customLabelEnabled = undefined;
|
50
50
|
this.enabledLayerIds = [];
|
51
51
|
this.enableLayerFeatures = true;
|
52
|
+
this.enableLayerFeaturesOnLoad = false;
|
52
53
|
this.enableSearchDistance = true;
|
54
|
+
this.enableSearchDistanceOnLoad = false;
|
53
55
|
this.enableSketchTools = true;
|
54
56
|
this.defaultBufferDistance = undefined;
|
55
57
|
this.defaultBufferUnit = undefined;
|
@@ -308,12 +310,16 @@ const MapSelectTools = /*@__PURE__*/ proxyCustomElement(class MapSelectTools ext
|
|
308
310
|
render() {
|
309
311
|
const mapToolsClass = this.enableSketchTools ? "" : "display-none";
|
310
312
|
const mapToolsContainerClass = this.enableSketchTools ? "padding-top-1" : "";
|
311
|
-
return (h(Host, { key: '
|
313
|
+
return (h(Host, { key: '14b27786176d25c3d36df5fa71a7d15c84febf6a' }, this._getMapLayerPicker(), h("div", { key: 'f0ec5ecbcc252ac74e19e1c76ca9a8fcf23d7375', class: "border-bottom" }), h("div", { key: 'a396efbe43a9b23af12a46bfb6bdc422be700c51', class: "padding-top-sides-1" }, h("div", { key: '3ce18d6baeb866edccb3b3f5461329303d1a7340', class: "search-widget", ref: (el) => { this._searchElement = el; } }), h("div", { key: 'b7acabfd7addac9184b488f918fadb09099074d6', class: mapToolsContainerClass }, h("map-draw-tools", { key: '6eda64fb64bbac651d8bbaada867b7112edb30e1', active: true, class: mapToolsClass, editGraphicsEnabled: !this._useLayerFeaturesEnabled, graphics: this._graphics, mapView: this.mapView, onSketchGraphicsChange: (evt) => void this._sketchGraphicsChanged(evt), pointSymbol: this.sketchPointSymbol, polygonSymbol: this.sketchPolygonSymbol, polylineSymbol: this.sketchLineSymbol, ref: (el) => { this._drawTools = el; } })), this.enableSearchDistance ? this._getBufferOptions() : undefined, this.enableLayerFeatures ? this._getUseLayerFeaturesOptions() : undefined, this._getNumSelected()), h("div", { key: 'fe122716ac0c9df8fb84115aa2e2ac994766b360', class: "border-bottom" }), this._getNameInput()));
|
312
314
|
}
|
313
315
|
/**
|
314
316
|
* Renders the buffer tools component.
|
315
317
|
*/
|
316
318
|
_getBufferOptions() {
|
319
|
+
if (this.enableSearchDistanceOnLoad) {
|
320
|
+
this._searchDistanceEnabled = true;
|
321
|
+
this.enableSearchDistanceOnLoad = false;
|
322
|
+
}
|
317
323
|
const showBufferToolsClass = this._searchDistanceEnabled ? "search-distance" : "div-not-visible";
|
318
324
|
const bufferDistance = typeof this.selectionSet?.distance === "number" ? this.selectionSet.distance : this.defaultBufferDistance;
|
319
325
|
return (h("div", null, h("div", { class: "padding-top-1 display-flex" }, h("calcite-label", { class: "label-margin-0 w-100", layout: "inline-space-between" }, h("div", { class: "tooltip-container" }, this._translations.searchDistance, h("calcite-icon", { class: "padding-start-1-2 icon", flipRtl: !(this.locale?.toLowerCase() === "he"), icon: "question", id: "search-distance-icon", scale: "s" }))), h("calcite-popover", { closable: true, label: "", referenceElement: "search-distance-icon" }, h("span", { class: "tooltip-message" }, this._translations.useSearchDistanceTootip)), h("calcite-switch", { checked: this._searchDistanceEnabled, onCalciteSwitchChange: () => this._searchDistanceEnabled = !this._searchDistanceEnabled })), h("div", { class: showBufferToolsClass }, h("buffer-tools", { disabled: !this._searchDistanceEnabled, distance: bufferDistance, geometries: this.geometries, onBufferComplete: (evt) => void this._bufferComplete(evt), ref: (el) => this._bufferTools = el, unit: this.selectionSet?.unit || this.defaultBufferUnit }))));
|
@@ -322,6 +328,10 @@ const MapSelectTools = /*@__PURE__*/ proxyCustomElement(class MapSelectTools ext
|
|
322
328
|
* Renders the map layer picker component.
|
323
329
|
*/
|
324
330
|
_getUseLayerFeaturesOptions() {
|
331
|
+
if (this.enableLayerFeaturesOnLoad) {
|
332
|
+
this._useLayerFeaturesEnabled = true;
|
333
|
+
this.enableLayerFeaturesOnLoad = false;
|
334
|
+
}
|
325
335
|
const useLayerFeaturesClass = this._useLayerFeaturesEnabled ? "div-visible" : "div-not-visible";
|
326
336
|
return (h("div", null, h("div", { class: "padding-top-1 display-flex" }, h("calcite-label", { class: "label-margin-0 w-100", layout: "inline-space-between" }, h("div", { class: "tooltip-container" }, this._translations.useLayerFeatures, h("calcite-icon", { class: "padding-start-1-2 icon", flipRtl: !(this.locale?.toLowerCase() === "he"), icon: "question", id: "use-layer-features-icon", scale: "s" }))), h("calcite-popover", { closable: true, label: "", referenceElement: "use-layer-features-icon" }, h("span", { class: "tooltip-message" }, this._translations.useLayerFeaturesTooltip)), h("calcite-switch", { checked: this._useLayerFeaturesEnabled, onCalciteSwitchChange: () => { this._useLayerFeaturesEnabledChanged(); } })), h("div", { class: useLayerFeaturesClass + " padding-top-1" }, h("map-layer-picker", { enabledLayerIds: this.selectionLayerIds, mapView: this.mapView, onLayerSelectionChange: (evt) => { void this._layerSelectionChange(evt); }, selectedIds: this.layerViews.map(l => l.layer.id), showTables: false }))));
|
327
337
|
}
|
@@ -925,7 +935,9 @@ const MapSelectTools = /*@__PURE__*/ proxyCustomElement(class MapSelectTools ext
|
|
925
935
|
"customLabelEnabled": [4, "custom-label-enabled"],
|
926
936
|
"enabledLayerIds": [16],
|
927
937
|
"enableLayerFeatures": [4, "enable-layer-features"],
|
938
|
+
"enableLayerFeaturesOnLoad": [4, "enable-layer-features-on-load"],
|
928
939
|
"enableSearchDistance": [4, "enable-search-distance"],
|
940
|
+
"enableSearchDistanceOnLoad": [4, "enable-search-distance-on-load"],
|
929
941
|
"enableSketchTools": [4, "enable-sketch-tools"],
|
930
942
|
"defaultBufferDistance": [2, "default-buffer-distance"],
|
931
943
|
"defaultBufferUnit": [1, "default-buffer-unit"],
|
@@ -71,7 +71,9 @@ const PublicNotification$1 = /*@__PURE__*/ proxyCustomElement(class PublicNotifi
|
|
71
71
|
this.defaultExportTitle = "";
|
72
72
|
this.defaultNumLabelsPerPage = 6;
|
73
73
|
this.enableLayerFeatures = true;
|
74
|
+
this.enableLayerFeaturesOnLoad = true;
|
74
75
|
this.enableSearchDistance = true;
|
76
|
+
this.enableSearchDistanceOnLoad = true;
|
75
77
|
this.enableSketchTools = true;
|
76
78
|
this.featureEffect = undefined;
|
77
79
|
this.featureHighlightEnabled = undefined;
|
@@ -292,7 +294,7 @@ const PublicNotification$1 = /*@__PURE__*/ proxyCustomElement(class PublicNotifi
|
|
292
294
|
*/
|
293
295
|
render() {
|
294
296
|
const headerSlot = this._isMobile ? "footer" : "header";
|
295
|
-
return (h(Host, { key: '
|
297
|
+
return (h(Host, { key: '3ba355821879dc79890507bca0adcd1e2a2e32af' }, h("calcite-shell", { key: 'b6f08e69cc7581f1273297bfba743944d18a7054' }, h("calcite-action-bar", { key: '2ed5932e3506153451a8aa6ba9aa531524ef7c82', class: "border-bottom-1 action-bar-size", "expand-disabled": true, layout: "horizontal", slot: headerSlot }, this._getActionGroup("list-check", EPageType.LIST, this._translations.myLists), this.showRefineSelection ? this._getActionGroup("test-data", EPageType.REFINE, this._translations.refineSelection) : null, this._getActionGroup("export", EPageType.EXPORT, this._translations.export)), this._getPage(this._pageType))));
|
296
298
|
}
|
297
299
|
/**
|
298
300
|
* StencilJS: Called once just after the component is first loaded.
|
@@ -629,7 +631,7 @@ const PublicNotification$1 = /*@__PURE__*/ proxyCustomElement(class PublicNotifi
|
|
629
631
|
*/
|
630
632
|
_getSelectPage() {
|
631
633
|
const noticeText = this._translations.selectSearchTip;
|
632
|
-
return (h("calcite-panel", null, this._getLabel(this._translations.stepTwoFull, true), this._getNotice(noticeText, "padding-1", "word-wrap-anywhere"), h("div", null, h("map-select-tools", { bufferColor: this.bufferColor, bufferOutlineColor: this.bufferOutlineColor, class: "font-bold", customLabelEnabled: this.customLabelEnabled, defaultBufferDistance: this.defaultBufferDistance, defaultBufferUnit: this.defaultBufferUnit, enableLayerFeatures: this.enableLayerFeatures, enableSearchDistance: this.enableSearchDistance, enableSketchTools: this.enableSketchTools, enabledLayerIds: this.addresseeLayerIds, isUpdate: !!this._activeSelection, locale: this.locale, mapView: this.mapView, noResultText: this.noResultText, onSelectionSetChange: (evt) => this._updateForSelection(evt), ref: (el) => { this._selectTools = el; }, searchConfiguration: this._searchConfiguration, selectionLayerIds: this.selectionLayerIds, selectionSet: this._activeSelection, sketchLineSymbol: this.sketchLineSymbol, sketchPointSymbol: this.sketchPointSymbol, sketchPolygonSymbol: this.sketchPolygonSymbol })), this._getPageNavButtons(this._translations.done, this._numSelected === 0, () => { void this._saveSelection(); }, this._translations.cancel, false, () => { void this._home(); })));
|
634
|
+
return (h("calcite-panel", null, this._getLabel(this._translations.stepTwoFull, true), this._getNotice(noticeText, "padding-1", "word-wrap-anywhere"), h("div", null, h("map-select-tools", { bufferColor: this.bufferColor, bufferOutlineColor: this.bufferOutlineColor, class: "font-bold", customLabelEnabled: this.customLabelEnabled, defaultBufferDistance: this.defaultBufferDistance, defaultBufferUnit: this.defaultBufferUnit, enableLayerFeatures: this.enableLayerFeatures, enableLayerFeaturesOnLoad: this.enableLayerFeaturesOnLoad, enableSearchDistance: this.enableSearchDistance, enableSearchDistanceOnLoad: this.enableSearchDistanceOnLoad, enableSketchTools: this.enableSketchTools, enabledLayerIds: this.addresseeLayerIds, isUpdate: !!this._activeSelection, locale: this.locale, mapView: this.mapView, noResultText: this.noResultText, onSelectionSetChange: (evt) => this._updateForSelection(evt), ref: (el) => { this._selectTools = el; }, searchConfiguration: this._searchConfiguration, selectionLayerIds: this.selectionLayerIds, selectionSet: this._activeSelection, sketchLineSymbol: this.sketchLineSymbol, sketchPointSymbol: this.sketchPointSymbol, sketchPolygonSymbol: this.sketchPolygonSymbol })), this._getPageNavButtons(this._translations.done, this._numSelected === 0, () => { void this._saveSelection(); }, this._translations.cancel, false, () => { void this._home(); })));
|
633
635
|
}
|
634
636
|
/**
|
635
637
|
* Create the main download page that has the shared aspects of both PDF and CSV
|
@@ -1108,7 +1110,9 @@ const PublicNotification$1 = /*@__PURE__*/ proxyCustomElement(class PublicNotifi
|
|
1108
1110
|
"defaultExportTitle": [1, "default-export-title"],
|
1109
1111
|
"defaultNumLabelsPerPage": [2, "default-num-labels-per-page"],
|
1110
1112
|
"enableLayerFeatures": [4, "enable-layer-features"],
|
1113
|
+
"enableLayerFeaturesOnLoad": [4, "enable-layer-features-on-load"],
|
1111
1114
|
"enableSearchDistance": [4, "enable-search-distance"],
|
1115
|
+
"enableSearchDistanceOnLoad": [4, "enable-search-distance-on-load"],
|
1112
1116
|
"enableSketchTools": [4, "enable-sketch-tools"],
|
1113
1117
|
"featureEffect": [16],
|
1114
1118
|
"featureHighlightEnabled": [4, "feature-highlight-enabled"],
|
@@ -563,7 +563,7 @@ const CreateFeature = class {
|
|
563
563
|
const loaderClass = this._editorLoading ? "" : "display-none";
|
564
564
|
const featureFormClass = this._editorLoading ? "display-none" : "";
|
565
565
|
const mobileMapClass = this.isMobile ? "show-map" : "display-none";
|
566
|
-
return (h(Fragment, { key: '
|
566
|
+
return (h(Fragment, { key: 'aac8fd8fe4ba5d7fb67a2b74a86147e053c1b0b8' }, h("calcite-loader", { key: 'e440bd2e0f4cf5acf4fd6941ada508c8ac5a0380', class: loaderClass, label: "", scale: "s" }), h("div", { key: '055a4e4b30b1fe24e0735257fa54fa9845cbaf2f', class: featureFormClass, id: "feature-form" }), h("div", { key: '342847f06ba99ad3c9693026bc83a8ac18b6c05f', class: `search-widget ${showSearchWidget} ${featureFormClass}`, id: "search-widget-ref" }), h("div", { key: '0acb837b4604d8d590bbfbcd738a3e09a099c362', class: `${mobileMapClass}`, ref: (el) => { this._mapViewContainer = el; } })));
|
567
567
|
}
|
568
568
|
//--------------------------------------------------------------------------
|
569
569
|
//
|
@@ -681,7 +681,7 @@ const CreateFeature = class {
|
|
681
681
|
this._editor.viewModel.addHandles(attachmentHandle);
|
682
682
|
//Add handle to watch featureTemplatesViewModel ready state and then start the creation
|
683
683
|
const handle = this.reactiveUtils.watch(() => this._editor.viewModel.featureTemplatesViewModel.state, (state) => {
|
684
|
-
if (state === 'ready') {
|
684
|
+
if (state === 'ready' && this._editor.viewModel?.activeWorkflow?.type !== "create-features") {
|
685
685
|
this.progressStatus.emit(0.5);
|
686
686
|
this._editorLoading = true;
|
687
687
|
}
|
@@ -702,7 +702,6 @@ const CreateFeature = class {
|
|
702
702
|
const createFeatureHandle = this.reactiveUtils.watch(() => this._editor.viewModel.state, (state) => {
|
703
703
|
if (state === 'creating-features') {
|
704
704
|
this._mapViewContainer?.classList?.replace("hide-map", "show-map");
|
705
|
-
this._editorLoading = true;
|
706
705
|
this._showSearchWidget = true;
|
707
706
|
}
|
708
707
|
});
|
@@ -713,7 +712,7 @@ const CreateFeature = class {
|
|
713
712
|
* @protected
|
714
713
|
*/
|
715
714
|
async startCreate() {
|
716
|
-
// hides the header elements on template picker page
|
715
|
+
// hides the header elements on template picker page
|
717
716
|
await this.hideEditorsElements();
|
718
717
|
return new Promise((resolve, reject) => {
|
719
718
|
if (this._editor.viewModel.featureTemplatesViewModel.items?.length) {
|
@@ -18,6 +18,8 @@ const CrowdsourceReporter = class {
|
|
18
18
|
registerInstance(this, hostRef);
|
19
19
|
this.togglePanel = createEvent(this, "togglePanel", 7);
|
20
20
|
this.center = undefined;
|
21
|
+
this.commentButtonText = undefined;
|
22
|
+
this.commentSubmittedMessage = undefined;
|
21
23
|
this.defaultWebmap = "";
|
22
24
|
this.description = undefined;
|
23
25
|
this.enableAnonymousAccess = undefined;
|
@@ -285,7 +287,7 @@ const CrowdsourceReporter = class {
|
|
285
287
|
*/
|
286
288
|
render() {
|
287
289
|
const themeClass = this.theme === "dark" ? "calcite-mode-dark" : "calcite-mode-light";
|
288
|
-
return (h(Host, { key: '
|
290
|
+
return (h(Host, { key: '712bd9d383d112b8e86832adc5026780ed5b6a21' }, this._reportSubmitted && h("calcite-alert", { key: '4f355784741e72c1cdd13b6e36d77ff05680e147', "auto-close": true, class: themeClass + " report-submitted-msg", icon: "check-circle", kind: "success", label: "", onCalciteAlertClose: () => { this._reportSubmitted = false; }, open: true, placement: "top" }, h("div", { key: '1a529422b45de78ff1a97ff71a616d39e33736fe', slot: "message" }, this.reportSubmittedMessage ? this.reportSubmittedMessage : this._translations.submitMsg)), this._featureCreationFailedErrorMsg && h("calcite-alert", { key: '02722111a22c5c9da25a20cd77daae0d16c4829e', "auto-close": true, class: themeClass, icon: "x-octagon", kind: "danger", label: "", onCalciteAlertClose: () => { this._featureCreationFailedErrorMsg = ""; }, open: true, placement: "top" }, h("div", { key: '94725b928eb5200f8b114d565f1eef551b1f8472', slot: "title" }, this._translations.error), h("div", { key: '362ab693984413822e85b50945cbff5633798dec', slot: "message" }, this._featureCreationFailedErrorMsg)), this._commentSubmitted && h("calcite-alert", { key: '74b1287b952b7e9d9406b8cc08ce85fa6ee124b2', "auto-close": true, class: 'report-submitted ' + themeClass, icon: "check-circle", kind: "success", label: "", onCalciteAlertClose: () => { this._commentSubmitted = false; }, open: true, placement: "top" }, h("div", { key: '1ebed2836d95fc7d3dc79e26acb60645b6c8300f', slot: "message" }, this.commentSubmittedMessage || this._translations.commentSubmittedMsg)), this._addingCommentFailed && h("calcite-alert", { key: '62428d3d20b754200c6390880b7067d262008d3d', "auto-close": true, class: themeClass, icon: "x-octagon", kind: "danger", label: "", onCalciteAlertClose: () => { this._addingCommentFailed = false; }, open: true, placement: "top" }, h("div", { key: '78593f816ca80583b062b90fc796dd9e54ed7344', slot: "title" }, this._translations.error), h("div", { key: '5d45971a4f8c26f34e87e2985e9252932e6d90ac', slot: "message" }, this._translations.addingCommentFailedMsg)), h("div", { key: '0a7d3e35e62a9955c8cb16b6e1f4435c11b8b11d' }, h("calcite-shell", { key: 'e8f9b57f6906a3e9c8960cdf722db2dc253dd454', "content-behind": true }, this._getReporter()))));
|
289
291
|
}
|
290
292
|
//--------------------------------------------------------------------------
|
291
293
|
//
|
@@ -787,7 +789,7 @@ const CrowdsourceReporter = class {
|
|
787
789
|
getFeatureDetailsFlowItem() {
|
788
790
|
const showCommentBtn = this._getLayersConfig(this._selectedLayerId)?.comment && this._selectedLayer.relationships.length > 0;
|
789
791
|
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._selectedLayerName, loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromSelectedPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("instant-apps-social-share", { autoUpdateShareUrl: false, class: "share-node", embed: false, popoverButtonIconScale: "s", ref: el => this._shareNode = el, removePopoverOffset: true, scale: "m", shareButtonColor: "neutral", shareButtonType: "action", slot: "header-actions-end", socialMedia: true, view: this.mapView }), this._selectedFeature.length > 1 && this.getFeaturesPagination(), h("calcite-panel", null, h("feature-details", { class: 'full-height', graphics: this._selectedFeature, layerItemsHash: this._layerItemsHash, mapView: this.mapView, onCommentSelect: this.onCommentSelectFromList.bind(this), onFeatureSelectionChange: this.selectionChanged.bind(this), onLoadingStatus: (evt) => void this.updatingFeatureDetails(evt.detail), ref: el => this._featureDetails = el, reportingOptions: this.reportingOptions, showUserImageInCommentsList: this.showUserImageInCommentsList }), showCommentBtn &&
|
790
|
-
h("calcite-button", { appearance: "solid", onClick: () => this._flowItems = [...this._flowItems, "add-comment"], slot: "footer", width: "full" }, this._translations.comment))));
|
792
|
+
h("calcite-button", { appearance: "solid", onClick: () => this._flowItems = [...this._flowItems, "add-comment"], slot: "footer", width: "full" }, this.commentButtonText || this._translations.comment))));
|
791
793
|
}
|
792
794
|
/**
|
793
795
|
* Returns the pagination for the multiple features
|