Skip to content

Commit

Permalink
Backport 2.1.x - refactor of templates and js entry points (#100)
Browse files Browse the repository at this point in the history
* Allow extensibility of localConfig.json via patch for geonode project (#87)

* Remove js api entries and templates structure refactor (#92)

* remove js api entry and template refactor

* update client bundle

Co-authored-by: Giovanni Allegri <giohappy@gmail.com>

Co-authored-by: Giovanni Allegri <giohappy@gmail.com>
  • Loading branch information
allyoucanmap and giohappy committed Mar 30, 2021
1 parent 89ff104 commit 6ccf563
Show file tree
Hide file tree
Showing 397 changed files with 4,222 additions and 3,252 deletions.
225 changes: 0 additions & 225 deletions geonode_mapstore_client/client/.eslintrc

This file was deleted.

1 change: 1 addition & 0 deletions geonode_mapstore_client/client/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ module/
coverage/
package-lock.json
yarn.lock
*.code-workspace
2 changes: 1 addition & 1 deletion geonode_mapstore_client/client/MapStore2
Submodule MapStore2 updated 77 files
+1 −1 build/createExtensionWebpackConfig.js
+3 −9 build/moduleFederation.js
+9 −0 docs/developer-guide/maps-configuration.md
+2 −1 docs/user-guide/timeline.md
+1 −1 package.json
+1 −1 project/custom/templates/web/src/main/resources/proxy.properties
+1 −1 project/standard/templates/web/src/main/resources/proxy.properties
+9 −1 web/client/actions/__tests__/timeline-test.js
+7 −0 web/client/actions/security.js
+2 −0 web/client/actions/timeline.js
+6 −2 web/client/api/GeoStoreDAO.js
+1 −1 web/client/api/WMS.js
+12 −1 web/client/api/__tests__/WMS-test.js
+1 −1 web/client/components/TOC/Toolbar.jsx
+28 −0 web/client/components/TOC/__tests__/Toolbar-test.jsx
+20 −5 web/client/components/catalog/editor/MainForm.jsx
+11 −0 web/client/components/catalog/editor/MainFormUtils.js
+2 −1 web/client/components/charts/PlotlyChart.jsx
+11 −8 web/client/components/charts/WidgetChart.jsx
+3 −3 web/client/components/data/featuregrid/EmptyRowsView.jsx
+7 −3 web/client/components/data/identify/IdentifyContainer.jsx
+31 −1 web/client/components/data/identify/__tests__/IdentifyContainer-test.jsx
+15 −2 web/client/components/data/query/CrossLayerFilter.jsx
+38 −0 web/client/components/data/query/__tests__/CrossLayerFilter-test.jsx
+6 −6 web/client/components/map/cesium/plugins/WMSLayer.js
+64 −0 web/client/components/map/enhancers/__tests__/withScalesDenominators-test.js
+55 −0 web/client/components/map/enhancers/withScalesDenominators.js
+2 −2 web/client/components/map/openlayers/swipe/EffectSupport.jsx
+7 −5 web/client/components/security/modals/PasswordResetModal.jsx
+16 −0 web/client/components/security/modals/__tests__/PasswordResetModal-test.jsx
+6 −0 web/client/components/widgets/enhancers/__tests__/emptyChartState-test.jsx
+5 −4 web/client/components/widgets/enhancers/emptyChartState.js
+1 −1 web/client/components/widgets/enhancers/emptyLegendState.js
+5 −9 web/client/components/widgets/enhancers/emptyTextState.js
+2 −1 web/client/components/widgets/widget/MapView.jsx
+4 −1 web/client/components/widgets/widget/TableWidget.jsx
+17 −0 web/client/components/widgets/widget/WidgetEmptyMessage.jsx
+2 −2 web/client/components/widgets/widget/__tests__/CounterView-test.jsx
+31 −0 web/client/components/widgets/widget/__tests__/WidgetEmptyMessage-test.jsx
+32 −81 web/client/epics/__tests__/dimension-test.js
+2 −1 web/client/epics/__tests__/playback-test.js
+77 −2 web/client/epics/__tests__/timeline-test.js
+5 −3 web/client/epics/__tests__/widgetsTray-test.js
+35 −18 web/client/epics/timeline.js
+2 −1 web/client/plugins/Map.jsx
+1 −1 web/client/plugins/MousePosition.jsx
+24 −4 web/client/plugins/Timeline.jsx
+9 −2 web/client/plugins/__tests__/Timeline-test.jsx
+2 −0 web/client/plugins/geostory/MediaViewer.js
+2 −1 web/client/plugins/login/index.js
+12 −0 web/client/reducers/__tests__/measurement-test.js
+12 −1 web/client/reducers/__tests__/security-test.js
+5 −1 web/client/reducers/__tests__/timeline-test.js
+4 −3 web/client/reducers/measurement.js
+12 −3 web/client/reducers/security.js
+5 −1 web/client/reducers/timeline.js
+21 −4 web/client/selectors/__tests__/timeline-test.js
+8 −2 web/client/selectors/dimension.js
+234 −0 web/client/test-resources/wms/GetCapabilities-1.3.0-lowercase-espg.xml
+13 −0 web/client/themes/default/less/widget.less
+3 −1 web/client/translations/data.de-DE.json
+3 −1 web/client/translations/data.en-US.json
+3 −1 web/client/translations/data.es-ES.json
+2 −1 web/client/translations/data.fi-FI.json
+3 −1 web/client/translations/data.fr-FR.json
+2 −1 web/client/translations/data.hr-HR.json
+3 −1 web/client/translations/data.it-IT.json
+2 −1 web/client/translations/data.nl-NL.json
+2 −1 web/client/translations/data.pt-PT.json
+2 −1 web/client/translations/data.vi-VN.json
+3 −1 web/client/translations/data.zh-ZH.json
+1 −1 web/client/utils/FeatureInfoUtils.js
+1 −1 web/client/utils/PluginsUtils.js
+28 −0 web/client/utils/__tests__/FeatureInfoUtils-test.js
+29 −0 web/client/utils/__tests__/PluginsUtils-test.js
+44 −44 web/client/utils/cesium/BILTerrainProvider.js
+1 −1 web/src/main/resources/proxy.properties
85 changes: 0 additions & 85 deletions geonode_mapstore_client/client/home.html

This file was deleted.

Loading

0 comments on commit 6ccf563

Please sign in to comment.