@civicactions/cmsds-open-data-components 3.9.0-alpha.1 → 3.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.css +29 -39
- package/dist/main.css.map +1 -1
- package/dist/main.js +385 -212
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +42 -6
- package/dist/types.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/main.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./main.css";
|
|
2
2
|
import {jsx as $hgUW1$jsx, jsxs as $hgUW1$jsxs, Fragment as $hgUW1$Fragment} from "react/jsx-runtime";
|
|
3
|
-
import {Accordion as $hgUW1$Accordion, AccordionItem as $hgUW1$AccordionItem, Button as $hgUW1$Button, CloseIconThin as $hgUW1$CloseIconThin, ArrowIcon as $hgUW1$ArrowIcon, Spinner as $hgUW1$Spinner, Alert as $hgUW1$Alert, Dialog as $hgUW1$Dialog, TextField as $hgUW1$TextField, Tooltip as $hgUW1$Tooltip, Dropdown as $hgUW1$Dropdown, Choice as $hgUW1$Choice, Pagination as $hgUW1$Pagination, Badge as $hgUW1$Badge, Table as $hgUW1$Table, TableHead as $hgUW1$TableHead, TableRow as $hgUW1$TableRow, TableCell as $hgUW1$TableCell, TableBody as $hgUW1$TableBody, Tabs as $hgUW1$Tabs, TabPanel as $hgUW1$TabPanel
|
|
3
|
+
import {Accordion as $hgUW1$Accordion, AccordionItem as $hgUW1$AccordionItem, Button as $hgUW1$Button, CloseIconThin as $hgUW1$CloseIconThin, ArrowIcon as $hgUW1$ArrowIcon, Spinner as $hgUW1$Spinner, Alert as $hgUW1$Alert, Dialog as $hgUW1$Dialog, TextField as $hgUW1$TextField, Tooltip as $hgUW1$Tooltip, TooltipIcon as $hgUW1$TooltipIcon, Dropdown as $hgUW1$Dropdown, Choice as $hgUW1$Choice, Pagination as $hgUW1$Pagination, Badge as $hgUW1$Badge, Table as $hgUW1$Table, TableHead as $hgUW1$TableHead, TableRow as $hgUW1$TableRow, TableCell as $hgUW1$TableCell, TableBody as $hgUW1$TableBody, Tabs as $hgUW1$Tabs, TabPanel as $hgUW1$TabPanel} from "@cmsgov/design-system";
|
|
4
4
|
import $hgUW1$react, {createContext as $hgUW1$createContext, useState as $hgUW1$useState, useRef as $hgUW1$useRef, useEffect as $hgUW1$useEffect, useContext as $hgUW1$useContext, useMemo as $hgUW1$useMemo, useCallback as $hgUW1$useCallback} from "react";
|
|
5
|
-
import {NavLink as $hgUW1$NavLink,
|
|
5
|
+
import {NavLink as $hgUW1$NavLink, useLocation as $hgUW1$useLocation, useSearchParams as $hgUW1$useSearchParams, Link as $hgUW1$Link, useNavigate as $hgUW1$useNavigate} from "react-router-dom";
|
|
6
6
|
import $hgUW1$qs from "qs";
|
|
7
7
|
import $hgUW1$axios from "axios";
|
|
8
8
|
import {useQuery as $hgUW1$useQuery, QueryClient as $hgUW1$QueryClient, QueryClientProvider as $hgUW1$QueryClientProvider} from "@tanstack/react-query";
|
|
@@ -275,6 +275,7 @@ var $11500a65bd7d9cf1$export$2e2bcd8739ae039 = $11500a65bd7d9cf1$var$HeaderConte
|
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
|
|
278
|
+
|
|
278
279
|
const $61ff88fb3f6ee2c8$var$queryClient = new (0, $hgUW1$QueryClient)({
|
|
279
280
|
defaultOptions: {
|
|
280
281
|
queries: {
|
|
@@ -298,19 +299,37 @@ var $61ff88fb3f6ee2c8$export$2e2bcd8739ae039 = $61ff88fb3f6ee2c8$var$withQueryPr
|
|
|
298
299
|
|
|
299
300
|
|
|
300
301
|
|
|
302
|
+
|
|
301
303
|
const $4808982eba3feb88$var$DatasetListSubmenuItem = (props)=>{
|
|
302
|
-
const
|
|
304
|
+
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
305
|
+
minWidth: 1024
|
|
306
|
+
});
|
|
307
|
+
const { title: title, identifier: identifier, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks } = props;
|
|
308
|
+
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
309
|
+
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
310
|
+
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
311
|
+
let linkClasses = "ds-u-display--block ds-u-text-align--left";
|
|
312
|
+
if (desktop) {
|
|
313
|
+
linkContainerClasses = "ds-u-padding-x--0";
|
|
314
|
+
linkClasses += " ds-l-col--4 ds-l-md-col--auto";
|
|
315
|
+
}
|
|
303
316
|
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
304
|
-
className: "dc-c-list-item",
|
|
305
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsx)(
|
|
306
|
-
className: `ds-u-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
317
|
+
className: "dc-c-list-item ds-u-padding-top--4",
|
|
318
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
319
|
+
className: `dc-c-searchlist-item ${paginationEnabled ? "ds-u-border-top--1" : "ds-u-border-bottom--1 ds-u-padding-bottom--3"}`,
|
|
320
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
321
|
+
className: "ds-l-row ds-u-align-items--start",
|
|
322
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Link), {
|
|
323
|
+
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
324
|
+
to: `/dataset/${identifier}`,
|
|
325
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("h2", {
|
|
326
|
+
className: "ds-l-col--12 ds-text-heading--md",
|
|
327
|
+
children: title
|
|
328
|
+
})
|
|
329
|
+
})
|
|
311
330
|
})
|
|
312
331
|
})
|
|
313
|
-
}
|
|
332
|
+
});
|
|
314
333
|
};
|
|
315
334
|
var $4808982eba3feb88$export$2e2bcd8739ae039 = $4808982eba3feb88$var$DatasetListSubmenuItem;
|
|
316
335
|
|
|
@@ -382,20 +401,21 @@ async function $eff7d34c30f5a0fc$export$2d2256cb46e92ff7(rootUrl, options, ACA)
|
|
|
382
401
|
|
|
383
402
|
|
|
384
403
|
|
|
385
|
-
|
|
386
404
|
const $844981eac9b63865$export$eccc29c8d0ff408 = (0, $hgUW1$createContext)({
|
|
387
405
|
ACA: undefined
|
|
388
406
|
});
|
|
389
407
|
|
|
390
408
|
|
|
391
|
-
const $
|
|
392
|
-
defaultSort:
|
|
393
|
-
|
|
394
|
-
|
|
409
|
+
const $9384a736d4d6f425$var$DatasetListSubmenu = (props)=>{
|
|
410
|
+
const { rootUrl: rootUrl, enablePagination: enablePagination = true, defaultPageSize: defaultPageSize = 3, defaultSort: defaultSort = {
|
|
411
|
+
defaultSort: "modified",
|
|
412
|
+
defaultOrder: "desc"
|
|
413
|
+
}, dataDictionaryLinks: dataDictionaryLinks = false } = props;
|
|
395
414
|
const { ACA: ACA } = (0, $hgUW1$useContext)((0, $844981eac9b63865$export$eccc29c8d0ff408));
|
|
396
415
|
const defaultSortBy = "";
|
|
397
416
|
const defaultSortOrder = "";
|
|
398
417
|
const defaultPage = 1;
|
|
418
|
+
const location = (0, $hgUW1$useLocation)();
|
|
399
419
|
const transformedParams = (0, $eff7d34c30f5a0fc$export$60ec7cc1d341a524)(location.search, defaultSort);
|
|
400
420
|
const [currentResultNumbers, setCurrentResultNumbers] = (0, $hgUW1$useState)({
|
|
401
421
|
total: 0,
|
|
@@ -472,43 +492,49 @@ const $10bc3aae21fc1572$var$DatasetListSubmenu = ({ rootUrl: rootUrl, enablePagi
|
|
|
472
492
|
if (data && data.data.total && totalItems != data.data.total) setTotalItems(data.data.total);
|
|
473
493
|
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Fragment), {
|
|
474
494
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)("section", {
|
|
475
|
-
className: "
|
|
476
|
-
children:
|
|
477
|
-
className: "ds-u-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
495
|
+
className: "ds-l-container",
|
|
496
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
497
|
+
className: "ds-l-row ds-u-padding-top--4",
|
|
498
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
499
|
+
className: "ds-l-col--12",
|
|
500
|
+
children: isPending ? /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Spinner), {
|
|
501
|
+
className: "ds-u-valign--middle",
|
|
502
|
+
"aria-valuetext": "Dataset Search loading",
|
|
503
|
+
role: "status"
|
|
504
|
+
}) : /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Fragment), {
|
|
485
505
|
children: [
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
heading: "No results found."
|
|
506
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("h3", {
|
|
507
|
+
children: "Test submenu list of new datasets."
|
|
489
508
|
}),
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
509
|
+
/*#__PURE__*/ (0, $hgUW1$jsxs)("ol", {
|
|
510
|
+
className: "dc-dataset-search-list ds-u-padding--0 ds-u-margin-top--0 ds-u-margin-bottom--4 ds-u-display--block",
|
|
511
|
+
"data-testid": "results-list",
|
|
512
|
+
children: [
|
|
513
|
+
noResults && /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Alert), {
|
|
514
|
+
variation: "error",
|
|
515
|
+
heading: "No results found."
|
|
516
|
+
}),
|
|
517
|
+
data && data.data.results ? Object.keys(data.data.results).map((key)=>{
|
|
518
|
+
return data.data.results[key];
|
|
519
|
+
}).map((item)=>{
|
|
520
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $4808982eba3feb88$export$2e2bcd8739ae039), {
|
|
521
|
+
title: item.title,
|
|
522
|
+
identifier: item.identifier,
|
|
523
|
+
paginationEnabled: enablePagination,
|
|
524
|
+
dataDictionaryLinks: dataDictionaryLinks
|
|
525
|
+
}, item.identifier);
|
|
526
|
+
}) : /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Alert), {
|
|
527
|
+
variation: "error",
|
|
528
|
+
heading: "Could not connect to the API."
|
|
529
|
+
})
|
|
530
|
+
]
|
|
531
|
+
}),
|
|
532
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
533
|
+
className: "ds-u-display--flex ds-u-justify-content--between ds-u-align-items--end ds-u-flex-wrap--reverse ds-u-sm-flex-wrap--wrap",
|
|
534
|
+
children: enablePagination && /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
535
|
+
className: "ds-l-col--12 ds-l-sm-col--6 ds-l-md-col--8",
|
|
510
536
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)("p", {
|
|
511
|
-
className: "ds-u-margin-y--0
|
|
537
|
+
className: "ds-u-margin-y--0",
|
|
512
538
|
"aria-hidden": "true",
|
|
513
539
|
children: currentResultNumbers && data && /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Fragment), {
|
|
514
540
|
children: [
|
|
@@ -519,41 +545,23 @@ const $10bc3aae21fc1572$var$DatasetListSubmenu = ({ rootUrl: rootUrl, enablePagi
|
|
|
519
545
|
]
|
|
520
546
|
})
|
|
521
547
|
})
|
|
522
|
-
}),
|
|
523
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
524
|
-
className: "",
|
|
525
|
-
children: data && data.data.total > 0 && /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Link), {
|
|
526
|
-
className: "ds-u-padding--0 ds-c-button ds-c-button--ghost dkan-c-header--link",
|
|
527
|
-
to: `../whats-new`,
|
|
528
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
529
|
-
className: "ds-text-heading--md",
|
|
530
|
-
children: [
|
|
531
|
-
" ",
|
|
532
|
-
`View all ${data.data.total} entries`,
|
|
533
|
-
" "
|
|
534
|
-
]
|
|
535
|
-
})
|
|
536
|
-
})
|
|
537
548
|
})
|
|
538
|
-
|
|
539
|
-
|
|
549
|
+
})
|
|
550
|
+
]
|
|
540
551
|
})
|
|
541
|
-
|
|
552
|
+
})
|
|
542
553
|
})
|
|
543
554
|
})
|
|
544
555
|
});
|
|
545
556
|
};
|
|
546
|
-
var $
|
|
557
|
+
var $9384a736d4d6f425$export$2e2bcd8739ae039 = (0, $61ff88fb3f6ee2c8$export$2e2bcd8739ae039)($9384a736d4d6f425$var$DatasetListSubmenu);
|
|
547
558
|
|
|
548
559
|
|
|
549
560
|
|
|
550
561
|
|
|
551
562
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
const $6d0cf21faac6a2dd$var$SubMenuStaticList = ({ submenuArray: submenuArray, subLinkClasses: subLinkClasses, setIsExpanded: setIsExpanded })=>{
|
|
555
|
-
// Render a static list of submenu items as listed in the assets/menu.jsx file.
|
|
556
|
-
let submenuItems = submenuArray.map((s)=>{
|
|
563
|
+
const $4f153ca537d853e5$var$SubMenuStaticItem = (submenuArray, subLinkClasses)=>// @todo: Move into a separate component
|
|
564
|
+
submenuArray.map((s)=>{
|
|
557
565
|
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
558
566
|
children: s.external || s.drupalPage ? /*#__PURE__*/ (0, $hgUW1$jsxs)("a", {
|
|
559
567
|
href: s.url,
|
|
@@ -567,7 +575,7 @@ const $6d0cf21faac6a2dd$var$SubMenuStaticList = ({ submenuArray: submenuArray, s
|
|
|
567
575
|
}) : /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$NavLink), {
|
|
568
576
|
to: s.url,
|
|
569
577
|
className: `ds-u-display-flex ds-u-align-items--center ${subLinkClasses}`,
|
|
570
|
-
onClick: ()=>setIsExpanded(
|
|
578
|
+
onClick: ()=>setIsExpanded(!isExpanded),
|
|
571
579
|
children: [
|
|
572
580
|
s.icon ?? null,
|
|
573
581
|
/*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
@@ -577,16 +585,19 @@ const $6d0cf21faac6a2dd$var$SubMenuStaticList = ({ submenuArray: submenuArray, s
|
|
|
577
585
|
})
|
|
578
586
|
}, s.id);
|
|
579
587
|
});
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
588
|
+
const $4f153ca537d853e5$var$SubMenuDynamicList = ({ rootUrl: rootUrl, location: location })=>{
|
|
589
|
+
// @todo: If we don't need subLinkClasses, call the DatasetListSubmenu component directly.
|
|
590
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $9384a736d4d6f425$export$2e2bcd8739ae039), {
|
|
591
|
+
rootUrl: rootUrl,
|
|
592
|
+
location: location,
|
|
593
|
+
formClassName: "ds-u-display--flex ds-u-align-items--end ds-u-justify-content--between ds-u-margin-bottom--2",
|
|
594
|
+
fulltextLabelClassName: "",
|
|
595
|
+
fulltextPlaceholder: "",
|
|
596
|
+
fulltextLabel: "Dataset submenu List"
|
|
583
597
|
});
|
|
584
598
|
};
|
|
585
|
-
var $6d0cf21faac6a2dd$export$2e2bcd8739ae039 = $6d0cf21faac6a2dd$var$SubMenuStaticList;
|
|
586
|
-
|
|
587
|
-
|
|
588
599
|
const $4f153ca537d853e5$var$SubMenu = ({ link: link, linkClasses: linkClasses, subLinkClasses: subLinkClasses, wrapLabel: wrapLabel = true })=>{
|
|
589
|
-
const [
|
|
600
|
+
const [isExpanded1, setIsExpanded1] = (0, $hgUW1$useState)(false);
|
|
590
601
|
const headerContext = (0, $hgUW1$react).useContext((0, $11500a65bd7d9cf1$export$2e2bcd8739ae039));
|
|
591
602
|
const innerHtml = wrapLabel ? /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
592
603
|
children: link.label
|
|
@@ -596,10 +607,10 @@ const $4f153ca537d853e5$var$SubMenu = ({ link: link, linkClasses: linkClasses, s
|
|
|
596
607
|
let currentMenu = null;
|
|
597
608
|
if (menu.current) currentMenu = menu.current;
|
|
598
609
|
function handleClickOutside(event) {
|
|
599
|
-
if (currentMenu && !currentMenu.contains(event.target))
|
|
610
|
+
if (currentMenu && !currentMenu.contains(event.target)) setIsExpanded1(false);
|
|
600
611
|
}
|
|
601
612
|
function handleFocusOut(event) {
|
|
602
|
-
if (currentMenu && !currentMenu.contains(event.relatedTarget))
|
|
613
|
+
if (currentMenu && !currentMenu.contains(event.relatedTarget)) setIsExpanded1(false);
|
|
603
614
|
}
|
|
604
615
|
document.addEventListener("mousedown", handleClickOutside);
|
|
605
616
|
currentMenu?.addEventListener("focusout", handleFocusOut);
|
|
@@ -608,26 +619,15 @@ const $4f153ca537d853e5$var$SubMenu = ({ link: link, linkClasses: linkClasses, s
|
|
|
608
619
|
if (currentMenu) currentMenu.removeEventListener("focusout", handleFocusOut);
|
|
609
620
|
};
|
|
610
621
|
}, [
|
|
611
|
-
|
|
622
|
+
isExpanded1
|
|
612
623
|
]);
|
|
613
624
|
let submenuBlock;
|
|
614
625
|
if (link.submenu) {
|
|
615
|
-
if (Array.isArray(link.submenu)) submenuBlock =
|
|
616
|
-
|
|
617
|
-
subLinkClasses: subLinkClasses,
|
|
618
|
-
setIsExpanded: setIsExpanded
|
|
619
|
-
});
|
|
620
|
-
else if (/*#__PURE__*/ (0, $hgUW1$react).isValidElement(link.submenu)) {
|
|
621
|
-
const { rootUrl: rootUrl, location: location } = link.submenu.props;
|
|
622
|
-
submenuBlock = /*#__PURE__*/ (0, $hgUW1$jsx)((0, $10bc3aae21fc1572$export$2e2bcd8739ae039), {
|
|
623
|
-
location: location,
|
|
624
|
-
rootUrl: rootUrl,
|
|
625
|
-
subLinkClasses: subLinkClasses
|
|
626
|
-
});
|
|
627
|
-
}
|
|
626
|
+
if (Array.isArray(link.submenu)) submenuBlock = $4f153ca537d853e5$var$SubMenuStaticItem(link.submenu, subLinkClasses);
|
|
627
|
+
else if (/*#__PURE__*/ (0, $hgUW1$react).isValidElement(link.submenu)) submenuBlock = $4f153ca537d853e5$var$SubMenuDynamicList(link.submenu, subLinkClasses);
|
|
628
628
|
}
|
|
629
629
|
return /*#__PURE__*/ (0, $hgUW1$jsxs)("li", {
|
|
630
|
-
className: `dkan-c-nav-submenu has-submenu${
|
|
630
|
+
className: `dkan-c-nav-submenu has-submenu${isExpanded1 ? " open" : ""}`,
|
|
631
631
|
ref: menu,
|
|
632
632
|
children: [
|
|
633
633
|
/*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Button), {
|
|
@@ -635,20 +635,23 @@ const $4f153ca537d853e5$var$SubMenu = ({ link: link, linkClasses: linkClasses, s
|
|
|
635
635
|
onDark: headerContext.onDark,
|
|
636
636
|
className: `${linkClasses}`,
|
|
637
637
|
"aria-haspopup": "true",
|
|
638
|
-
"aria-expanded":
|
|
638
|
+
"aria-expanded": isExpanded1,
|
|
639
639
|
onClick: (e)=>{
|
|
640
640
|
e.preventDefault();
|
|
641
|
-
|
|
641
|
+
setIsExpanded1(!isExpanded1);
|
|
642
642
|
},
|
|
643
643
|
children: [
|
|
644
644
|
innerHtml,
|
|
645
645
|
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$ArrowIcon), {
|
|
646
646
|
className: "ds-u-margin-left--1",
|
|
647
|
-
direction:
|
|
647
|
+
direction: isExpanded1 ? "down" : "right"
|
|
648
648
|
})
|
|
649
649
|
]
|
|
650
650
|
}),
|
|
651
|
-
|
|
651
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("ul", {
|
|
652
|
+
className: "dkan-c-site-menu--sub-menu",
|
|
653
|
+
children: submenuBlock
|
|
654
|
+
})
|
|
652
655
|
]
|
|
653
656
|
});
|
|
654
657
|
};
|
|
@@ -1098,6 +1101,99 @@ var $59a079354baa335c$export$2e2bcd8739ae039 = $59a079354baa335c$var$Hero;
|
|
|
1098
1101
|
|
|
1099
1102
|
|
|
1100
1103
|
|
|
1104
|
+
const $bd76a91923d7e8a7$var$TransformedDate = ({ date: date, options: options = {
|
|
1105
|
+
year: "numeric",
|
|
1106
|
+
month: "long",
|
|
1107
|
+
day: "numeric",
|
|
1108
|
+
timeZone: "UTC"
|
|
1109
|
+
} })=>{
|
|
1110
|
+
const rawDate = new Date(date);
|
|
1111
|
+
let modifiedDate = "";
|
|
1112
|
+
if (rawDate) modifiedDate = rawDate.toLocaleDateString("en-US", options);
|
|
1113
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Fragment), {
|
|
1114
|
+
children: modifiedDate
|
|
1115
|
+
});
|
|
1116
|
+
};
|
|
1117
|
+
var $bd76a91923d7e8a7$export$2e2bcd8739ae039 = $bd76a91923d7e8a7$var$TransformedDate;
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
const $c068004d499082cc$var$DatasetListItem = (props)=>{
|
|
1122
|
+
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
1123
|
+
minWidth: 1024
|
|
1124
|
+
});
|
|
1125
|
+
const { title: title, modified: modified, identifier: identifier, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks } = props;
|
|
1126
|
+
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
1127
|
+
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
1128
|
+
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
1129
|
+
let linkClasses = "ds-u-display--block ds-u-text-align--left";
|
|
1130
|
+
if (desktop) {
|
|
1131
|
+
linkContainerClasses = "ds-u-padding-x--0";
|
|
1132
|
+
linkClasses += " ds-l-col--4 ds-l-md-col--auto";
|
|
1133
|
+
}
|
|
1134
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
1135
|
+
className: "dc-c-list-item ds-u-padding-top--4",
|
|
1136
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1137
|
+
className: `dc-c-searchlist-item ${paginationEnabled ? "ds-u-border-top--1" : "ds-u-border-bottom--1 ds-u-padding-bottom--3"}`,
|
|
1138
|
+
children: [
|
|
1139
|
+
/*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1140
|
+
className: "ds-l-row ds-u-align-items--start",
|
|
1141
|
+
children: [
|
|
1142
|
+
/*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1143
|
+
id: `dataset-${identifier}-updated-date`,
|
|
1144
|
+
className: `ds-l-col--12 ds-u-text-align--left ds-text-heading--sm ${paginationEnabled ? "ds-u-padding-top--3" : "ds-u-padding-top--0"}`,
|
|
1145
|
+
children: [
|
|
1146
|
+
"Updated ",
|
|
1147
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
1148
|
+
date: modified
|
|
1149
|
+
})
|
|
1150
|
+
]
|
|
1151
|
+
}),
|
|
1152
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("h2", {
|
|
1153
|
+
className: "ds-l-col--12 ds-text-heading--2xl",
|
|
1154
|
+
children: title
|
|
1155
|
+
})
|
|
1156
|
+
]
|
|
1157
|
+
}),
|
|
1158
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1159
|
+
className: "ds-l-row",
|
|
1160
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1161
|
+
className: "ds-l-col--12 ds-l-md-col--12 ds-u-margin-top--2",
|
|
1162
|
+
children: [
|
|
1163
|
+
"The ",
|
|
1164
|
+
title,
|
|
1165
|
+
" dataset was updated."
|
|
1166
|
+
]
|
|
1167
|
+
})
|
|
1168
|
+
}),
|
|
1169
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1170
|
+
className: "ds-l-row",
|
|
1171
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1172
|
+
className: "ds-l-col--12",
|
|
1173
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1174
|
+
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
1175
|
+
to: `/dataset/${identifier}`,
|
|
1176
|
+
children: [
|
|
1177
|
+
"View the Dataset for ",
|
|
1178
|
+
title,
|
|
1179
|
+
" "
|
|
1180
|
+
]
|
|
1181
|
+
})
|
|
1182
|
+
})
|
|
1183
|
+
})
|
|
1184
|
+
]
|
|
1185
|
+
})
|
|
1186
|
+
});
|
|
1187
|
+
};
|
|
1188
|
+
var $c068004d499082cc$export$2e2bcd8739ae039 = $c068004d499082cc$var$DatasetListItem;
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
|
|
1101
1197
|
|
|
1102
1198
|
|
|
1103
1199
|
|
|
@@ -1336,23 +1432,6 @@ var $b61856b23f5f58a2$export$2e2bcd8739ae039 = $b61856b23f5f58a2$var$LargeFileDi
|
|
|
1336
1432
|
|
|
1337
1433
|
|
|
1338
1434
|
|
|
1339
|
-
const $bd76a91923d7e8a7$var$TransformedDate = ({ date: date, options: options = {
|
|
1340
|
-
year: "numeric",
|
|
1341
|
-
month: "long",
|
|
1342
|
-
day: "numeric",
|
|
1343
|
-
timeZone: "UTC"
|
|
1344
|
-
} })=>{
|
|
1345
|
-
const rawDate = new Date(date);
|
|
1346
|
-
let modifiedDate = "";
|
|
1347
|
-
if (rawDate) modifiedDate = rawDate.toLocaleDateString("en-US", options);
|
|
1348
|
-
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Fragment), {
|
|
1349
|
-
children: modifiedDate
|
|
1350
|
-
});
|
|
1351
|
-
};
|
|
1352
|
-
var $bd76a91923d7e8a7$export$2e2bcd8739ae039 = $bd76a91923d7e8a7$var$TransformedDate;
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
1435
|
|
|
1357
1436
|
|
|
1358
1437
|
function $1a2bf34e2a8f6b80$export$59a943b34a82e690(textString, textLength = 240) {
|
|
@@ -1371,11 +1450,126 @@ function $1a2bf34e2a8f6b80$export$59a943b34a82e690(textString, textLength = 240)
|
|
|
1371
1450
|
|
|
1372
1451
|
|
|
1373
1452
|
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
|
|
1457
|
+
|
|
1458
|
+
|
|
1459
|
+
const $17711e94d2ce0ee4$var$DatasetDateItem = (props)=>{
|
|
1460
|
+
const { type: type, date: date, boldLabel: boldLabel = false, displayTooltips: displayTooltips = true } = props;
|
|
1461
|
+
const dateText = {
|
|
1462
|
+
modified: "Last Modified",
|
|
1463
|
+
released: "Released",
|
|
1464
|
+
refresh: "Planned Update"
|
|
1465
|
+
};
|
|
1466
|
+
const tooltipContent = {
|
|
1467
|
+
modified: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Fragment), {
|
|
1468
|
+
children: [
|
|
1469
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("strong", {
|
|
1470
|
+
children: "Last Modified: "
|
|
1471
|
+
}),
|
|
1472
|
+
" The date the ",
|
|
1473
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("br", {}),
|
|
1474
|
+
"dataset was last updated."
|
|
1475
|
+
]
|
|
1476
|
+
}),
|
|
1477
|
+
released: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Fragment), {
|
|
1478
|
+
children: [
|
|
1479
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("strong", {
|
|
1480
|
+
children: "Released: "
|
|
1481
|
+
}),
|
|
1482
|
+
" The date the most ",
|
|
1483
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("br", {}),
|
|
1484
|
+
"recent dataset was made available",
|
|
1485
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("br", {}),
|
|
1486
|
+
"to the public."
|
|
1487
|
+
]
|
|
1488
|
+
}),
|
|
1489
|
+
refresh: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Fragment), {
|
|
1490
|
+
children: [
|
|
1491
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("strong", {
|
|
1492
|
+
children: "Planned Update:"
|
|
1493
|
+
}),
|
|
1494
|
+
" The date the ",
|
|
1495
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("br", {}),
|
|
1496
|
+
"dataset is scheduled to be updated."
|
|
1497
|
+
]
|
|
1498
|
+
})
|
|
1499
|
+
};
|
|
1500
|
+
return /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1501
|
+
className: `dataset-date-item${boldLabel ? " bold-label" : ""}`,
|
|
1502
|
+
children: [
|
|
1503
|
+
/*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1504
|
+
className: "dataset-data-item-label",
|
|
1505
|
+
children: [
|
|
1506
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1507
|
+
children: dateText[type]
|
|
1508
|
+
}),
|
|
1509
|
+
": ",
|
|
1510
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
1511
|
+
date: date
|
|
1512
|
+
})
|
|
1513
|
+
]
|
|
1514
|
+
}),
|
|
1515
|
+
displayTooltips === true && /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Tooltip), {
|
|
1516
|
+
"aria-label": dateText[type],
|
|
1517
|
+
className: "ds-c-tooltip__trigger-icon ds-u-display--inline ds-u-padding-left--0 ds-uw-padding-right--0",
|
|
1518
|
+
title: tooltipContent[type],
|
|
1519
|
+
placement: "top",
|
|
1520
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$TooltipIcon), {})
|
|
1521
|
+
})
|
|
1522
|
+
]
|
|
1523
|
+
});
|
|
1524
|
+
};
|
|
1525
|
+
var $17711e94d2ce0ee4$export$2e2bcd8739ae039 = $17711e94d2ce0ee4$var$DatasetDateItem;
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
const $20de4fedf33d4f9a$var$DatasetDate = (props)=>{
|
|
1529
|
+
const { date: date, updatedBoldLabel: updatedBoldLabel = false, releasedBoldLabel: releasedBoldLabel = false, refreshBoldLabel: refreshBoldLabel = false, displayTooltips: displayTooltips = true } = props;
|
|
1530
|
+
const { modified: modified, released: released, refresh: refresh } = date;
|
|
1531
|
+
// Create an array of date items to render
|
|
1532
|
+
const dateItems = [];
|
|
1533
|
+
if (modified) dateItems.push(/*#__PURE__*/ (0, $hgUW1$jsx)((0, $17711e94d2ce0ee4$export$2e2bcd8739ae039), {
|
|
1534
|
+
displayTooltips: displayTooltips,
|
|
1535
|
+
type: "modified",
|
|
1536
|
+
date: modified,
|
|
1537
|
+
boldLabel: updatedBoldLabel
|
|
1538
|
+
}, "modified"));
|
|
1539
|
+
if (released) dateItems.push(/*#__PURE__*/ (0, $hgUW1$jsx)((0, $17711e94d2ce0ee4$export$2e2bcd8739ae039), {
|
|
1540
|
+
displayTooltips: displayTooltips,
|
|
1541
|
+
type: "released",
|
|
1542
|
+
date: released,
|
|
1543
|
+
boldLabel: releasedBoldLabel
|
|
1544
|
+
}, "released"));
|
|
1545
|
+
if (refresh) dateItems.push(/*#__PURE__*/ (0, $hgUW1$jsx)((0, $17711e94d2ce0ee4$export$2e2bcd8739ae039), {
|
|
1546
|
+
displayTooltips: displayTooltips,
|
|
1547
|
+
type: "refresh",
|
|
1548
|
+
date: refresh,
|
|
1549
|
+
boldLabel: refreshBoldLabel
|
|
1550
|
+
}, "refresh"));
|
|
1551
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1552
|
+
className: "dataset-date",
|
|
1553
|
+
children: dateItems.map((item, index)=>/*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$react).Fragment, {
|
|
1554
|
+
children: [
|
|
1555
|
+
item,
|
|
1556
|
+
index < dateItems.length - 1 && /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1557
|
+
className: "bullet-point",
|
|
1558
|
+
children: "\u2022"
|
|
1559
|
+
})
|
|
1560
|
+
]
|
|
1561
|
+
}, index))
|
|
1562
|
+
});
|
|
1563
|
+
};
|
|
1564
|
+
var $20de4fedf33d4f9a$export$2e2bcd8739ae039 = $20de4fedf33d4f9a$var$DatasetDate;
|
|
1565
|
+
|
|
1566
|
+
|
|
1374
1567
|
const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
1375
1568
|
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
1376
1569
|
minWidth: 1024
|
|
1377
1570
|
});
|
|
1378
|
-
const { title: title, modified: modified, description: description,
|
|
1571
|
+
const { title: title, modified: modified, description: description, downloadUrl: downloadUrl, largeFile: largeFile = false, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks, identifier: identifier, refresh: refresh, released: released, showDateDetails: showDateDetails = false, showTopics: showTopics = false, theme: theme, topicSlugs: topicSlugs } = props;
|
|
1572
|
+
const location = (0, $hgUW1$useLocation)();
|
|
1379
1573
|
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
1380
1574
|
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
1381
1575
|
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
@@ -1384,19 +1578,52 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1384
1578
|
linkContainerClasses = "ds-u-padding-x--0";
|
|
1385
1579
|
linkClasses += " ds-l-col--4 ds-l-md-col--auto";
|
|
1386
1580
|
}
|
|
1581
|
+
let themes;
|
|
1582
|
+
if (theme && showTopics) themes = /*#__PURE__*/ (0, $hgUW1$jsx)("ul", {
|
|
1583
|
+
className: "theme-list item-theme",
|
|
1584
|
+
children: theme.map((topic, index)=>{
|
|
1585
|
+
const title = topic || "Unknown Topic";
|
|
1586
|
+
const prefix = "topics";
|
|
1587
|
+
// Use the provided slug or fallback to a simple slug generation
|
|
1588
|
+
const slug = topicSlugs?.[title];
|
|
1589
|
+
const link = `/${prefix}/${slug}`;
|
|
1590
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
1591
|
+
className: "ds-u-fill--primary ds-u-radius--pill",
|
|
1592
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Link), {
|
|
1593
|
+
to: link,
|
|
1594
|
+
state: {
|
|
1595
|
+
fromUrl: location.pathname,
|
|
1596
|
+
fromTitle: false,
|
|
1597
|
+
fromSearchList: location.pathname.includes("search")
|
|
1598
|
+
},
|
|
1599
|
+
children: title
|
|
1600
|
+
})
|
|
1601
|
+
}, `dist-${title}-${index}`);
|
|
1602
|
+
})
|
|
1603
|
+
});
|
|
1604
|
+
const date = {
|
|
1605
|
+
modified: modified,
|
|
1606
|
+
released: released,
|
|
1607
|
+
refresh: refresh
|
|
1608
|
+
};
|
|
1609
|
+
const url = `/dataset/${identifier}`;
|
|
1387
1610
|
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
1388
1611
|
className: "dc-c-search-list-item ds-u-padding-top--3",
|
|
1389
1612
|
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1390
1613
|
className: `dc-c-searchlist-item ${paginationEnabled ? "ds-u-border-top--1" : "ds-u-border-bottom--1 ds-u-padding-bottom--3"}`,
|
|
1391
1614
|
children: [
|
|
1615
|
+
themes,
|
|
1392
1616
|
/*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1393
1617
|
className: "ds-l-row ds-u-align-items--start",
|
|
1394
1618
|
children: [
|
|
1395
|
-
/*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1619
|
+
!showDateDetails && /*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1396
1620
|
id: `dataset-${identifier}-updated-date`,
|
|
1397
1621
|
className: `ds-l-col--12 ds-u-text-align--right ${paginationEnabled ? "ds-u-padding-top--2" : "ds-u-padding-top--0"}`,
|
|
1398
1622
|
children: [
|
|
1399
|
-
|
|
1623
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1624
|
+
children: "Updated:"
|
|
1625
|
+
}),
|
|
1626
|
+
" ",
|
|
1400
1627
|
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
1401
1628
|
date: modified
|
|
1402
1629
|
})
|
|
@@ -1406,21 +1633,39 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1406
1633
|
className: "ds-l-col--12 ds-text-heading--2xl",
|
|
1407
1634
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Link), {
|
|
1408
1635
|
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
1409
|
-
to:
|
|
1636
|
+
to: `${url}`,
|
|
1410
1637
|
children: title
|
|
1411
1638
|
})
|
|
1412
1639
|
})
|
|
1413
1640
|
]
|
|
1414
1641
|
}),
|
|
1415
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1642
|
+
description && /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1416
1643
|
className: "ds-l-row",
|
|
1417
|
-
children: /*#__PURE__*/ (0, $hgUW1$
|
|
1644
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1418
1645
|
className: "ds-l-col--12 ds-l-md-col--12 ds-u-margin-top--2",
|
|
1419
|
-
children:
|
|
1646
|
+
children: [
|
|
1647
|
+
(0, $1a2bf34e2a8f6b80$export$59a943b34a82e690)(description),
|
|
1648
|
+
description.length > 240 ? /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Fragment), {
|
|
1649
|
+
children: [
|
|
1650
|
+
" ",
|
|
1651
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Link), {
|
|
1652
|
+
to: `/dataset/${identifier}`,
|
|
1653
|
+
children: "See more"
|
|
1654
|
+
})
|
|
1655
|
+
]
|
|
1656
|
+
}) : ""
|
|
1657
|
+
]
|
|
1658
|
+
})
|
|
1659
|
+
}),
|
|
1660
|
+
showDateDetails && /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1661
|
+
className: "dataset-dates",
|
|
1662
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $20de4fedf33d4f9a$export$2e2bcd8739ae039), {
|
|
1663
|
+
date: date,
|
|
1664
|
+
displayTooltips: false
|
|
1420
1665
|
})
|
|
1421
1666
|
}),
|
|
1422
1667
|
downloadUrl ? /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1423
|
-
className: `ds-u-margin-top--3 ds-u-padding-left--0`,
|
|
1668
|
+
className: `ds-u-margin-top--3 ds-u-padding-left--0 download-button`,
|
|
1424
1669
|
children: largeFile ? /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1425
1670
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $b61856b23f5f58a2$export$2e2bcd8739ae039), {
|
|
1426
1671
|
downloadUrl: downloadUrl
|
|
@@ -1445,7 +1690,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1445
1690
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1446
1691
|
className: linkClasses,
|
|
1447
1692
|
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1448
|
-
to:
|
|
1693
|
+
to: `${url}#data-table`,
|
|
1449
1694
|
children: [
|
|
1450
1695
|
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $b38839fd67928f42$export$2e2bcd8739ae039), {
|
|
1451
1696
|
id: "data-table"
|
|
@@ -1460,7 +1705,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1460
1705
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1461
1706
|
className: linkClasses,
|
|
1462
1707
|
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1463
|
-
to:
|
|
1708
|
+
to: `${url}#overview`,
|
|
1464
1709
|
children: [
|
|
1465
1710
|
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $b38839fd67928f42$export$2e2bcd8739ae039), {
|
|
1466
1711
|
id: "overview"
|
|
@@ -1475,7 +1720,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1475
1720
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1476
1721
|
className: linkClasses,
|
|
1477
1722
|
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1478
|
-
to:
|
|
1723
|
+
to: `${url}#data-dictionary`,
|
|
1479
1724
|
children: [
|
|
1480
1725
|
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $b38839fd67928f42$export$2e2bcd8739ae039), {
|
|
1481
1726
|
id: "data-dictionary"
|
|
@@ -1490,7 +1735,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1490
1735
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
1491
1736
|
className: linkClasses,
|
|
1492
1737
|
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1493
|
-
to:
|
|
1738
|
+
to: `${url}#api`,
|
|
1494
1739
|
children: [
|
|
1495
1740
|
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $b38839fd67928f42$export$2e2bcd8739ae039), {
|
|
1496
1741
|
id: "api"
|
|
@@ -1515,81 +1760,6 @@ var $52c6454cae137465$export$2e2bcd8739ae039 = $52c6454cae137465$var$DatasetSear
|
|
|
1515
1760
|
|
|
1516
1761
|
|
|
1517
1762
|
|
|
1518
|
-
const $c068004d499082cc$var$DatasetListItem = (props)=>{
|
|
1519
|
-
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
1520
|
-
minWidth: 1024
|
|
1521
|
-
});
|
|
1522
|
-
const { title: title, modified: modified, identifier: identifier, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks } = props;
|
|
1523
|
-
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
1524
|
-
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
1525
|
-
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
1526
|
-
let linkClasses = "ds-u-display--block ds-u-text-align--left";
|
|
1527
|
-
if (desktop) {
|
|
1528
|
-
linkContainerClasses = "ds-u-padding-x--0";
|
|
1529
|
-
linkClasses += " ds-l-col--4 ds-l-md-col--auto";
|
|
1530
|
-
}
|
|
1531
|
-
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
1532
|
-
className: "dc-c-list-item ds-u-padding-top--4",
|
|
1533
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1534
|
-
className: `dc-c-searchlist-item ${paginationEnabled ? "ds-u-border-top--1" : "ds-u-border-bottom--1 ds-u-padding-bottom--3"}`,
|
|
1535
|
-
children: [
|
|
1536
|
-
/*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1537
|
-
className: "ds-l-row ds-u-align-items--start",
|
|
1538
|
-
children: [
|
|
1539
|
-
/*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1540
|
-
id: `dataset-${identifier}-updated-date`,
|
|
1541
|
-
className: `ds-l-col--12 ds-u-text-align--left ds-text-heading--sm ${paginationEnabled ? "ds-u-padding-top--3" : "ds-u-padding-top--0"}`,
|
|
1542
|
-
children: [
|
|
1543
|
-
"Updated ",
|
|
1544
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
1545
|
-
date: modified
|
|
1546
|
-
})
|
|
1547
|
-
]
|
|
1548
|
-
}),
|
|
1549
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("h2", {
|
|
1550
|
-
className: "ds-l-col--12 ds-text-heading--2xl",
|
|
1551
|
-
children: title
|
|
1552
|
-
})
|
|
1553
|
-
]
|
|
1554
|
-
}),
|
|
1555
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1556
|
-
className: "ds-l-row",
|
|
1557
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1558
|
-
className: "ds-l-col--12 ds-l-md-col--12 ds-u-margin-top--2",
|
|
1559
|
-
children: [
|
|
1560
|
-
"The ",
|
|
1561
|
-
title,
|
|
1562
|
-
" dataset was updated."
|
|
1563
|
-
]
|
|
1564
|
-
})
|
|
1565
|
-
}),
|
|
1566
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1567
|
-
className: "ds-l-row",
|
|
1568
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1569
|
-
className: "ds-l-col--12",
|
|
1570
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1571
|
-
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
1572
|
-
to: `/dataset/${identifier}`,
|
|
1573
|
-
children: [
|
|
1574
|
-
"View the Dataset for ",
|
|
1575
|
-
title,
|
|
1576
|
-
" "
|
|
1577
|
-
]
|
|
1578
|
-
})
|
|
1579
|
-
})
|
|
1580
|
-
})
|
|
1581
|
-
]
|
|
1582
|
-
})
|
|
1583
|
-
});
|
|
1584
|
-
};
|
|
1585
|
-
var $c068004d499082cc$export$2e2bcd8739ae039 = $c068004d499082cc$var$DatasetListItem;
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
1763
|
|
|
1594
1764
|
|
|
1595
1765
|
const $789279954d8eff7f$var$ApiDocumentation = ({ endpoint: endpoint })=>{
|
|
@@ -4227,6 +4397,7 @@ const $e873081a6e8f024e$var$DatasetSearch = (props)=>{
|
|
|
4227
4397
|
if (item.theme.includes(theme)) showLargeFile = true;
|
|
4228
4398
|
});
|
|
4229
4399
|
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $52c6454cae137465$export$2e2bcd8739ae039), {
|
|
4400
|
+
location: location,
|
|
4230
4401
|
title: item.title,
|
|
4231
4402
|
modified: item.modified,
|
|
4232
4403
|
description: item.description,
|
|
@@ -4285,10 +4456,11 @@ var $e873081a6e8f024e$export$2e2bcd8739ae039 = (0, $61ff88fb3f6ee2c8$export$2e2b
|
|
|
4285
4456
|
|
|
4286
4457
|
|
|
4287
4458
|
|
|
4288
|
-
const $550bcc185f420ff5$var$DatasetList = ({
|
|
4289
|
-
defaultSort:
|
|
4290
|
-
|
|
4291
|
-
|
|
4459
|
+
const $550bcc185f420ff5$var$DatasetList = (props)=>{
|
|
4460
|
+
const { rootUrl: rootUrl, enableSort: enableSort = true, enablePagination: enablePagination = true, defaultPageSize: defaultPageSize = 10, defaultSort: defaultSort = {
|
|
4461
|
+
defaultSort: "modified",
|
|
4462
|
+
defaultOrder: "desc"
|
|
4463
|
+
}, pageTitle: pageTitle = "What's New ", showLargeFileWarning: showLargeFileWarning = false, introText: introText = "", dataDictionaryLinks: dataDictionaryLinks = false } = props;
|
|
4292
4464
|
const { ACA: ACA } = (0, $hgUW1$useContext)((0, $844981eac9b63865$export$eccc29c8d0ff408));
|
|
4293
4465
|
const sortOptions = [
|
|
4294
4466
|
{
|
|
@@ -4560,6 +4732,7 @@ var $550bcc185f420ff5$export$2e2bcd8739ae039 = (0, $61ff88fb3f6ee2c8$export$2e2b
|
|
|
4560
4732
|
|
|
4561
4733
|
|
|
4562
4734
|
|
|
4735
|
+
|
|
4563
4736
|
const $b4aa9c66f2e86959$var$useMetastoreDataset = (datasetId, rootAPIUrl)=>{
|
|
4564
4737
|
const [dataset, setDataset] = (0, $hgUW1$useState)({
|
|
4565
4738
|
title: "",
|
|
@@ -7497,5 +7670,5 @@ var $90fb213ab8eeb2e7$export$2e2bcd8739ae039 = $90fb213ab8eeb2e7$var$useScrollTo
|
|
|
7497
7670
|
|
|
7498
7671
|
|
|
7499
7672
|
|
|
7500
|
-
export {$e49d4387bed21287$export$2e2bcd8739ae039 as ApiRowLimitNotice, $a8accc31bf9e0bda$export$2e2bcd8739ae039 as CMSTopNav, $c49454ea7d1c4579$export$2e2bcd8739ae039 as ErrorBoundary, $046ded0064bd0a3d$export$2e2bcd8739ae039 as FAQAccordion, $b939b31651e82908$export$2e2bcd8739ae039 as HeaderNav, $1555e1cb3eb7b3e3$export$2e2bcd8739ae039 as HeaderNavIconLink, $fea9297ba4dd394c$export$2e2bcd8739ae039 as HeaderSearch, $9a8892c5ac150556$export$2e2bcd8739ae039 as HeaderSiteTitle, $3c72c298c3a7f21f$export$2e2bcd8739ae039 as HeaderTagline, $403833a4b442d5df$export$2e2bcd8739ae039 as MobileMenuButton, $f57121650539d8c5$export$2e2bcd8739ae039 as NavBar, $953b286f7778640e$export$2e2bcd8739ae039 as SidebarNavigation, $b0968edc60d7d3a4$export$2e2bcd8739ae039 as SidebarPage, $4f153ca537d853e5$export$2e2bcd8739ae039 as SubMenu, $59a079354baa335c$export$2e2bcd8739ae039 as Hero, $52c6454cae137465$export$2e2bcd8739ae039 as DatasetSearchListItem, $
|
|
7673
|
+
export {$e49d4387bed21287$export$2e2bcd8739ae039 as ApiRowLimitNotice, $a8accc31bf9e0bda$export$2e2bcd8739ae039 as CMSTopNav, $c49454ea7d1c4579$export$2e2bcd8739ae039 as ErrorBoundary, $046ded0064bd0a3d$export$2e2bcd8739ae039 as FAQAccordion, $b939b31651e82908$export$2e2bcd8739ae039 as HeaderNav, $1555e1cb3eb7b3e3$export$2e2bcd8739ae039 as HeaderNavIconLink, $fea9297ba4dd394c$export$2e2bcd8739ae039 as HeaderSearch, $9a8892c5ac150556$export$2e2bcd8739ae039 as HeaderSiteTitle, $3c72c298c3a7f21f$export$2e2bcd8739ae039 as HeaderTagline, $403833a4b442d5df$export$2e2bcd8739ae039 as MobileMenuButton, $f57121650539d8c5$export$2e2bcd8739ae039 as NavBar, $953b286f7778640e$export$2e2bcd8739ae039 as SidebarNavigation, $b0968edc60d7d3a4$export$2e2bcd8739ae039 as SidebarPage, $4f153ca537d853e5$export$2e2bcd8739ae039 as SubMenu, $59a079354baa335c$export$2e2bcd8739ae039 as Hero, $c068004d499082cc$export$2e2bcd8739ae039 as DatasetListItem, $52c6454cae137465$export$2e2bcd8739ae039 as DatasetSearchListItem, $17711e94d2ce0ee4$export$2e2bcd8739ae039 as DatasetDateItem, $20de4fedf33d4f9a$export$2e2bcd8739ae039 as DatasetDate, $789279954d8eff7f$export$2e2bcd8739ae039 as ApiDocumentation, $af099c546cb226c7$export$2e2bcd8739ae039 as ResourceHeader, $626282d9a03c51d5$export$2e2bcd8739ae039 as ResourcePreview, $072291d44ce1834a$export$2e2bcd8739ae039 as ResourceFooter, $ec3e23baa005dc03$export$2e2bcd8739ae039 as Breadcrumb, $bd76a91923d7e8a7$export$2e2bcd8739ae039 as TransformedDate, $d98f94c79ddf4e0e$export$2e2bcd8739ae039 as DataTable, $bdb071ea3a6d3466$export$2e2bcd8739ae039 as SearchInput, $5644ebd2c3dbfd7b$export$eea3a12df15499ca as buildRows, $2ed0091f7e32d1e6$export$2e2bcd8739ae039 as DataTablePageResults, $1a2bf34e2a8f6b80$export$59a943b34a82e690 as truncateText, $c96c4b9ef7203c1f$export$2e2bcd8739ae039 as APIPage, $026cb986f9fea2b1$export$2e2bcd8739ae039 as PageNotFound, $e873081a6e8f024e$export$2e2bcd8739ae039 as DatasetSearch, $550bcc185f420ff5$export$2e2bcd8739ae039 as DatasetList, $9384a736d4d6f425$export$2e2bcd8739ae039 as DatasetListSubmenu, $a0f13962e513caa1$export$2e2bcd8739ae039 as Dataset, $a35cf16d1488f54e$export$2e2bcd8739ae039 as DatasetTable, $b9af6ce5e2c06331$export$2e2bcd8739ae039 as Header, $a6df0aa147323304$export$2e2bcd8739ae039 as Footer, $669d2782ec2e2250$export$2e2bcd8739ae039 as SpecsAndLimits, $8b67b7ee3fcfb629$export$2e2bcd8739ae039 as StoredQueryPage, $f61ecf9f84951a61$export$2e2bcd8739ae039 as FilteredResource, $bef7bff2823feea2$export$2e2bcd8739ae039 as QueryTitle, $7264a673914aa746$export$2b9377795161999 as buildOperatorOptions, $7264a673914aa746$export$e284ae5d89467c8f as convertUTCToLocalDate, $7264a673914aa746$export$6b5e57d20078142b as cleanText, $7264a673914aa746$export$8049e8f40a9bdfb8 as buildCustomColHeaders, $11500a65bd7d9cf1$export$2e2bcd8739ae039 as HeaderContext, $43a30d745a7bbc86$export$2e2bcd8739ae039 as DataTableContext, $ebda441784d176a5$export$2e2bcd8739ae039 as ManageColumnsContext, $844981eac9b63865$export$eccc29c8d0ff408 as ACAContext, $efc410f5f7ac5ef3$export$2e2bcd8739ae039 as useSearchAPI, $1d3d480a9cfaabe0$export$2e2bcd8739ae039 as useDatastore, $aa4450dcbeef3ac0$export$385a5aba38cc3325 as transformTableSortToQuerySort, $eb7821d186b1a389$export$2e2bcd8739ae039 as useAddLoginLink, $90fb213ab8eeb2e7$export$2e2bcd8739ae039 as useScrollToTop, $b4aa9c66f2e86959$export$2e2bcd8739ae039 as useMetastoreDataset, $61ff88fb3f6ee2c8$export$2e2bcd8739ae039 as withQueryProvider, $6d5c0212e738499b$export$34e95918366a058e as acaToParams, $6da0396069e23175$export$bc27cf7ecf44639d as defaultMetadataMapping};
|
|
7501
7674
|
//# sourceMappingURL=main.js.map
|