Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/summary-stats' into feat/chart-e…
Browse files Browse the repository at this point in the history
…nhancements
  • Loading branch information
mariogiampieri committed Nov 16, 2024
2 parents c5eacec + e707a66 commit e2ece7e
Show file tree
Hide file tree
Showing 31 changed files with 1,437 additions and 160 deletions.
23 changes: 20 additions & 3 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@turf/bbox": "^7.1.0",
"@turf/helpers": "^7.1.0",
"axios": "^1.7.2",
"d3-scale-chromatic": "^3.1.0",
"idb-keyval": "^6.2.1",
"lodash": "^4.17.21",
"maplibre-gl": "^4.4.1",
Expand All @@ -37,6 +38,7 @@
"@flydotio/dockerfile": "^0.5.8",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/lodash": "^4.17.5",
"@types/node": "^20",
"@types/react": "^18",
Expand All @@ -50,4 +52,4 @@
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}
}
12 changes: 4 additions & 8 deletions app/src/app/components/sidebar/DataPanels.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import {Box, Flex, Heading} from '@radix-ui/themes';
import {MapModeSelector} from './MapModeSelector';
import {ColorPicker} from './ColorPicker';
import {ResetMapButton} from './ResetMapButton';
import {GerryDBViewSelector} from './GerryDBViewSelector';
import {Box} from '@radix-ui/themes';
import Evaluation from '@components/sidebar/Evaluation';
import {HorizontalBar} from './charts/HorizontalBarChart';
import {useMapStore} from '@/app/store/mapStore';
import {Tabs, Text} from '@radix-ui/themes';
import {Tabs} from '@radix-ui/themes';
import Layers from './Layers';
import React from 'react';

Expand Down Expand Up @@ -35,7 +31,7 @@ const defaultPanels: DataPanelSpec[] = [
{
title: 'evaluation',
label: 'Evaluation',
content: <Text size="2"> Unimplemented </Text>,
content: <Evaluation />,
},
];

Expand Down
Loading

0 comments on commit e2ece7e

Please sign in to comment.