Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d42af04
feat: add support for new nisar dataset collection
SpicyGarlicAlbacoreRoll Nov 7, 2025
2591c85
feat: rmove product types from seasat dataset filters menu, use beamm…
SpicyGarlicAlbacoreRoll Nov 12, 2025
52d81ee
feat: update seasat infoUrl to new unpublished page
SpicyGarlicAlbacoreRoll Nov 12, 2025
15a63b9
Merge branch 'test' into topic-seasat-migration
SpicyGarlicAlbacoreRoll Nov 12, 2025
ba9bbd6
Upgrade Vertex to Angular 20 (#2345)
artisticlight Nov 12, 2025
732bfb7
Merge branch 'test' into topic-seasat-migration
SpicyGarlicAlbacoreRoll Nov 12, 2025
0ee39d2
Merge branch 'topic-seasat-migration' of https://github.com/asfadmin/…
SpicyGarlicAlbacoreRoll Nov 12, 2025
0252961
bug: SEASAT drop Metadata IN, fix capitalization
SpicyGarlicAlbacoreRoll Nov 12, 2025
3c78e40
feat: add all by product type enabled for seasat, use urlToProductTyp…
SpicyGarlicAlbacoreRoll Nov 12, 2025
4c2d604
test: add a couple seasat specific test cases
SpicyGarlicAlbacoreRoll Nov 13, 2025
03cafb1
bug+style: fix opera s3 url parsing, refactor subproduct object creat…
SpicyGarlicAlbacoreRoll Nov 13, 2025
9c71e15
bug: no longer add no-browse.png to nisar files list
SpicyGarlicAlbacoreRoll Nov 13, 2025
f755579
style: add optional productTypeDisplays to Dataset model, remove from…
SpicyGarlicAlbacoreRoll Nov 13, 2025
8c3a724
Merge pull request #2349 from asfadmin/topic-seasat-migration
SpicyGarlicAlbacoreRoll Nov 13, 2025
78242fa
feat: nisar collections map to citation link
tylercchase Nov 14, 2025
a4260e4
Merge pull request #2354 from asfadmin/tyler/nisar-citations
tylercchase Nov 14, 2025
0f0fa44
chore: update linting styles
tylercchase Nov 14, 2025
8fc7592
Address UI Issues - Tyler (#2355)
artisticlight Nov 18, 2025
bfae9cf
Fixed 'faded' HyP3 icon in On Demand search (#2359)
artisticlight Nov 18, 2025
b496149
Merge branch 'prod' into test
SpicyGarlicAlbacoreRoll Nov 18, 2025
b199aa8
chore: update nisar start date
tylercchase Nov 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/search-ui-deploy-composite/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 24

- name: Configure AWS credentials from Test account
uses: aws-actions/configure-aws-credentials@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 24

- name: Configure AWS credentials from Test account
uses: aws-actions/configure-aws-credentials@v3
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ testem.log
.DS_Store
Thumbs.db
local-serve.sh

# Claude Code
.claude/
CLAUDE.md
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CodeFactor](https://www.codefactor.io/repository/github/asfadmin/discovery-searc

[![Join the chat at https://gitter.im/ASFDiscovery/Vertex](https://badges.gitter.im/ASFDiscovery/Vertex.svg)](https://gitter.im/ASFDiscovery/Vertex?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

ASF's Angular search web application
ASF's Angular search web application

## Deployments
| Maturity | Deployment |
Expand Down Expand Up @@ -34,7 +34,7 @@ After angular is installed, run `ng serve` for a dev server. Navigate to `http:/

### Custom Domain

In order to get certain services to work, it's necessary to set up a .asf.alaska.edu domain pointing to your local server in your host file. This process varies on the OS you are using.
In order to get certain services to work, it's necessary to set up a .asf.alaska.edu domain pointing to your local server in your host file. This process varies on the OS you are using.

Add the following line via the methods below to set up local.asf.alaska.edu to point towards your local development server.
```
Expand Down
36 changes: 29 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,14 @@
"prismjs",
"ua-parser-js",
"@formatjs/intl-displaynames/polyfill",
"@formatjs/intl-displaynames/locale-data/en",
"@formatjs/intl-displaynames/locale-data/es",
"webfont-matcher/lib/fonts/google.js",
"mapbox-to-css-font",
"polygon-clipping"
"polygon-clipping",
"lerc",
"xml-utils",
"earcut"
],
"extractLicenses": false,
"sourceMap": true,
Expand Down Expand Up @@ -109,7 +114,8 @@
"local": {
"buildTarget": "search-ui:build:local"
}
}
},
"defaultConfiguration": "local"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand Down Expand Up @@ -161,25 +167,41 @@
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"skipTests": true
"skipTests": true,
"type": "component"
},
"@schematics/angular:class": {
"skipTests": true
},
"@schematics/angular:directive": {
"skipTests": true
"skipTests": true,
"type": "directive"
},
"@schematics/angular:pipe": {
"skipTests": true
"skipTests": true,
"typeSeparator": "."
},
"@schematics/angular:service": {
"skipTests": false
"skipTests": false,
"type": "service"
},
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
}
Loading
Loading