The dataset detail page allows users to view information about an uploaded dataset. This includes basic details, Croissant metadata, and associated user/expert comments.
- The page is mounted at the
<host>/datasets/:id - The
MyDatasetsPagecomponent, located at<host>/datasets, renders dataset cards that are wrapped in a<Link>component. Clicking on any card will navigate to the matching detail page. - Both routes are defined in
src/routes/index.tsx.
The associated mock interfaces for this functionality are located in src/types/auth.ts:
CroissantMetadataCroissantVariableCommentDataset
Unit tests for this page can be found in frontend/tests/unit/DatasetDetailPage.test.tsx.
Related: Frontend Routing | Frontend Testing Reference