Skip to content

Commit

Permalink
Rc/1.4 (#217)
Browse files Browse the repository at this point in the history
* Bundle/various bugfixes enhancements updates (#212)

* added fallback layers under esri community basemaps

* excluded esri community layers from print request

* fixed "more menu" theme and tool display and enabled floating button when sidebar is open

* removed stats canada from add data tool as url no longer valid

* various bugfixes, enhancements, and updates merged in

* switched community map styles to relative path

* Add or update the Azure App Service build and deployment workflow config

* fixed 211 theme handling of null website data

* Feature/remove arn from realestate theme (#213)

* added maxFeatures flag to getWFSGeoJSON helper

* removed polygon layer from commercial real estate

* Refactor/functional components (#214)

* converted header to functional component

* converted theme and tool templates to functional components

* switched 211 theme to functional component

* switched weather radar to functional component

* converted MyMapsPopup to functional component

* converted mymapspopuplabel to functional component

* converted mymapsitem to functional component

* fixed delete button error

* converted floating menu and my maps to functional components

* added github button component

* switched to new github component

* removed usage of componentWillMount

* converted main app to functional component

* converted LoadingScreen to functional component

* refactored SCMap component to functional component

* added docker_build bat file to ignored file

* replaced react-sidebar

* fixed typo in helper

* converted basemap switcher to functional component using context to allow for  code reuse between basemap switcher types

* removed unused and debug values

* refactored basic basemap switcher to functional component with shared context

* converted navigation controls to functional component

* converted footer tools to functional component and removed unused code

* various updates to bring dependencies up to latest version

* converted search control to functional component and replaced react-autocomplete with MUI autocomplete

* converted search addresses tool to functional component and switched to mui autocomplete

* removed react-autocomplete package, fixed duplicate results in search

* upgraded to latest version of openlayers

* fixed search popup share and add to my map issue

* fixed clear icon on search and removed commented out code

* updated rc-menu package

* fixed vector tile layer label display issue, updated several instances of forEachFeatureAtPixel to include a layer filter option, remove file-saver, array-move, and ol-contextmenu packages

* added filter to search result

* upgraded react-router-dom and resolved issues with legend and layerInfo default state

* updated react-tabs to lastest version that's compatible with react 17

* added wildcard path for react router

* switched from fbemitter to node events emitter

* 1.4.0

* moved 211 api url to local config file

* switched property report to a print preview of an embedded report (#215)

* Refactor/remove react app rewire (#216)

* removed xml2json, removed react-app-rewire, added url package

* updated weather forecast to support new parsing in API

* set fixed version of ol

* added clear icon to layer search box

* removed typo
  • Loading branch information
reed-tom authored Sep 21, 2023
1 parent a23f79d commit 51af0ce
Show file tree
Hide file tree
Showing 102 changed files with 10,294 additions and 23,434 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/rc-1.4_sc-dev-opengis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Node.js app to Azure Web App - sc-dev-opengis

on:
push:
branches:
- rc/1.4
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Node.js version
uses: actions/setup-node@v1
with:
node-version: '18.x'

- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v2
with:
name: node-app
path: .

deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v2
with:
name: node-app

- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'sc-dev-opengis'
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_C8976875441C46BDB76D397A99640041 }}
package: .
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ debug.log
*.zip
sc_copyToServer.bat
Build.ps1
docker_build.bat
Loading

0 comments on commit 51af0ce

Please sign in to comment.