Skip to content

Add reusable ApiError component for prediction and upload failures#56

Open
liascope wants to merge 26 commits into
Climate-Vision:mainfrom
liascope:main
Open

Add reusable ApiError component for prediction and upload failures#56
liascope wants to merge 26 commits into
Climate-Vision:mainfrom
liascope:main

Conversation

@liascope
Copy link
Copy Markdown

@liascope liascope commented May 8, 2026

Summary

Added a reusable ApiError component for displaying API-related errors in the UI instead of failing silently or showing only toast notifications.

Fixes #19

Changes

  • Created reusable ApiError component in frontend/src/components/ui/
  • Added responsive error banner styling with Tailwind CSS
  • Added dismiss button using lucide-react
  • Integrated error handling into:
    • NewAnalysis.tsx
    • Upload.tsx
  • Improved API error propagation to display backend error messages

Goldokpa and others added 22 commits March 28, 2026 21:22
…iddleware-audit

Merging Olufemi's API middleware and auth modules
…tics-statistics

Merging Francis's analytics statistics and reporting modules
Defines responsibilities, deliverables, and collaboration guidelines for the Carbon Analytics & Validation role.

Co-Authored-By: Francis Umo <francis.umo@climatevision.org>
Defines responsibilities, deliverables, and collaboration guidelines for the API Development & Integration role.

Co-Authored-By: Olufemi Taiwo <olufemi.taiwo@climatevision.org>
…mate-Vision#7)

* feat(data): add GEE tile downloader with analysis-aware band selection

- Downloads real Sentinel-2 composites via Google Earth Engine
- Reads required bands from config.yaml per analysis_type
- Includes SCL band for downstream cloud masking
- Synthetic fallback with explicit is_synthetic flag when GEE unavailable
- Fix .gitignore so src/climatevision/data/ is no longer ignored

* feat(data): add analysis-specific Sentinel-2 band mapping utilities

- get_bands_for_analysis() reads correct bands from config.yaml
- get_band_indices() maps band names to canonical 13-band stack positions
- is_analysis_enabled() and list_enabled_analysis_types() for config validation
- Includes SCL band helpers for downstream cloud masking

* feat(data): integrate SCL cloud masking and export new pipeline modules

- apply_scl_cloud_mask() masks cloudy pixels using Sentinel-2 SCL band
- Default clear labels: vegetation, bare soils, water, snow
- Update __init__.py to expose gee_downloader and band_mapping utilities

* refactor(data): address PR review feedback

- Remove duplicated config logic in gee_downloader.py; import from band_mapping
- Cache config.yaml load in band_mapping.py via lru_cache
- Read synthetic tile size from config.yaml instead of hardcoding 256
- Remove unused json import in gee_downloader.py
- Add shape validation in apply_scl_cloud_mask

---------

