-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/f 89 clickable countries in global view (#109)
* feat: implement active / inactive countries for fcs mode * feat: implement active / inactive countries for nutrition mode * feat: implement active / inactive countries for ipc * feat: implement inactive country overlay for rainfall mode * feat: implement inactive country overlay for rainfall mode * feat: refactor ipc and nutrition map data requests * feat: cleanup data and props * feat: implement disabled countries in search * feat: small adjustments to new hooks * feat: remove grey overlay in rainfall mode * feat: remove exclamation mark of "No data!" --------- Co-authored-by: Ahmed Farouk <[email protected]>
- Loading branch information
1 parent
4c65026
commit 862bd89
Showing
14 changed files
with
230 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import { CountryFcsData } from '@/domain/entities/country/CountryFcsData.ts'; | ||
|
||
import { CountryMapDataWrapper } from '../entities/country/CountryMapData'; | ||
|
||
export default interface SidebarProps { | ||
countryMapData: CountryMapDataWrapper; | ||
fcsData: Record<string, CountryFcsData>; | ||
} |
Oops, something went wrong.