Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy v0.7.0 #235

Merged
merged 7 commits into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .veda/ui
Submodule ui updated 58 files
+0 −5 .env
+1 −1 .npmrc
+ app/graphics/meta/android-chrome.png
+ app/graphics/meta/apple-touch-icon.png
+ app/graphics/meta/default-meta-image.png
+ app/graphics/meta/favicon.ico
+ app/graphics/meta/favicon.png
+ app/graphics/meta/icon-192.png
+ app/graphics/meta/icon-512.png
+51 −0 app/graphics/meta/icon.svg
+ app/graphics/meta/meta-image.png
+6 −0 app/graphics/meta/site.webmanifest
+7 −5 app/index.html
+3 −1 app/scripts/components/analysis/define/index.tsx
+2 −1 app/scripts/components/analysis/page-hero-media.tsx
+46 −5 app/scripts/components/analysis/saved-analysis-control.tsx
+1 −1 app/scripts/components/common/blocks/block-map.tsx
+103 −24 app/scripts/components/common/blocks/index.tsx
+1 −1 app/scripts/components/common/blocks/scrollytelling/chapter.tsx
+80 −42 app/scripts/components/common/blocks/scrollytelling/index.tsx
+10 −4 app/scripts/components/common/chart/block.tsx
+126 −0 app/scripts/components/common/chart/utils.test.ts
+31 −8 app/scripts/components/common/chart/utils.ts
+95 −65 app/scripts/components/common/mapbox/index.tsx
+95 −0 app/scripts/components/common/mapbox/layers/basemap.tsx
+161 −138 app/scripts/components/common/mapbox/layers/raster-timeseries.tsx
+139 −0 app/scripts/components/common/mapbox/layers/styles.tsx
+59 −11 app/scripts/components/common/mapbox/layers/utils.ts
+256 −0 app/scripts/components/common/mapbox/layers/vector-timeseries.tsx
+60 −0 app/scripts/components/common/mapbox/map-options/basemaps.ts
+266 −0 app/scripts/components/common/mapbox/map-options/index.tsx
+0 −0 app/scripts/components/common/mapbox/map-options/projection-items.tsx
+14 −8 app/scripts/components/common/mapbox/map-options/types.ts
+31 −0 app/scripts/components/common/mapbox/map-options/use-basemap.ts
+0 −0 app/scripts/components/common/mapbox/map-options/utils.ts
+41 −7 app/scripts/components/common/mapbox/map.tsx
+0 −121 app/scripts/components/common/mapbox/projection-selector/index.tsx
+1 −1 app/scripts/components/common/meta-tags.js
+96 −11 app/scripts/components/common/notebook-connect.tsx
+16 −0 app/scripts/components/common/page-header.js
+61 −0 app/scripts/components/data-catalog/index.tsx
+1 −1 app/scripts/components/datasets/s-explore/index.tsx
+68 −0 app/scripts/components/root-discoveries/index.tsx
+56 −0 app/scripts/components/sandbox/colors/index.js
+6 −0 app/scripts/components/sandbox/index.js
+1 −1 app/scripts/components/sandbox/map/index.js
+51 −0 app/scripts/components/sandbox/mdx-chart/aq.csv
+15 −2 app/scripts/components/sandbox/mdx-chart/chart.mdx
+30 −7 app/scripts/context/layer-data.tsx
+4 −0 app/scripts/main.tsx
+42 −10 app/scripts/utils/hinted-error.tsx
+20 −0 app/scripts/utils/use-async-error.ts
+93 −0 docs/adr/001-dashboard-v1-catalog-explore.md
+2 −1 jest.config.js
+30 −0 mock/datasets/fire.data.mdx
+3 −0 mock/datasets/no2.data.mdx
+15 −13 package.json
+1,747 −1,729 yarn.lock
2 changes: 1 addition & 1 deletion discoveries/tws-trends.discoveries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ media:
author:
name: USGS/NASA
url: https://eros.usgs.gov/media-gallery/earth-as-art/2/jordan
pubDate: 2020-12-01
pubDate: 2023-03-01
thematics:
- eis
---
Expand Down
2 changes: 1 addition & 1 deletion discoveries/wq-models.discoveries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ media:
author:
name: NASA
url: https://www.nasa.gov
pubDate: 2023-03-14
pubDate: 2023-03-01
thematics:
- eis
---
Expand Down
1 change: 1 addition & 0 deletions docs/CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Check the [MDX_BLOCK.md](./MDX_BLOCKS.md) for information on the different blocks that can be used to compose the content layout.
- Check [layer.md](./frontmatter/layer.md) for details on the different properties of a dataset layer.
- Check [media.md](./frontmatter/media.md) for information on the images needed for the content's covers.
- Check [GH_CODESPACES.md](./GH_CODESPACES.md) for a video walktrhough of adding content to VEDA with github codespaces.

----

Expand Down
14 changes: 14 additions & 0 deletions docs/GH_CODESPACES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Video Walkthrough
The following videos explain how to add content to VEDA using github codespaces.

## Setting up github codespaces

Codespaces will allow you to have a development environment in the cloud without the need to setup anything on your local machine.

🎥 https://drive.google.com/file/d/1u2hkokW3ZDmrjYNkg10OgWU0-nNtHpJ6/view

## Creating a discovery

Walkthrough of how to use github codespaces to create a discovery. From creating the needed files to the Pull Request that will eventually get the content published.

🎥 https://drive.google.com/file/d/1Jkbt2csXntPPe8G5TBGic9UYZsj2rgW3/view
4 changes: 2 additions & 2 deletions docs/frontmatter/layer.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Name of the layer for display purposes.

**type**
`raster | vector`
The type of the layer will define how the data is displayed on the map.
- ⚠️ Only raster is currently supported.
The type of the layer will define how the data is displayed on the map.
⚠️ Vector datasets are should be in vector titles format with a source layer named `default`. It is currently not possible to customize the style of the dataset's features.

**description**
`string`
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "veda-config",
"description": "Configuration for Veda",
"version": "0.6.1",
"version": "0.7.0",
"source": "./.veda/ui/app/index.html",
"license": "Apache-2.0",
"scripts": {
Expand All @@ -18,6 +18,8 @@
"node": "16.x"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.7.0",
"@parcel/transformer-webmanifest": "2.7.0",
"dotenv": "^10.0.0",
"netlify-cms-proxy-server": "^1.3.24"
},
Expand Down
Loading