Co-authored-by: Adeolu Mary Oshadare <adeolu@placeholder.com>
…ing (Climate-Vision#8)

* feat(inference): make pipeline analysis-aware with dynamic model loading

- _load_model() now accepts analysis_type and reads in_channels/num_classes from config.yaml
- Per-analysis-type model cache prevents cross-contamination between deforestation/ice/flood models
- _find_best_checkpoint() prefers config.yaml weight path per analysis type
- run_inference() accepts analysis_type, pads/crops to correct n_channels, and returns dynamic class counts
- run_inference_from_file() and run_inference_from_gee() propagate analysis_type parameter

* feat(api): wire analysis_type into prediction endpoints

- Pass body.analysis_type to run_inference_from_gee() in /api/predict
- Pass analysis_type to run_inference_from_file() in /api/predict/upload
- Enables the API to load the correct model and return correct class counts per analysis type

---------

Co-authored-by: Olufemi Taiwo <Olufemitaiwo23@gmail.com>
… flag, add config health validation

- Add cv_dev development key bypass for local testing
- Require X-API-Key on all mutation endpoints (POST predict, orgs, alerts, subscriptions)
- Surface is_synthetic at root of inference response for frontend demo banners
- Expand /api/health to validate config alignment (bands vs in_channels, classes vs num_classes)
- Add FastAPI test client fixture
- Create CI workflow for Python (flake8, pytest) and frontend (npm build)
- Bootstrap tests/ directory structure
- Parametrize UNet init for all 3 analysis types (4ch/2cl, 4ch/3cl, 3ch/3cl)
- Validate forward pass output shapes
- Add Siamese change detection forward shape test
- Link to 6 active good-first-issue and help-wanted issues
- Add claim workflow for new contributors
- Include time estimates and skill-building map
- ../components/map/ -> ../components/Map/
- Fixes vite build failure on Linux (case-sensitive filesystem)
- Fixes pip install failure for gdal and rasterio on Ubuntu runners
- Adds libgdal-dev, gdal-bin, libgl1-mesa-glx
- gdal Python package requires exact system GDAL version matching
- rasterio covers all GDAL functionality we actually use
- Simplify CI system deps to libgl1 only (for opencv runtime)
- Fixes ModuleNotFoundError: No module named 'climatevision'
- pip install -e . registers src/ as an importable package
- ForestDataset with DataLoader support
- Training/validation augmentation pipelines
- Synthetic tile generation for demo/fallback mode
- Add DONE/PENDING task list for April 2026 sprint
- Include actual .github/workflows/ci.yml code in role doc
- Update local CI check commands to match current workflow
@Oshgig
Copy link
Copy Markdown
Collaborator

Oshgig commented May 16, 2026

Clean, focused, and exactly what issue #19 needed. The ApiError component is in the right place (frontend/src/components/ui/), the Tailwind styling is consistent with the rest of the UI, the dismiss button via lucide-react is a nice touch, and wiring it into both NewAnalysis.tsx and Upload.tsx closes the gap properly. Error propagation from the backend (e.response?.data?.detail) is the correct pattern.

Approving and merging. Thank you @liascope!

Note to @S-Garvit: closing #31 in favour of this PR — see comment there.

Copy link
Copy Markdown
Collaborator

@Oshgig Oshgig left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @liascope! Close to merge but a few things to address first:

(1) Blocker: Upload.tsx has g disabled={...} on the upload button — the stray g will break the build.

(2) Blocker: Please verify useState is imported in both NewAnalysis.tsx and Upload.tsx (the diff adds useState calls but doesn't show the import being added).

(3) The error message path reads e?.response?.data?.message, but our FastAPI backend returns errors under detail. Could you switch to detail (or check both)?

(4) Brace placement in the Upload.tsx catch/finally block is off (setUploadProgress(null)} on the same line as the closing brace) — please reformat.

(5) Small a11y polish on ApiError.tsx: add type="button" and aria-label="Dismiss" on the close button, and add a trailing newline to the file.

(6) The required ci check still needs to come back green before merge.

Once those are in I'll merge. Thanks for tackling this!

@Oshgig
Copy link
Copy Markdown
Collaborator

Oshgig commented May 17, 2026

👋 Friendly ping, @liascope — any chance you can pick up the two small fixes from the review above? Specifically (1) the stray g disabled={...} typo on the upload button and (2) confirming useState is imported in both pages. Once those are in I'll re-review and we can land this. Happy to pair on it if you're stuck — just drop a comment.

@liascope
Copy link
Copy Markdown
Author

Thanks for the detailed review!

  • Confirmed useState is already imported in both NewAnalysis.tsx and Upload.tsx
  • Addressed all remaining points (error handling, formatting, a11y, and stray typo)
    Everything should now be up to date — ready for re-review 👍

@Goldokpa
Copy link
Copy Markdown
Member

📢 Heads-up: repo history was rewritten today (2026-05-18)

We force-pushed a cleaned history across all branches to remove an internal directory from past commits. Your code and this PR are unaffected — only the commit SHAs underneath have shifted. GitHub will re-render the diff against the new base automatically.

If you have a local clone, please bring it back in sync before pushing anything else:

# Option A (simplest): fresh start
git clone https://github.com/Climate-Vision/ClimateVision.git

# Option B: rebase the existing PR branch in your fork
git fetch origin
git checkout <your-branch>
git rebase origin/main          # likely no conflicts
git push --force-with-lease

Do not git pull on an existing clone — it will produce a messy non-fast-forward state. Either re-clone, or rebase explicitly as above.

Apologies for the interruption — really appreciate your patience here. If anything looks off after rebasing, leave a comment and I'll help unblock right away. Thanks for contributing 🙏

@liascope liascope requested a review from Oshgig May 18, 2026 12:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Good First Issue] Add reusable API error banner component to frontend

5 participants