@esri/solutions-components 0.10.41 → 0.10.42
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/card-manager_3.cjs.entry.js +11 -12
- package/dist/cjs/crowdsource-manager.cjs.entry.js +4 -3
- package/dist/cjs/crowdsource-reporter.cjs.entry.js +4 -5
- package/dist/collection/components/crowdsource-manager/crowdsource-manager.js +4 -3
- package/dist/collection/components/crowdsource-reporter/crowdsource-reporter.js +4 -5
- package/dist/collection/components/layer-table/layer-table.js +14 -11
- package/dist/collection/components/map-card/map-card.js +9 -5
- package/dist/components/crowdsource-manager.js +4 -3
- package/dist/components/crowdsource-reporter.js +4 -5
- package/dist/components/layer-table2.js +8 -9
- package/dist/components/map-card2.js +3 -3
- package/dist/esm/card-manager_3.entry.js +11 -12
- package/dist/esm/crowdsource-manager.entry.js +4 -3
- package/dist/esm/crowdsource-reporter.entry.js +4 -5
- package/dist/solutions-components/p-442dd59c.entry.js +6 -0
- package/dist/solutions-components/{p-6d1922cc.entry.js → p-8b92fe23.entry.js} +1 -1
- package/dist/solutions-components/p-a1d8aed8.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/crowdsource-reporter/crowdsource-reporter.d.ts +1 -1
- package/dist/types/components/layer-table/layer-table.d.ts +2 -2
- package/dist/types/components/map-card/map-card.d.ts +1 -1
- package/dist/types/components.d.ts +2 -2
- package/package.json +1 -1
- package/dist/solutions-components/p-cced387c.entry.js +0 -6
- package/dist/solutions-components/p-e9026f9a.entry.js +0 -6
@@ -588,8 +588,8 @@ const LayerTable = class {
|
|
588
588
|
/**
|
589
589
|
* Updates the filter
|
590
590
|
*/
|
591
|
-
async filterUpdate() {
|
592
|
-
await this._handleFilterUpdate();
|
591
|
+
async filterUpdate(active) {
|
592
|
+
await this._handleFilterUpdate(active);
|
593
593
|
}
|
594
594
|
/**
|
595
595
|
* Closes the filter
|
@@ -731,10 +731,10 @@ const LayerTable = class {
|
|
731
731
|
const tableHeightClass = this.isMobile ? "height-full" : "height-full-adjusted";
|
732
732
|
const showSearch = this._canShowFullTextSearch();
|
733
733
|
this._validateActiveActions();
|
734
|
-
return (index.h(index.Host, { key: '
|
735
|
-
index.h("div", { key: '
|
734
|
+
return (index.h(index.Host, { key: 'f56462fd5d5afa71052cf2557069bb2fee15aaeb' }, index.h("calcite-shell", { key: '92ccfa2235269aad6da5f918f79ec8ae100e99ca' }, this._getTableControlRow("header"), index.h("div", { key: 'e5b8fe5e4236e1a7b7e9d31ad784d9bb52a6918d', class: `width-full ${tableHeightClass}` }, index.h("calcite-panel", { key: 'eca933d832e5b6efddb025211c253bf09e41ab22', class: "height-full width-full" }, showSearch &&
|
735
|
+
index.h("div", { key: 'e819896c4264db3ee95d10194b67da65997b541d', class: "search-container" }, index.h("calcite-input", { key: 'e979c7962205caf072057332280b9e04ecd233c4', class: "search", clearable: true, icon: "search", onCalciteInputChange: (evt) => void this._searchTextChanged(evt), placeholder: this._searchPlaceHolder, title: this._searchPlaceHolder, type: "search" })), index.h("calcite-loader", { key: 'ee715472a4f819dd1e9328e75022439e9bba1334', class: loadingClass, label: this._translations.fetchingData, scale: "l" }), index.h("div", { key: '8085821dea31de1fcbb1119e5791c0dea744e470', class: tableNodeClass, ref: this.onTableNodeCreate }))), !this.isMobile ? (index.h("div", { class: "bottom-left text-color height-19" }, this._translations.recordsSelected
|
736
736
|
.replace("{{total}}", total)
|
737
|
-
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), index.h("delete-dialog", { key: '
|
737
|
+
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), index.h("delete-dialog", { key: '20c9a06c3f0d44433d9442755d25658c249e102c', id: "deleteDialogId", ids: this._getIds(), layer: this._layer, locale: this.locale, onDeleteDialogClose: () => this._deleteDialogOpen = false, open: this._deleteDialogOpen, ref: (el) => this._deleteDialog = el })));
|
738
738
|
}
|
739
739
|
_deleteDialog;
|
740
740
|
/**
|
@@ -1779,7 +1779,7 @@ const LayerTable = class {
|
|
1779
1779
|
* @protected
|
1780
1780
|
*/
|
1781
1781
|
_filterModal() {
|
1782
|
-
return (index.h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, index.h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), index.h("div", { slot: "content" }, index.h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1782
|
+
return (index.h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, index.h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), index.h("div", { slot: "content" }, index.h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1783
1783
|
}
|
1784
1784
|
/**
|
1785
1785
|
* Reset the filter active prop
|
@@ -1794,7 +1794,7 @@ const LayerTable = class {
|
|
1794
1794
|
* Check if the layers definitionExpression has been modified
|
1795
1795
|
* @protected
|
1796
1796
|
*/
|
1797
|
-
async _handleFilterUpdate() {
|
1797
|
+
async _handleFilterUpdate(active) {
|
1798
1798
|
const defExp = this._layer.definitionExpression;
|
1799
1799
|
if (this._floorExpression) {
|
1800
1800
|
const regEx = new RegExp(`${this._floorField} = ['].+[']`, "gm");
|
@@ -1802,8 +1802,7 @@ const LayerTable = class {
|
|
1802
1802
|
defExp.replace(regEx, this._floorExpression) : defExp ?
|
1803
1803
|
`${defExp} AND (${this._floorExpression})` : this._floorExpression;
|
1804
1804
|
}
|
1805
|
-
this._filterActive =
|
1806
|
-
(this._floorExpression ? this._layer.definitionExpression !== this._floorExpression : true);
|
1805
|
+
this._filterActive = active;
|
1807
1806
|
this._updateShareUrl();
|
1808
1807
|
await this._searchFullText();
|
1809
1808
|
}
|
@@ -2392,8 +2391,8 @@ const MapCard = class {
|
|
2392
2391
|
/**
|
2393
2392
|
* updates the filter
|
2394
2393
|
*/
|
2395
|
-
async updateFilterState() {
|
2396
|
-
this._filterActive =
|
2394
|
+
async updateFilterState(active) {
|
2395
|
+
this._filterActive = active;
|
2397
2396
|
this._updateShareUrl();
|
2398
2397
|
}
|
2399
2398
|
/**
|
@@ -2470,7 +2469,7 @@ const MapCard = class {
|
|
2470
2469
|
const mapHeightClass = this.mapInfos?.length > 1 || this.isMapLayout ? "map-height" : "height-full";
|
2471
2470
|
const progressClass = this.isMapLayout ? "" : "display-none";
|
2472
2471
|
this._validateActiveActions();
|
2473
|
-
return (index.h(index.Host, { key: '
|
2472
|
+
return (index.h(index.Host, { key: '525ee5ce855cf5aa4f8c50e7e88be6c6236046ac' }, index.h("div", { key: '899898ee0b2ba9048ed24716a339c94d3106a52e', class: `${mapContainerClass} width-full`, ref: (el) => this._toolbar = el }, this._getActionBar(), !this.isMobile && this.isMapLayout && this._getDropdown("more-table-options"), this.enableShare && !this.isMobile && this.isMapLayout ? this._getShare("share") : undefined), index.h("calcite-progress", { key: '896569eb6cf65f45cbebb4b36f5b01ada5ed1092', class: progressClass, value: 0 }), index.h("div", { key: '79cac798541783bdc74e4b13f9df4d7564eb99f4', class: `${mapHeightClass} ${mapClass}`, ref: (el) => (this._mapDiv = el) }), index.h("map-tools", { key: '730d48c4ce98af3872bfa6c486e8749e18c24477', basemapConfig: this.basemapConfig, class: `box-shadow ${themeClass}`, enableBasemap: this.enableBasemap, enableFloorFilter: this.enableFloorFilter, enableFullscreen: this.enableFullscreen, enableHome: this.enableHome, enableLegend: this.enableLegend, enableSearch: this.enableSearch, enableSingleExpand: this.enableSingleExpand, homeZoomToolsSize: this.homeZoomToolsSize, locale: this.locale, mapView: this.mapView, mapWidgetsSize: this.mapWidgetsSize, position: this.mapWidgetsPosition, ref: (el) => this._mapTools = el, searchConfiguration: this._searchConfiguration, stackTools: this.stackTools, toolOrder: this.toolOrder })));
|
2474
2473
|
}
|
2475
2474
|
/**
|
2476
2475
|
* Called each time after the component is loaded
|
@@ -536,9 +536,10 @@ const CrowdsourceManager = class {
|
|
536
536
|
return (index.h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, index.h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), index.h("div", { slot: "content" }, index.h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => {
|
537
537
|
this._handleFilterListReset();
|
538
538
|
void this._mapCard.resetFilter();
|
539
|
-
}, onFilterUpdate: () => {
|
540
|
-
|
541
|
-
|
539
|
+
}, onFilterUpdate: async () => {
|
540
|
+
const active = this._filterList.filterCount > 0;
|
541
|
+
await this._layerTable?.filterUpdate(active);
|
542
|
+
await this._mapCard.updateFilterState(active);
|
542
543
|
}, ref: (el) => this._filterList = el, view: this._mapView, zoomBtn: false }))));
|
543
544
|
}
|
544
545
|
/**
|
@@ -464,11 +464,10 @@ const CrowdsourceReporter = class {
|
|
464
464
|
* Check if the layers definitionExpression has been modified and update the feature list depending on the applied filters
|
465
465
|
* @protected
|
466
466
|
*/
|
467
|
-
async _handleFilterUpdate() {
|
467
|
+
async _handleFilterUpdate(active) {
|
468
468
|
this._showLoadingIndicator = true;
|
469
|
-
//if
|
470
|
-
|
471
|
-
this._filterActive = this._filterList.urlParams.getAll('filter').length > 0;
|
469
|
+
//if filters are applied the url params will be generated
|
470
|
+
this._filterActive = active;
|
472
471
|
this._filterUrlParams = this._filterList.urlParams.getAll('filter');
|
473
472
|
await this._featureList.refresh();
|
474
473
|
this._showLoadingIndicator = false;
|
@@ -860,7 +859,7 @@ const CrowdsourceReporter = class {
|
|
860
859
|
*/
|
861
860
|
getFilterPanel() {
|
862
861
|
const currentLayersExpressions = this.layerExpressions ? this.layerExpressions.filter((exp) => exp.id === this._selectedLayerId) : [];
|
863
|
-
return (index.h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), index.h("div", { class: "width-full", slot: "footer" }, index.h("div", { class: "width-full", slot: "footer" }, index.h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), index.h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), index.h("calcite-panel", { "full-height": true }, index.h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
862
|
+
return (index.h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), index.h("div", { class: "width-full", slot: "footer" }, index.h("div", { class: "width-full", slot: "footer" }, index.h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), index.h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), index.h("calcite-panel", { "full-height": true }, index.h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
864
863
|
}
|
865
864
|
/**
|
866
865
|
* Returns the calcite-flow item for feature details
|
@@ -543,9 +543,10 @@ export class CrowdsourceManager {
|
|
543
543
|
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => {
|
544
544
|
this._handleFilterListReset();
|
545
545
|
void this._mapCard.resetFilter();
|
546
|
-
}, onFilterUpdate: () => {
|
547
|
-
|
548
|
-
|
546
|
+
}, onFilterUpdate: async () => {
|
547
|
+
const active = this._filterList.filterCount > 0;
|
548
|
+
await this._layerTable?.filterUpdate(active);
|
549
|
+
await this._mapCard.updateFilterState(active);
|
549
550
|
}, ref: (el) => this._filterList = el, view: this._mapView, zoomBtn: false }))));
|
550
551
|
}
|
551
552
|
/**
|
@@ -473,11 +473,10 @@ export class CrowdsourceReporter {
|
|
473
473
|
* Check if the layers definitionExpression has been modified and update the feature list depending on the applied filters
|
474
474
|
* @protected
|
475
475
|
*/
|
476
|
-
async _handleFilterUpdate() {
|
476
|
+
async _handleFilterUpdate(active) {
|
477
477
|
this._showLoadingIndicator = true;
|
478
|
-
//if
|
479
|
-
|
480
|
-
this._filterActive = this._filterList.urlParams.getAll('filter').length > 0;
|
478
|
+
//if filters are applied the url params will be generated
|
479
|
+
this._filterActive = active;
|
481
480
|
this._filterUrlParams = this._filterList.urlParams.getAll('filter');
|
482
481
|
await this._featureList.refresh();
|
483
482
|
this._showLoadingIndicator = false;
|
@@ -869,7 +868,7 @@ export class CrowdsourceReporter {
|
|
869
868
|
*/
|
870
869
|
getFilterPanel() {
|
871
870
|
const currentLayersExpressions = this.layerExpressions ? this.layerExpressions.filter((exp) => exp.id === this._selectedLayerId) : [];
|
872
|
-
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), h("calcite-panel", { "full-height": true }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
871
|
+
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), h("calcite-panel", { "full-height": true }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
873
872
|
}
|
874
873
|
/**
|
875
874
|
* Returns the calcite-flow item for feature details
|
@@ -395,8 +395,8 @@ export class LayerTable {
|
|
395
395
|
/**
|
396
396
|
* Updates the filter
|
397
397
|
*/
|
398
|
-
async filterUpdate() {
|
399
|
-
await this._handleFilterUpdate();
|
398
|
+
async filterUpdate(active) {
|
399
|
+
await this._handleFilterUpdate(active);
|
400
400
|
}
|
401
401
|
/**
|
402
402
|
* Closes the filter
|
@@ -538,10 +538,10 @@ export class LayerTable {
|
|
538
538
|
const tableHeightClass = this.isMobile ? "height-full" : "height-full-adjusted";
|
539
539
|
const showSearch = this._canShowFullTextSearch();
|
540
540
|
this._validateActiveActions();
|
541
|
-
return (h(Host, { key: '
|
542
|
-
h("div", { key: '
|
541
|
+
return (h(Host, { key: 'f56462fd5d5afa71052cf2557069bb2fee15aaeb' }, h("calcite-shell", { key: '92ccfa2235269aad6da5f918f79ec8ae100e99ca' }, this._getTableControlRow("header"), h("div", { key: 'e5b8fe5e4236e1a7b7e9d31ad784d9bb52a6918d', class: `width-full ${tableHeightClass}` }, h("calcite-panel", { key: 'eca933d832e5b6efddb025211c253bf09e41ab22', class: "height-full width-full" }, showSearch &&
|
542
|
+
h("div", { key: 'e819896c4264db3ee95d10194b67da65997b541d', class: "search-container" }, h("calcite-input", { key: 'e979c7962205caf072057332280b9e04ecd233c4', class: "search", clearable: true, icon: "search", onCalciteInputChange: (evt) => void this._searchTextChanged(evt), placeholder: this._searchPlaceHolder, title: this._searchPlaceHolder, type: "search" })), h("calcite-loader", { key: 'ee715472a4f819dd1e9328e75022439e9bba1334', class: loadingClass, label: this._translations.fetchingData, scale: "l" }), h("div", { key: '8085821dea31de1fcbb1119e5791c0dea744e470', class: tableNodeClass, ref: this.onTableNodeCreate }))), !this.isMobile ? (h("div", { class: "bottom-left text-color height-19" }, this._translations.recordsSelected
|
543
543
|
.replace("{{total}}", total)
|
544
|
-
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), h("delete-dialog", { key: '
|
544
|
+
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), h("delete-dialog", { key: '20c9a06c3f0d44433d9442755d25658c249e102c', id: "deleteDialogId", ids: this._getIds(), layer: this._layer, locale: this.locale, onDeleteDialogClose: () => this._deleteDialogOpen = false, open: this._deleteDialogOpen, ref: (el) => this._deleteDialog = el })));
|
545
545
|
}
|
546
546
|
_deleteDialog;
|
547
547
|
/**
|
@@ -1586,7 +1586,7 @@ export class LayerTable {
|
|
1586
1586
|
* @protected
|
1587
1587
|
*/
|
1588
1588
|
_filterModal() {
|
1589
|
-
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1589
|
+
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1590
1590
|
}
|
1591
1591
|
/**
|
1592
1592
|
* Reset the filter active prop
|
@@ -1601,7 +1601,7 @@ export class LayerTable {
|
|
1601
1601
|
* Check if the layers definitionExpression has been modified
|
1602
1602
|
* @protected
|
1603
1603
|
*/
|
1604
|
-
async _handleFilterUpdate() {
|
1604
|
+
async _handleFilterUpdate(active) {
|
1605
1605
|
const defExp = this._layer.definitionExpression;
|
1606
1606
|
if (this._floorExpression) {
|
1607
1607
|
const regEx = new RegExp(`${this._floorField} = ['].+[']`, "gm");
|
@@ -1609,8 +1609,7 @@ export class LayerTable {
|
|
1609
1609
|
defExp.replace(regEx, this._floorExpression) : defExp ?
|
1610
1610
|
`${defExp} AND (${this._floorExpression})` : this._floorExpression;
|
1611
1611
|
}
|
1612
|
-
this._filterActive =
|
1613
|
-
(this._floorExpression ? this._layer.definitionExpression !== this._floorExpression : true);
|
1612
|
+
this._filterActive = active;
|
1614
1613
|
this._updateShareUrl();
|
1615
1614
|
await this._searchFullText();
|
1616
1615
|
}
|
@@ -2375,8 +2374,12 @@ export class LayerTable {
|
|
2375
2374
|
},
|
2376
2375
|
"filterUpdate": {
|
2377
2376
|
"complexType": {
|
2378
|
-
"signature": "() => Promise<void>",
|
2379
|
-
"parameters": [
|
2377
|
+
"signature": "(active: boolean) => Promise<void>",
|
2378
|
+
"parameters": [{
|
2379
|
+
"name": "active",
|
2380
|
+
"type": "boolean",
|
2381
|
+
"docs": ""
|
2382
|
+
}],
|
2380
2383
|
"references": {
|
2381
2384
|
"Promise": {
|
2382
2385
|
"location": "global",
|
@@ -266,8 +266,8 @@ export class MapCard {
|
|
266
266
|
/**
|
267
267
|
* updates the filter
|
268
268
|
*/
|
269
|
-
async updateFilterState() {
|
270
|
-
this._filterActive =
|
269
|
+
async updateFilterState(active) {
|
270
|
+
this._filterActive = active;
|
271
271
|
this._updateShareUrl();
|
272
272
|
}
|
273
273
|
/**
|
@@ -344,7 +344,7 @@ export class MapCard {
|
|
344
344
|
const mapHeightClass = this.mapInfos?.length > 1 || this.isMapLayout ? "map-height" : "height-full";
|
345
345
|
const progressClass = this.isMapLayout ? "" : "display-none";
|
346
346
|
this._validateActiveActions();
|
347
|
-
return (h(Host, { key: '
|
347
|
+
return (h(Host, { key: '525ee5ce855cf5aa4f8c50e7e88be6c6236046ac' }, h("div", { key: '899898ee0b2ba9048ed24716a339c94d3106a52e', class: `${mapContainerClass} width-full`, ref: (el) => this._toolbar = el }, this._getActionBar(), !this.isMobile && this.isMapLayout && this._getDropdown("more-table-options"), this.enableShare && !this.isMobile && this.isMapLayout ? this._getShare("share") : undefined), h("calcite-progress", { key: '896569eb6cf65f45cbebb4b36f5b01ada5ed1092', class: progressClass, value: 0 }), h("div", { key: '79cac798541783bdc74e4b13f9df4d7564eb99f4', class: `${mapHeightClass} ${mapClass}`, ref: (el) => (this._mapDiv = el) }), h("map-tools", { key: '730d48c4ce98af3872bfa6c486e8749e18c24477', basemapConfig: this.basemapConfig, class: `box-shadow ${themeClass}`, enableBasemap: this.enableBasemap, enableFloorFilter: this.enableFloorFilter, enableFullscreen: this.enableFullscreen, enableHome: this.enableHome, enableLegend: this.enableLegend, enableSearch: this.enableSearch, enableSingleExpand: this.enableSingleExpand, homeZoomToolsSize: this.homeZoomToolsSize, locale: this.locale, mapView: this.mapView, mapWidgetsSize: this.mapWidgetsSize, position: this.mapWidgetsPosition, ref: (el) => this._mapTools = el, searchConfiguration: this._searchConfiguration, stackTools: this.stackTools, toolOrder: this.toolOrder })));
|
348
348
|
}
|
349
349
|
/**
|
350
350
|
* Called each time after the component is loaded
|
@@ -1662,8 +1662,12 @@ export class MapCard {
|
|
1662
1662
|
},
|
1663
1663
|
"updateFilterState": {
|
1664
1664
|
"complexType": {
|
1665
|
-
"signature": "() => Promise<void>",
|
1666
|
-
"parameters": [
|
1665
|
+
"signature": "(active: boolean) => Promise<void>",
|
1666
|
+
"parameters": [{
|
1667
|
+
"name": "active",
|
1668
|
+
"type": "boolean",
|
1669
|
+
"docs": ""
|
1670
|
+
}],
|
1667
1671
|
"references": {
|
1668
1672
|
"Promise": {
|
1669
1673
|
"location": "global",
|
@@ -591,9 +591,10 @@ const CrowdsourceManager$1 = /*@__PURE__*/ proxyCustomElement(class CrowdsourceM
|
|
591
591
|
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => {
|
592
592
|
this._handleFilterListReset();
|
593
593
|
void this._mapCard.resetFilter();
|
594
|
-
}, onFilterUpdate: () => {
|
595
|
-
|
596
|
-
|
594
|
+
}, onFilterUpdate: async () => {
|
595
|
+
const active = this._filterList.filterCount > 0;
|
596
|
+
await this._layerTable?.filterUpdate(active);
|
597
|
+
await this._mapCard.updateFilterState(active);
|
597
598
|
}, ref: (el) => this._filterList = el, view: this._mapView, zoomBtn: false }))));
|
598
599
|
}
|
599
600
|
/**
|
@@ -508,11 +508,10 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
508
508
|
* Check if the layers definitionExpression has been modified and update the feature list depending on the applied filters
|
509
509
|
* @protected
|
510
510
|
*/
|
511
|
-
async _handleFilterUpdate() {
|
511
|
+
async _handleFilterUpdate(active) {
|
512
512
|
this._showLoadingIndicator = true;
|
513
|
-
//if
|
514
|
-
|
515
|
-
this._filterActive = this._filterList.urlParams.getAll('filter').length > 0;
|
513
|
+
//if filters are applied the url params will be generated
|
514
|
+
this._filterActive = active;
|
516
515
|
this._filterUrlParams = this._filterList.urlParams.getAll('filter');
|
517
516
|
await this._featureList.refresh();
|
518
517
|
this._showLoadingIndicator = false;
|
@@ -904,7 +903,7 @@ const CrowdsourceReporter$1 = /*@__PURE__*/ proxyCustomElement(class Crowdsource
|
|
904
903
|
*/
|
905
904
|
getFilterPanel() {
|
906
905
|
const currentLayersExpressions = this.layerExpressions ? this.layerExpressions.filter((exp) => exp.id === this._selectedLayerId) : [];
|
907
|
-
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), h("calcite-panel", { "full-height": true }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
906
|
+
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), h("calcite-panel", { "full-height": true }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
908
907
|
}
|
909
908
|
/**
|
910
909
|
* Returns the calcite-flow item for feature details
|
@@ -423,8 +423,8 @@ const LayerTable = /*@__PURE__*/ proxyCustomElement(class LayerTable extends HTM
|
|
423
423
|
/**
|
424
424
|
* Updates the filter
|
425
425
|
*/
|
426
|
-
async filterUpdate() {
|
427
|
-
await this._handleFilterUpdate();
|
426
|
+
async filterUpdate(active) {
|
427
|
+
await this._handleFilterUpdate(active);
|
428
428
|
}
|
429
429
|
/**
|
430
430
|
* Closes the filter
|
@@ -566,10 +566,10 @@ const LayerTable = /*@__PURE__*/ proxyCustomElement(class LayerTable extends HTM
|
|
566
566
|
const tableHeightClass = this.isMobile ? "height-full" : "height-full-adjusted";
|
567
567
|
const showSearch = this._canShowFullTextSearch();
|
568
568
|
this._validateActiveActions();
|
569
|
-
return (h(Host, { key: '
|
570
|
-
h("div", { key: '
|
569
|
+
return (h(Host, { key: 'f56462fd5d5afa71052cf2557069bb2fee15aaeb' }, h("calcite-shell", { key: '92ccfa2235269aad6da5f918f79ec8ae100e99ca' }, this._getTableControlRow("header"), h("div", { key: 'e5b8fe5e4236e1a7b7e9d31ad784d9bb52a6918d', class: `width-full ${tableHeightClass}` }, h("calcite-panel", { key: 'eca933d832e5b6efddb025211c253bf09e41ab22', class: "height-full width-full" }, showSearch &&
|
570
|
+
h("div", { key: 'e819896c4264db3ee95d10194b67da65997b541d', class: "search-container" }, h("calcite-input", { key: 'e979c7962205caf072057332280b9e04ecd233c4', class: "search", clearable: true, icon: "search", onCalciteInputChange: (evt) => void this._searchTextChanged(evt), placeholder: this._searchPlaceHolder, title: this._searchPlaceHolder, type: "search" })), h("calcite-loader", { key: 'ee715472a4f819dd1e9328e75022439e9bba1334', class: loadingClass, label: this._translations.fetchingData, scale: "l" }), h("div", { key: '8085821dea31de1fcbb1119e5791c0dea744e470', class: tableNodeClass, ref: this.onTableNodeCreate }))), !this.isMobile ? (h("div", { class: "bottom-left text-color height-19" }, this._translations.recordsSelected
|
571
571
|
.replace("{{total}}", total)
|
572
|
-
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), h("delete-dialog", { key: '
|
572
|
+
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), h("delete-dialog", { key: '20c9a06c3f0d44433d9442755d25658c249e102c', id: "deleteDialogId", ids: this._getIds(), layer: this._layer, locale: this.locale, onDeleteDialogClose: () => this._deleteDialogOpen = false, open: this._deleteDialogOpen, ref: (el) => this._deleteDialog = el })));
|
573
573
|
}
|
574
574
|
_deleteDialog;
|
575
575
|
/**
|
@@ -1614,7 +1614,7 @@ const LayerTable = /*@__PURE__*/ proxyCustomElement(class LayerTable extends HTM
|
|
1614
1614
|
* @protected
|
1615
1615
|
*/
|
1616
1616
|
_filterModal() {
|
1617
|
-
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1617
|
+
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1618
1618
|
}
|
1619
1619
|
/**
|
1620
1620
|
* Reset the filter active prop
|
@@ -1629,7 +1629,7 @@ const LayerTable = /*@__PURE__*/ proxyCustomElement(class LayerTable extends HTM
|
|
1629
1629
|
* Check if the layers definitionExpression has been modified
|
1630
1630
|
* @protected
|
1631
1631
|
*/
|
1632
|
-
async _handleFilterUpdate() {
|
1632
|
+
async _handleFilterUpdate(active) {
|
1633
1633
|
const defExp = this._layer.definitionExpression;
|
1634
1634
|
if (this._floorExpression) {
|
1635
1635
|
const regEx = new RegExp(`${this._floorField} = ['].+[']`, "gm");
|
@@ -1637,8 +1637,7 @@ const LayerTable = /*@__PURE__*/ proxyCustomElement(class LayerTable extends HTM
|
|
1637
1637
|
defExp.replace(regEx, this._floorExpression) : defExp ?
|
1638
1638
|
`${defExp} AND (${this._floorExpression})` : this._floorExpression;
|
1639
1639
|
}
|
1640
|
-
this._filterActive =
|
1641
|
-
(this._floorExpression ? this._layer.definitionExpression !== this._floorExpression : true);
|
1640
|
+
this._filterActive = active;
|
1642
1641
|
this._updateShareUrl();
|
1643
1642
|
await this._searchFullText();
|
1644
1643
|
}
|
@@ -323,8 +323,8 @@ const MapCard = /*@__PURE__*/ proxyCustomElement(class MapCard extends HTMLEleme
|
|
323
323
|
/**
|
324
324
|
* updates the filter
|
325
325
|
*/
|
326
|
-
async updateFilterState() {
|
327
|
-
this._filterActive =
|
326
|
+
async updateFilterState(active) {
|
327
|
+
this._filterActive = active;
|
328
328
|
this._updateShareUrl();
|
329
329
|
}
|
330
330
|
/**
|
@@ -401,7 +401,7 @@ const MapCard = /*@__PURE__*/ proxyCustomElement(class MapCard extends HTMLEleme
|
|
401
401
|
const mapHeightClass = this.mapInfos?.length > 1 || this.isMapLayout ? "map-height" : "height-full";
|
402
402
|
const progressClass = this.isMapLayout ? "" : "display-none";
|
403
403
|
this._validateActiveActions();
|
404
|
-
return (h(Host, { key: '
|
404
|
+
return (h(Host, { key: '525ee5ce855cf5aa4f8c50e7e88be6c6236046ac' }, h("div", { key: '899898ee0b2ba9048ed24716a339c94d3106a52e', class: `${mapContainerClass} width-full`, ref: (el) => this._toolbar = el }, this._getActionBar(), !this.isMobile && this.isMapLayout && this._getDropdown("more-table-options"), this.enableShare && !this.isMobile && this.isMapLayout ? this._getShare("share") : undefined), h("calcite-progress", { key: '896569eb6cf65f45cbebb4b36f5b01ada5ed1092', class: progressClass, value: 0 }), h("div", { key: '79cac798541783bdc74e4b13f9df4d7564eb99f4', class: `${mapHeightClass} ${mapClass}`, ref: (el) => (this._mapDiv = el) }), h("map-tools", { key: '730d48c4ce98af3872bfa6c486e8749e18c24477', basemapConfig: this.basemapConfig, class: `box-shadow ${themeClass}`, enableBasemap: this.enableBasemap, enableFloorFilter: this.enableFloorFilter, enableFullscreen: this.enableFullscreen, enableHome: this.enableHome, enableLegend: this.enableLegend, enableSearch: this.enableSearch, enableSingleExpand: this.enableSingleExpand, homeZoomToolsSize: this.homeZoomToolsSize, locale: this.locale, mapView: this.mapView, mapWidgetsSize: this.mapWidgetsSize, position: this.mapWidgetsPosition, ref: (el) => this._mapTools = el, searchConfiguration: this._searchConfiguration, stackTools: this.stackTools, toolOrder: this.toolOrder })));
|
405
405
|
}
|
406
406
|
/**
|
407
407
|
* Called each time after the component is loaded
|
@@ -584,8 +584,8 @@ const LayerTable = class {
|
|
584
584
|
/**
|
585
585
|
* Updates the filter
|
586
586
|
*/
|
587
|
-
async filterUpdate() {
|
588
|
-
await this._handleFilterUpdate();
|
587
|
+
async filterUpdate(active) {
|
588
|
+
await this._handleFilterUpdate(active);
|
589
589
|
}
|
590
590
|
/**
|
591
591
|
* Closes the filter
|
@@ -727,10 +727,10 @@ const LayerTable = class {
|
|
727
727
|
const tableHeightClass = this.isMobile ? "height-full" : "height-full-adjusted";
|
728
728
|
const showSearch = this._canShowFullTextSearch();
|
729
729
|
this._validateActiveActions();
|
730
|
-
return (h(Host, { key: '
|
731
|
-
h("div", { key: '
|
730
|
+
return (h(Host, { key: 'f56462fd5d5afa71052cf2557069bb2fee15aaeb' }, h("calcite-shell", { key: '92ccfa2235269aad6da5f918f79ec8ae100e99ca' }, this._getTableControlRow("header"), h("div", { key: 'e5b8fe5e4236e1a7b7e9d31ad784d9bb52a6918d', class: `width-full ${tableHeightClass}` }, h("calcite-panel", { key: 'eca933d832e5b6efddb025211c253bf09e41ab22', class: "height-full width-full" }, showSearch &&
|
731
|
+
h("div", { key: 'e819896c4264db3ee95d10194b67da65997b541d', class: "search-container" }, h("calcite-input", { key: 'e979c7962205caf072057332280b9e04ecd233c4', class: "search", clearable: true, icon: "search", onCalciteInputChange: (evt) => void this._searchTextChanged(evt), placeholder: this._searchPlaceHolder, title: this._searchPlaceHolder, type: "search" })), h("calcite-loader", { key: 'ee715472a4f819dd1e9328e75022439e9bba1334', class: loadingClass, label: this._translations.fetchingData, scale: "l" }), h("div", { key: '8085821dea31de1fcbb1119e5791c0dea744e470', class: tableNodeClass, ref: this.onTableNodeCreate }))), !this.isMobile ? (h("div", { class: "bottom-left text-color height-19" }, this._translations.recordsSelected
|
732
732
|
.replace("{{total}}", total)
|
733
|
-
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), h("delete-dialog", { key: '
|
733
|
+
.replace("{{selected}}", selected))) : undefined), this.createFilterModal && this._filterModal(), h("delete-dialog", { key: '20c9a06c3f0d44433d9442755d25658c249e102c', id: "deleteDialogId", ids: this._getIds(), layer: this._layer, locale: this.locale, onDeleteDialogClose: () => this._deleteDialogOpen = false, open: this._deleteDialogOpen, ref: (el) => this._deleteDialog = el })));
|
734
734
|
}
|
735
735
|
_deleteDialog;
|
736
736
|
/**
|
@@ -1775,7 +1775,7 @@ const LayerTable = class {
|
|
1775
1775
|
* @protected
|
1776
1776
|
*/
|
1777
1777
|
_filterModal() {
|
1778
|
-
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1778
|
+
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => void this._handleFilterListReset(), onFilterUpdate: () => void this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, view: this.mapView, zoomBtn: false }))));
|
1779
1779
|
}
|
1780
1780
|
/**
|
1781
1781
|
* Reset the filter active prop
|
@@ -1790,7 +1790,7 @@ const LayerTable = class {
|
|
1790
1790
|
* Check if the layers definitionExpression has been modified
|
1791
1791
|
* @protected
|
1792
1792
|
*/
|
1793
|
-
async _handleFilterUpdate() {
|
1793
|
+
async _handleFilterUpdate(active) {
|
1794
1794
|
const defExp = this._layer.definitionExpression;
|
1795
1795
|
if (this._floorExpression) {
|
1796
1796
|
const regEx = new RegExp(`${this._floorField} = ['].+[']`, "gm");
|
@@ -1798,8 +1798,7 @@ const LayerTable = class {
|
|
1798
1798
|
defExp.replace(regEx, this._floorExpression) : defExp ?
|
1799
1799
|
`${defExp} AND (${this._floorExpression})` : this._floorExpression;
|
1800
1800
|
}
|
1801
|
-
this._filterActive =
|
1802
|
-
(this._floorExpression ? this._layer.definitionExpression !== this._floorExpression : true);
|
1801
|
+
this._filterActive = active;
|
1803
1802
|
this._updateShareUrl();
|
1804
1803
|
await this._searchFullText();
|
1805
1804
|
}
|
@@ -2388,8 +2387,8 @@ const MapCard = class {
|
|
2388
2387
|
/**
|
2389
2388
|
* updates the filter
|
2390
2389
|
*/
|
2391
|
-
async updateFilterState() {
|
2392
|
-
this._filterActive =
|
2390
|
+
async updateFilterState(active) {
|
2391
|
+
this._filterActive = active;
|
2393
2392
|
this._updateShareUrl();
|
2394
2393
|
}
|
2395
2394
|
/**
|
@@ -2466,7 +2465,7 @@ const MapCard = class {
|
|
2466
2465
|
const mapHeightClass = this.mapInfos?.length > 1 || this.isMapLayout ? "map-height" : "height-full";
|
2467
2466
|
const progressClass = this.isMapLayout ? "" : "display-none";
|
2468
2467
|
this._validateActiveActions();
|
2469
|
-
return (h(Host, { key: '
|
2468
|
+
return (h(Host, { key: '525ee5ce855cf5aa4f8c50e7e88be6c6236046ac' }, h("div", { key: '899898ee0b2ba9048ed24716a339c94d3106a52e', class: `${mapContainerClass} width-full`, ref: (el) => this._toolbar = el }, this._getActionBar(), !this.isMobile && this.isMapLayout && this._getDropdown("more-table-options"), this.enableShare && !this.isMobile && this.isMapLayout ? this._getShare("share") : undefined), h("calcite-progress", { key: '896569eb6cf65f45cbebb4b36f5b01ada5ed1092', class: progressClass, value: 0 }), h("div", { key: '79cac798541783bdc74e4b13f9df4d7564eb99f4', class: `${mapHeightClass} ${mapClass}`, ref: (el) => (this._mapDiv = el) }), h("map-tools", { key: '730d48c4ce98af3872bfa6c486e8749e18c24477', basemapConfig: this.basemapConfig, class: `box-shadow ${themeClass}`, enableBasemap: this.enableBasemap, enableFloorFilter: this.enableFloorFilter, enableFullscreen: this.enableFullscreen, enableHome: this.enableHome, enableLegend: this.enableLegend, enableSearch: this.enableSearch, enableSingleExpand: this.enableSingleExpand, homeZoomToolsSize: this.homeZoomToolsSize, locale: this.locale, mapView: this.mapView, mapWidgetsSize: this.mapWidgetsSize, position: this.mapWidgetsPosition, ref: (el) => this._mapTools = el, searchConfiguration: this._searchConfiguration, stackTools: this.stackTools, toolOrder: this.toolOrder })));
|
2470
2469
|
}
|
2471
2470
|
/**
|
2472
2471
|
* Called each time after the component is loaded
|
@@ -532,9 +532,10 @@ const CrowdsourceManager = class {
|
|
532
532
|
return (h("calcite-modal", { "aria-labelledby": "modal-title", class: "modal", kind: "brand", onCalciteModalClose: () => void this._closeFilter(), open: this._filterOpen, widthScale: "s" }, h("div", { class: "display-flex align-center", id: "modal-title", slot: "header" }, this._translations?.filter?.replace("{{title}}", this._layer?.title)), h("div", { slot: "content" }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtn: true, closeBtnOnClick: async () => this._closeFilter(), comboboxOverlayPositioning: "fixed", layerExpressions: this._layerExpressions, onFilterListReset: () => {
|
533
533
|
this._handleFilterListReset();
|
534
534
|
void this._mapCard.resetFilter();
|
535
|
-
}, onFilterUpdate: () => {
|
536
|
-
|
537
|
-
|
535
|
+
}, onFilterUpdate: async () => {
|
536
|
+
const active = this._filterList.filterCount > 0;
|
537
|
+
await this._layerTable?.filterUpdate(active);
|
538
|
+
await this._mapCard.updateFilterState(active);
|
538
539
|
}, ref: (el) => this._filterList = el, view: this._mapView, zoomBtn: false }))));
|
539
540
|
}
|
540
541
|
/**
|
@@ -460,11 +460,10 @@ const CrowdsourceReporter = class {
|
|
460
460
|
* Check if the layers definitionExpression has been modified and update the feature list depending on the applied filters
|
461
461
|
* @protected
|
462
462
|
*/
|
463
|
-
async _handleFilterUpdate() {
|
463
|
+
async _handleFilterUpdate(active) {
|
464
464
|
this._showLoadingIndicator = true;
|
465
|
-
//if
|
466
|
-
|
467
|
-
this._filterActive = this._filterList.urlParams.getAll('filter').length > 0;
|
465
|
+
//if filters are applied the url params will be generated
|
466
|
+
this._filterActive = active;
|
468
467
|
this._filterUrlParams = this._filterList.urlParams.getAll('filter');
|
469
468
|
await this._featureList.refresh();
|
470
469
|
this._showLoadingIndicator = false;
|
@@ -856,7 +855,7 @@ const CrowdsourceReporter = class {
|
|
856
855
|
*/
|
857
856
|
getFilterPanel() {
|
858
857
|
const currentLayersExpressions = this.layerExpressions ? this.layerExpressions.filter((exp) => exp.id === this._selectedLayerId) : [];
|
859
|
-
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), h("calcite-panel", { "full-height": true }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
858
|
+
return (h("calcite-flow-item", { collapsed: this.isMobile && this._sidePanelCollapsed, heading: this._translations?.filterLayerTitle?.replace("{{title}}", this._selectedLayerName), loading: this._showLoadingIndicator, onCalciteFlowItemBack: this.backFromFilterPanel.bind(this) }, this.isMobile && this.getActionToExpandCollapsePanel(), h("div", { class: "width-full", slot: "footer" }, h("div", { class: "width-full", slot: "footer" }, h("calcite-button", { appearance: "solid", class: "footer-top-button footer-button", disabled: !this._filterActive, onClick: () => { void this._filterList?.forceReset(); }, width: "full" }, this._translations.resetFilter), h("calcite-button", { appearance: "outline", class: "footer-button", onClick: this.backFromFilterPanel.bind(this), width: "full" }, this._translations.close))), h("calcite-panel", { "full-height": true }, h("instant-apps-filter-list", { autoUpdateUrl: false, closeBtnOnClick: () => undefined, comboboxOverlayPositioning: "fixed", layerExpressions: currentLayersExpressions, onFilterListReset: () => this._handleFilterListReset(), onFilterUpdate: () => this._handleFilterUpdate(this._filterList.filterCount > 0), ref: (el) => this._filterList = el, resetBtn: false, resetFiltersOnDisconnect: false, view: this.mapView, zoomBtn: false }))));
|
860
859
|
}
|
861
860
|
/**
|
862
861
|
* Returns the calcite-flow item for feature details
|