@cccsaurora/clue-ui 1.2.1-patch.256 → 1.3.0-dev.255

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.
Files changed (181) hide show
  1. package/ActionForm-C0aE9HUv.js +5941 -0
  2. package/AnnotationDetails-CEou0vCc.js +175 -0
  3. package/AnnotationPreview-CLMVD6Ec.js +188 -0
  4. package/ClueEnrichContext-BkD9ZwM9.js +541 -0
  5. package/FlexOne-BSYAhhtG.js +9 -0
  6. package/_MapCache-WmuDdwuH.js +222 -0
  7. package/_Uint8Array-DdG4KLKn.js +128 -0
  8. package/_baseAssignValue-CGTuELqU.js +25 -0
  9. package/_baseClone-BpWiBnMp.js +283 -0
  10. package/_baseExtremum-BY663UjY.js +33 -0
  11. package/_baseFlatten-B69cDsaV.js +92 -0
  12. package/_baseGet-Bx3A4Qfp.js +108 -0
  13. package/_baseIsEqual-B4IufFlL.js +208 -0
  14. package/_baseIteratee-7AQvAy1o.js +126 -0
  15. package/_baseSlice-GAv_YFTT.js +20 -0
  16. package/_baseSum-D0WC1dN0.js +13 -0
  17. package/_baseUniq-B8fK6hI-.js +115 -0
  18. package/_commonjsHelpers-DWwsNxpa.js +8 -0
  19. package/_createAggregator-CwGPThny.js +63 -0
  20. package/_getPrototype-CblfEidB.js +5 -0
  21. package/_getTag-jwz4XLoZ.js +126 -0
  22. package/_setToArray-CaPKQhcz.js +33 -0
  23. package/cloneDeep-DmUylbkM.js +8 -0
  24. package/components/AnnotationBody.js +49 -35
  25. package/components/AnnotationDetailPopover.js +36 -30
  26. package/components/AnnotationDetails.js +7 -7
  27. package/components/AnnotationEntry.js +35 -35
  28. package/components/AnnotationPreview.js +5 -5
  29. package/components/ClassificationChip.js +44 -23
  30. package/components/CountBadge.js +31 -26
  31. package/components/EnrichedCard.js +110 -97
  32. package/components/EnrichedChip.js +130 -105
  33. package/components/EnrichedTypography.js +133 -107
  34. package/components/ErrorBoundary.js +28 -24
  35. package/components/RetryFailedEnrichments.js +10 -9
  36. package/components/SourcePicker.js +57 -49
  37. package/components/actions/ActionForm.js +4 -4
  38. package/components/actions/ExecutePopover.js +75 -59
  39. package/components/actions/ResultModal.js +4 -4
  40. package/components/actions/form/schemaAdapter.js +39 -23
  41. package/components/actions/formats/FileResult.js +86 -59
  42. package/components/actions/formats/index.js +21 -10
  43. package/components/display/graph/ExpandMoreButton.js +10 -10
  44. package/components/display/graph/elements/NodeCard.js +111 -91
  45. package/components/display/graph/elements/NodeTag.js +15 -13
  46. package/components/display/graph/index.js +261 -202
  47. package/components/display/graph/visualizations/Leaf.js +88 -69
  48. package/components/display/graph/visualizations/cloud/index.js +98 -81
  49. package/components/display/graph/visualizations/icons/BaseIcon.js +26 -21
  50. package/components/display/graph/visualizations/icons/BugIcon.js +12 -12
  51. package/components/display/graph/visualizations/icons/HostIcon.js +12 -12
  52. package/components/display/graph/visualizations/icons/NetworkIcon.js +12 -12
  53. package/components/display/graph/visualizations/icons/ProcessIcon.js +12 -12
  54. package/components/display/graph/visualizations/icons/TargetIcon.js +13 -13
  55. package/components/display/graph/visualizations/icons/index.js +14 -13
  56. package/components/display/graph/visualizations/panels/NodePanel.js +10 -8
  57. package/components/display/graph/visualizations/tree/BundleLine.js +108 -81
  58. package/components/display/graph/visualizations/tree/Triangle.js +13 -13
  59. package/components/display/graph/visualizations/tree/index.js +407 -306
  60. package/components/display/icons/Iconified.js +27 -12
  61. package/components/display/json/index.js +4 -4
  62. package/components/display/markdown/index.js +8678 -5770
  63. package/components/enrichment/EnrichPopover.js +54 -46
  64. package/components/fetchers/Fetcher.js +155 -117
  65. package/components/fetchers/PreviewModal.js +20 -17
  66. package/components/fetchers/StatusChip.js +21 -17
  67. package/components/group/Entry.js +13 -11
  68. package/components/group/Group.js +13 -10
  69. package/components/group/GroupControl.js +76 -65
  70. package/components/stats/QueryStatus.js +43 -33
  71. package/countBy-DqlU5OwT.js +14 -0
  72. package/data/event.js +6 -4
  73. package/database/index.js +2 -2
  74. package/debounce-bV0h5FC5.js +92 -0
  75. package/get-DSsNkRQs.js +8 -0
  76. package/groupBy-ChDRT7uy.js +14 -0
  77. package/hooks/ClueActionContext.js +6 -6
  78. package/hooks/ClueComponentContext.js +29 -23
  79. package/hooks/ClueConfigProvider.js +14 -12
  80. package/hooks/ClueDatabaseContext.js +19 -13
  81. package/hooks/ClueEnrichContext.js +8 -8
  82. package/hooks/ClueFetcherContext.js +83 -56
  83. package/hooks/ClueGroupContext.js +17 -14
  84. package/hooks/CluePopupContext.js +5 -5
  85. package/hooks/ClueProvider.js +12 -10
  86. package/hooks/selectors.js +7 -7
  87. package/hooks/useActionResult.js +2 -2
  88. package/hooks/useAnnotations.js +47 -31
  89. package/hooks/useClue.js +6 -4
  90. package/hooks/useClueActions.js +3 -3
  91. package/hooks/useClueConfig.js +6 -4
  92. package/hooks/useClueTypeConfig.js +3 -3
  93. package/hooks/useComparator.js +722 -435
  94. package/hooks/useErrors.js +22 -18
  95. package/hooks/useFetcherResult.js +33 -24
  96. package/hooks/useMyHighlights.js +66 -36
  97. package/hooks/useMyLocalStorage.js +66 -37
  98. package/iconify-CXMreGTg.js +1782 -0
  99. package/icons/Action.js +66 -49
  100. package/icons/Assessment.js +84 -69
  101. package/icons/Context.js +77 -63
  102. package/icons/Opinion.js +78 -60
  103. package/icons/iconMap.js +2 -2
  104. package/identity-CPGTqrE4.js +6 -0
  105. package/index-AMfoEg_6.js +696 -0
  106. package/index-B6C2a_Lg.js +1172 -0
  107. package/index-C12gPw2W.js +17698 -0
  108. package/index-DCKkHTvx.js +15750 -0
  109. package/index-UkW8Sur3.js +465 -0
  110. package/isNil-CIubwp4T.js +6 -0
  111. package/isObject-FTY-5JQX.js +7 -0
  112. package/isObjectLike-OAgjjZye.js +48 -0
  113. package/isSymbol-Xd2FsJyp.js +8 -0
  114. package/last-CUCl67Im.js +7 -0
  115. package/main.js +60 -60
  116. package/package.json +1 -1
  117. package/sortBy-C7mGPI_D.js +100 -0
  118. package/sumBy-CGALjmwQ.js +8 -0
  119. package/text/Frequency.js +42 -23
  120. package/toFinite-Bc55msYj.js +16 -0
  121. package/toNumber-DPxy1FBy.js +39 -0
  122. package/useClueTypeConfig-D2tf4-NM.js +3289 -0
  123. package/utils/chain.js +91 -65
  124. package/utils/classificationParser.js +519 -256
  125. package/utils/constants.js +35 -10
  126. package/utils/graph.js +72 -45
  127. package/utils/hashUtil.js +7 -7
  128. package/utils/line.js +131 -81
  129. package/utils/loggerUtil.js +5 -3
  130. package/utils/sessionStorage.js +41 -27
  131. package/utils/time.js +423 -423
  132. package/utils/utils.js +9 -9
  133. package/utils/window.js +21 -10
  134. package/utils-71DpzFrA.js +199 -0
  135. package/ActionForm-DlOXqMUx.js +0 -4460
  136. package/AnnotationDetails-Bk-p0F6h.js +0 -160
  137. package/AnnotationPreview-jzZvkCxJ.js +0 -140
  138. package/ClueEnrichContext-KqRuuWNS.js +0 -418
  139. package/FlexOne-BXWFOd1T.js +0 -6
  140. package/_MapCache-BiTi0iqu.js +0 -180
  141. package/_Uint8Array-BQNOM9Rr.js +0 -101
  142. package/_baseAssignValue-CNMLQZco.js +0 -20
  143. package/_baseClone-BnT-6pyM.js +0 -207
  144. package/_baseExtremum-Ca2EHgy2.js +0 -16
  145. package/_baseFlatten-Bfr_Molw.js +0 -72
  146. package/_baseGet-DSZygzyq.js +0 -79
  147. package/_baseIsEqual-VgvaAFZG.js +0 -147
  148. package/_baseIteratee-Dbfsw5z8.js +0 -95
  149. package/_baseSlice-M5RKzt1A.js +0 -10
  150. package/_baseSum-wEbgNeUs.js +0 -10
  151. package/_baseUniq-BJcj69PL.js +0 -79
  152. package/_commonjsHelpers-DaMA6jEr.js +0 -8
  153. package/_createAggregator-k3TuAnxT.js +0 -53
  154. package/_getPrototype-Cr1Mk7BC.js +0 -5
  155. package/_getTag-CK2Sffaq.js +0 -90
  156. package/_isIterateeCall-DkJP7Rbx.js +0 -13
  157. package/_setToArray-C7yMOeww.js +0 -29
  158. package/cloneDeep-CF8TtLHr.js +0 -8
  159. package/countBy-CdYegFSu.js +0 -8
  160. package/debounce-DryYcbJ4.js +0 -56
  161. package/get-CH7kz5Ix.js +0 -8
  162. package/groupBy-br8xmD2R.js +0 -8
  163. package/iconify-BBckr5AQ.js +0 -1263
  164. package/identity-ByMq8VxU.js +0 -6
  165. package/index-BHAe_V9n.js +0 -12768
  166. package/index-BK-zfYhR.js +0 -358
  167. package/index-CA5CUNZO.js +0 -975
  168. package/index-Dj5C04IX.js +0 -568
  169. package/index-p5_wX7q1.js +0 -11729
  170. package/isNil-CjWwlQS3.js +0 -6
  171. package/isObject-B53jY8Qg.js +0 -7
  172. package/isObjectLike-BatpeCIi.js +0 -29
  173. package/isSymbol-C3_SC0Qp.js +0 -8
  174. package/last-7CdUxN0r.js +0 -7
  175. package/maxBy-Bc0dYHcO.js +0 -8
  176. package/sortBy-DY2JBf9n.js +0 -75
  177. package/sumBy-DuMASLPd.js +0 -8
  178. package/toFinite-BMy6GObD.js +0 -14
  179. package/toNumber-YVhnnJv4.js +0 -31
  180. package/useClueTypeConfig-Ct9Ygter.js +0 -2292
  181. package/utils-DmwSUrum.js +0 -129
package/icons/Action.js CHANGED
@@ -1,73 +1,90 @@
1
- import { jsx as e, jsxs as z } from "react/jsx-runtime";
2
- import { I } from "../iconify-BBckr5AQ.js";
3
- import { useTheme as j, Stack as i, Divider as l, Typography as C } from "@mui/material";
4
- import R from "../components/CountBadge.js";
5
- import { C as v } from "../AnnotationPreview-jzZvkCxJ.js";
6
- import { u as B } from "../ActionForm-DlOXqMUx.js";
7
- import { g as D } from "../groupBy-br8xmD2R.js";
8
- import { memo as L, useRef as A, useMemo as s, useEffect as O } from "react";
9
- import { u as M } from "../index-Dj5C04IX.js";
10
- const k = ({ result: o }) => /* @__PURE__ */ z(i, { p: 1, children: [
11
- /* @__PURE__ */ e(C, { variant: "body1", children: o.action.name }),
12
- /* @__PURE__ */ e(C, { variant: "caption", color: "text.secondary", children: o.summary })
13
- ] }), b = ({ value: o, counters: f = !0, disableTooltip: c = !1, ...d }) => {
14
- const p = j(), h = M(v, (t) => t.showInfo), a = M(v, (t) => t.closeInfo), y = A(), g = A(), { getActionResults: x } = B(), n = s(
15
- () => x(o.type, o.value, o.classification),
16
- [x, o.classification, o.type, o.value]
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { I as Icon } from "../iconify-CXMreGTg.js";
3
+ import { useTheme, Stack, Divider, Typography } from "@mui/material";
4
+ import CountBadge from "../components/CountBadge.js";
5
+ import { C as CluePopupContext } from "../AnnotationPreview-CLMVD6Ec.js";
6
+ import { u as useClueActions } from "../ActionForm-C0aE9HUv.js";
7
+ import { g as groupBy } from "../groupBy-ChDRT7uy.js";
8
+ import { memo, useRef, useMemo, useEffect } from "react";
9
+ import { u as useContextSelector } from "../index-AMfoEg_6.js";
10
+ const ResultDetails = ({ result }) => {
11
+ return /* @__PURE__ */ jsxs(Stack, { p: 1, children: [
12
+ /* @__PURE__ */ jsx(Typography, { variant: "body1", children: result.action.name }),
13
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", children: result.summary })
14
+ ] });
15
+ };
16
+ const ActionIcon = ({ value, counters = true, disableTooltip = false, ...otherProps }) => {
17
+ const theme = useTheme();
18
+ const showInfo = useContextSelector(CluePopupContext, (state) => state.showInfo);
19
+ const closeInfo = useContextSelector(CluePopupContext, (state) => state.closeInfo);
20
+ const successAnchorRef = useRef();
21
+ const failureAnchorRef = useRef();
22
+ const { getActionResults } = useClueActions();
23
+ const actionResults = useMemo(
24
+ () => getActionResults(value.type, value.value, value.classification),
25
+ [getActionResults, value.classification, value.type, value.value]
17
26
  );
18
- O(() => {
19
- c && a("context", o);
20
- }, [c]);
21
- const [m, u] = s(() => {
22
- const t = D(n, (r) => r.outcome);
23
- return [t.success ?? [], t.failure ?? []];
24
- }, [n]), S = s(() => {
25
- const t = m.map((r) => /* @__PURE__ */ e(k, { result: r }, r.actionId));
26
- return /* @__PURE__ */ e(i, { spacing: 1, divider: /* @__PURE__ */ e(l, { flexItem: !0, orientation: "horizontal" }), children: t });
27
- }, [m]), w = s(() => {
28
- const t = u.map((r) => /* @__PURE__ */ e(k, { result: r }, r.summary));
29
- return /* @__PURE__ */ e(i, { spacing: 1, divider: /* @__PURE__ */ e(l, { flexItem: !0, orientation: "horizontal" }), children: t });
30
- }, [u]);
31
- return (n == null ? void 0 : n.length) < 1 ? null : /* @__PURE__ */ z(i, { direction: "row", spacing: 1, children: [
32
- /* @__PURE__ */ e(l, { flexItem: !0, orientation: "vertical" }),
33
- m.length > 0 && /* @__PURE__ */ e(
27
+ useEffect(() => {
28
+ if (disableTooltip) {
29
+ closeInfo("context", value);
30
+ }
31
+ }, [disableTooltip]);
32
+ const [successes, failures] = useMemo(() => {
33
+ const outcomes = groupBy(actionResults, (result) => result.outcome);
34
+ return [outcomes.success ?? [], outcomes.failure ?? []];
35
+ }, [actionResults]);
36
+ const successContent = useMemo(() => {
37
+ const entries = successes.map((result) => /* @__PURE__ */ jsx(ResultDetails, { result }, result.actionId));
38
+ return /* @__PURE__ */ jsx(Stack, { spacing: 1, divider: /* @__PURE__ */ jsx(Divider, { flexItem: true, orientation: "horizontal" }), children: entries });
39
+ }, [successes]);
40
+ const failureContent = useMemo(() => {
41
+ const entries = failures.map((result) => /* @__PURE__ */ jsx(ResultDetails, { result }, result.summary));
42
+ return /* @__PURE__ */ jsx(Stack, { spacing: 1, divider: /* @__PURE__ */ jsx(Divider, { flexItem: true, orientation: "horizontal" }), children: entries });
43
+ }, [failures]);
44
+ if ((actionResults == null ? void 0 : actionResults.length) < 1) {
45
+ return null;
46
+ }
47
+ return /* @__PURE__ */ jsxs(Stack, { direction: "row", spacing: 1, children: [
48
+ /* @__PURE__ */ jsx(Divider, { flexItem: true, orientation: "vertical" }),
49
+ successes.length > 0 && /* @__PURE__ */ jsx(
34
50
  "span",
35
51
  {
36
- ref: y,
52
+ ref: successAnchorRef,
37
53
  style: { display: "flex" },
38
- onMouseOver: c ? void 0 : () => h("actionResults", y.current, o, { content: S }),
39
- onMouseLeave: c ? void 0 : () => a("actionResults", o),
40
- children: /* @__PURE__ */ e(R, { disabled: !f, count: n.filter((t) => t.outcome === "success").length, children: /* @__PURE__ */ e(
41
- I,
54
+ onMouseOver: disableTooltip ? void 0 : () => showInfo("actionResults", successAnchorRef.current, value, { content: successContent }),
55
+ onMouseLeave: disableTooltip ? void 0 : () => closeInfo("actionResults", value),
56
+ children: /* @__PURE__ */ jsx(CountBadge, { disabled: !counters, count: actionResults.filter((result) => result.outcome === "success").length, children: /* @__PURE__ */ jsx(
57
+ Icon,
42
58
  {
43
59
  icon: "material-symbols:bookmark-check-rounded",
44
- color: p.palette.success.main,
60
+ color: theme.palette.success.main,
45
61
  fontSize: "1.5em",
46
- ...d
62
+ ...otherProps
47
63
  }
48
64
  ) })
49
65
  }
50
66
  ),
51
- u.length > 0 && /* @__PURE__ */ e(
67
+ failures.length > 0 && /* @__PURE__ */ jsx(
52
68
  "span",
53
69
  {
54
- ref: g,
70
+ ref: failureAnchorRef,
55
71
  style: { display: "flex" },
56
- onMouseOver: c ? void 0 : () => h("actionResults", g.current, o, { content: w }),
57
- onMouseLeave: c ? void 0 : () => a("actionResults", o),
58
- children: /* @__PURE__ */ e(R, { disabled: !f, count: n.filter((t) => t.outcome === "failure").length, children: /* @__PURE__ */ e(
59
- I,
72
+ onMouseOver: disableTooltip ? void 0 : () => showInfo("actionResults", failureAnchorRef.current, value, { content: failureContent }),
73
+ onMouseLeave: disableTooltip ? void 0 : () => closeInfo("actionResults", value),
74
+ children: /* @__PURE__ */ jsx(CountBadge, { disabled: !counters, count: actionResults.filter((result) => result.outcome === "failure").length, children: /* @__PURE__ */ jsx(
75
+ Icon,
60
76
  {
61
77
  icon: "material-symbols:cancel-presentation-rounded",
62
- color: p.palette.error.main,
78
+ color: theme.palette.error.main,
63
79
  fontSize: "1.5em",
64
- ...d
80
+ ...otherProps
65
81
  }
66
82
  ) })
67
83
  }
68
84
  )
69
85
  ] });
70
- }, P = L(b);
86
+ };
87
+ const ActionIcon$1 = memo(ActionIcon);
71
88
  export {
72
- P as default
89
+ ActionIcon$1 as default
73
90
  };
@@ -1,108 +1,123 @@
1
- import { jsxs as b, Fragment as k, jsx as s } from "react/jsx-runtime";
2
- import { I as l } from "../iconify-BBckr5AQ.js";
3
- import { useTheme as j, Stack as y, Chip as I, Divider as q, Grid as C, Tooltip as A } from "@mui/material";
4
- import z from "../components/CountBadge.js";
5
- import { C as w } from "../AnnotationPreview-jzZvkCxJ.js";
6
- import { g as O } from "../groupBy-br8xmD2R.js";
7
- import { l as P } from "../last-7CdUxN0r.js";
8
- import { m as L } from "../maxBy-Bc0dYHcO.js";
9
- import { s as R } from "../sortBy-DY2JBf9n.js";
10
- import { s as W } from "../sumBy-DuMASLPd.js";
11
- import { memo as D, useRef as E, useState as F, useMemo as d, useEffect as G } from "react";
12
- import { u as S } from "../index-Dj5C04IX.js";
13
- const H = ({ annotations: u, value: i, counters: f = !0, disableTooltip: r = !1, ubiquitous: h = !1, ...v }) => {
14
- const t = j(), g = S(w, (e) => e.showInfo), x = S(w, (e) => e.closeInfo), c = E(), [$, B] = F(!1), o = d(
15
- () => u.filter((e) => (e == null ? void 0 : e.type) === "assessment" && (e == null ? void 0 : e.ubiquitous) === h),
16
- [u, h]
17
- ), m = d(
18
- () => Object.entries(O(o, "value")).map(([e, p]) => [
19
- e,
20
- W(p, "quantity")
1
+ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
+ import { I as Icon } from "../iconify-CXMreGTg.js";
3
+ import { useTheme, Stack, Chip, Divider, Grid, Tooltip } from "@mui/material";
4
+ import CountBadge from "../components/CountBadge.js";
5
+ import { C as CluePopupContext } from "../AnnotationPreview-CLMVD6Ec.js";
6
+ import { g as groupBy } from "../groupBy-ChDRT7uy.js";
7
+ import { l as last } from "../last-CUCl67Im.js";
8
+ import { m as maxBy, s as sortBy } from "../sortBy-C7mGPI_D.js";
9
+ import { s as sumBy } from "../sumBy-CGALjmwQ.js";
10
+ import { memo, useRef, useState, useMemo, useEffect } from "react";
11
+ import { u as useContextSelector } from "../index-AMfoEg_6.js";
12
+ const AssessmentIcon = ({ annotations, value, counters = true, disableTooltip = false, ubiquitous = false, ...otherProps }) => {
13
+ const theme = useTheme();
14
+ const showInfo = useContextSelector(CluePopupContext, (state) => state.showInfo);
15
+ const closeInfo = useContextSelector(CluePopupContext, (state) => state.closeInfo);
16
+ const anchorRef = useRef();
17
+ const [showTooltip, setShowTooltip] = useState(false);
18
+ const assessmentAnnotations = useMemo(
19
+ () => annotations.filter((annotation) => (annotation == null ? void 0 : annotation.type) === "assessment" && (annotation == null ? void 0 : annotation.ubiquitous) === ubiquitous),
20
+ [annotations, ubiquitous]
21
+ );
22
+ const sortedAssessments = useMemo(
23
+ () => Object.entries(groupBy(assessmentAnnotations, "value")).map(([_value, _annotations]) => [
24
+ _value,
25
+ sumBy(_annotations, "quantity")
21
26
  ]),
22
- [o]
23
- ), n = d(() => L(m, P), [m]);
24
- if (G(() => {
25
- r && B(!1);
26
- }, [r]), (o == null ? void 0 : o.length) < 1)
27
+ [assessmentAnnotations]
28
+ );
29
+ const popularAssessment = useMemo(() => maxBy(sortedAssessments, last), [sortedAssessments]);
30
+ useEffect(() => {
31
+ if (disableTooltip) {
32
+ setShowTooltip(false);
33
+ }
34
+ }, [disableTooltip]);
35
+ if ((assessmentAnnotations == null ? void 0 : assessmentAnnotations.length) < 1) {
27
36
  return null;
28
- const M = {
37
+ }
38
+ const tooltipProps = {
29
39
  tooltip: {
30
40
  sx: {
31
41
  maxWidth: "500px",
32
- backgroundColor: t.palette.background.paper,
33
- border: `thin solid ${t.palette.divider}`,
42
+ backgroundColor: theme.palette.background.paper,
43
+ border: `thin solid ${theme.palette.divider}`,
34
44
  p: 1,
35
- boxShadow: t.shadows[2]
45
+ boxShadow: theme.shadows[2]
36
46
  }
37
47
  }
38
- }, a = /* @__PURE__ */ b(y, { spacing: 1, onClick: (e) => e.stopPropagation(), children: [
39
- o.length > 1 && /* @__PURE__ */ b(k, { children: [
40
- /* @__PURE__ */ s(y, { direction: "row", children: m.map(([e, p]) => /* @__PURE__ */ s(
41
- I,
48
+ };
49
+ const tooltipContent = /* @__PURE__ */ jsxs(Stack, { spacing: 1, onClick: (e) => e.stopPropagation(), children: [
50
+ assessmentAnnotations.length > 1 && /* @__PURE__ */ jsxs(Fragment, { children: [
51
+ /* @__PURE__ */ jsx(Stack, { direction: "row", children: sortedAssessments.map(([type, count]) => /* @__PURE__ */ jsx(
52
+ Chip,
42
53
  {
43
54
  size: "small",
44
55
  variant: "outlined",
45
- label: `${e}: ${p}`,
46
- icon: /* @__PURE__ */ s(
47
- l,
56
+ label: `${type}: ${count}`,
57
+ icon: /* @__PURE__ */ jsx(
58
+ Icon,
48
59
  {
49
- icon: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(e) ? "healthicons:hazardous" : "fluent-mdl2:ribbon-solid"
60
+ icon: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(type) ? "healthicons:hazardous" : "fluent-mdl2:ribbon-solid"
50
61
  }
51
62
  ),
52
- color: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(e) ? "error" : "success"
63
+ color: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(type) ? "error" : "success"
53
64
  },
54
- e
65
+ type
55
66
  )) }),
56
- /* @__PURE__ */ s(q, { orientation: "horizontal", flexItem: !0 })
67
+ /* @__PURE__ */ jsx(Divider, { orientation: "horizontal", flexItem: true })
57
68
  ] }),
58
- /* @__PURE__ */ s(
59
- C,
69
+ /* @__PURE__ */ jsx(
70
+ Grid,
60
71
  {
61
72
  sx: {
62
- mt: o.length < 2 && `${t.spacing(-0.5)} !important`,
63
- ml: `${t.spacing(-0.5)} !important`
73
+ mt: assessmentAnnotations.length < 2 && `${theme.spacing(-0.5)} !important`,
74
+ ml: `${theme.spacing(-0.5)} !important`
64
75
  },
65
- container: !0,
76
+ container: true,
66
77
  spacing: 0.5,
67
78
  maxWidth: "500px",
68
- children: R(o, "value").map((e) => /* @__PURE__ */ s(C, { item: !0, children: /* @__PURE__ */ s(
69
- I,
79
+ children: sortBy(assessmentAnnotations, "value").map((annotation) => /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
80
+ Chip,
70
81
  {
71
82
  size: "small",
72
83
  variant: "outlined",
73
- label: e.analytic + (e.quantity > 1 ? ` (x${e.quantity})` : ""),
74
- icon: /* @__PURE__ */ s(
75
- l,
84
+ label: annotation.analytic + (annotation.quantity > 1 ? ` (x${annotation.quantity})` : ""),
85
+ icon: /* @__PURE__ */ jsx(
86
+ Icon,
76
87
  {
77
- icon: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(e.value) ? "healthicons:hazardous" : "fluent-mdl2:ribbon-solid"
88
+ icon: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(annotation.value) ? "healthicons:hazardous" : "fluent-mdl2:ribbon-solid"
78
89
  }
79
90
  ),
80
- color: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(e.value) ? "error" : "success"
91
+ color: ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(annotation.value) ? "error" : "success"
81
92
  }
82
- ) }, e.analytic + e.value))
93
+ ) }, annotation.analytic + annotation.value))
83
94
  }
84
95
  )
85
96
  ] });
86
- return ["trivial", "recon", "attempt", "compromise", "mitigated"].includes(n[0]) ? /* @__PURE__ */ s(
87
- "span",
88
- {
89
- ref: c,
90
- style: { display: "flex" },
91
- onMouseOver: r ? void 0 : () => g("assessment", c.current, i, { content: a }),
92
- onMouseLeave: r ? void 0 : () => x("assessment", i),
93
- children: /* @__PURE__ */ s(z, { disabled: !f, color: "error", count: n[1], children: /* @__PURE__ */ s(l, { fontSize: "1.5em", ...v, icon: "healthicons:hazardous", color: t.palette.error.main }) })
94
- }
95
- ) : /* @__PURE__ */ s(
97
+ if (["trivial", "recon", "attempt", "compromise", "mitigated"].includes(popularAssessment[0])) {
98
+ return /* @__PURE__ */ jsx(
99
+ "span",
100
+ {
101
+ ref: anchorRef,
102
+ style: { display: "flex" },
103
+ onMouseOver: disableTooltip ? void 0 : () => showInfo("assessment", anchorRef.current, value, { content: tooltipContent }),
104
+ onMouseLeave: disableTooltip ? void 0 : () => closeInfo("assessment", value),
105
+ children: /* @__PURE__ */ jsx(CountBadge, { disabled: !counters, color: "error", count: popularAssessment[1], children: /* @__PURE__ */ jsx(Icon, { fontSize: "1.5em", ...otherProps, icon: "healthicons:hazardous", color: theme.palette.error.main }) })
106
+ }
107
+ );
108
+ }
109
+ return /* @__PURE__ */ jsx(
96
110
  "span",
97
111
  {
98
- ref: c,
112
+ ref: anchorRef,
99
113
  style: { display: "flex" },
100
- onMouseOver: r ? void 0 : () => g("assessment", c.current, i, { content: a }),
101
- onMouseLeave: r ? void 0 : () => x("assessment", i),
102
- children: /* @__PURE__ */ s(A, { disableInteractive: !0, componentsProps: M, open: $, title: a, children: /* @__PURE__ */ s(z, { disabled: !f, count: n[1], children: /* @__PURE__ */ s(l, { fontSize: "1.5em", ...v, icon: "fluent-mdl2:ribbon-solid", color: t.palette.success.main }) }) })
114
+ onMouseOver: disableTooltip ? void 0 : () => showInfo("assessment", anchorRef.current, value, { content: tooltipContent }),
115
+ onMouseLeave: disableTooltip ? void 0 : () => closeInfo("assessment", value),
116
+ children: /* @__PURE__ */ jsx(Tooltip, { disableInteractive: true, componentsProps: tooltipProps, open: showTooltip, title: tooltipContent, children: /* @__PURE__ */ jsx(CountBadge, { disabled: !counters, count: popularAssessment[1], children: /* @__PURE__ */ jsx(Icon, { fontSize: "1.5em", ...otherProps, icon: "fluent-mdl2:ribbon-solid", color: theme.palette.success.main }) }) })
103
117
  }
104
118
  );
105
- }, se = D(H);
119
+ };
120
+ const AssessmentIcon$1 = memo(AssessmentIcon);
106
121
  export {
107
- se as default
122
+ AssessmentIcon$1 as default
108
123
  };
package/icons/Context.js CHANGED
@@ -1,72 +1,86 @@
1
- import { jsx as o } from "react/jsx-runtime";
2
- import { I as w } from "../iconify-BBckr5AQ.js";
3
- import { Stack as u, Divider as z } from "@mui/material";
4
- import v from "../components/AnnotationEntry.js";
5
- import E from "../components/CountBadge.js";
6
- import M from "../components/display/icons/Iconified.js";
7
- import { C as x } from "../AnnotationPreview-jzZvkCxJ.js";
8
- import { g as O } from "../groupBy-br8xmD2R.js";
9
- import { memo as j, useRef as k, useMemo as h, useEffect as B } from "react";
10
- import { u as g } from "../index-Dj5C04IX.js";
11
- const R = ({
12
- annotations: l,
13
- value: c,
14
- counters: y = !0,
15
- disableTooltip: n = !1,
16
- showExtraIcon: I = !1,
17
- ubiquitous: m = !1,
18
- ...r
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { I as Icon } from "../iconify-CXMreGTg.js";
3
+ import { Stack, Divider } from "@mui/material";
4
+ import AnnotationEntry from "../components/AnnotationEntry.js";
5
+ import CountBadge from "../components/CountBadge.js";
6
+ import Iconified from "../components/display/icons/Iconified.js";
7
+ import { C as CluePopupContext } from "../AnnotationPreview-CLMVD6Ec.js";
8
+ import { g as groupBy } from "../groupBy-ChDRT7uy.js";
9
+ import { memo, useRef, useMemo, useEffect } from "react";
10
+ import { u as useContextSelector } from "../index-AMfoEg_6.js";
11
+ const ContextIcon = ({
12
+ annotations,
13
+ value,
14
+ counters = true,
15
+ disableTooltip = false,
16
+ showExtraIcon = false,
17
+ ubiquitous = false,
18
+ ...otherProps
19
19
  }) => {
20
- const C = g(x, (e) => e.showInfo), p = g(x, (e) => e.closeInfo), a = k(), t = h(
21
- () => l.filter((e) => e.type === "context" && e.ubiquitous === m),
22
- [l, m]
23
- ), s = h(
24
- () => t.filter((e) => e.icon || e.analytic_icon),
25
- [t]
20
+ const showInfo = useContextSelector(CluePopupContext, (state) => state.showInfo);
21
+ const closeInfo = useContextSelector(CluePopupContext, (state) => state.closeInfo);
22
+ const anchorRef = useRef();
23
+ const contextAnnotations = useMemo(
24
+ () => annotations.filter((annotation) => annotation.type === "context" && annotation.ubiquitous === ubiquitous),
25
+ [annotations, ubiquitous]
26
26
  );
27
- if (B(() => {
28
- n && p("context", c);
29
- }, [n]), (t == null ? void 0 : t.length) < 1)
27
+ const additionalIcons = useMemo(
28
+ () => contextAnnotations.filter((annotation) => annotation.icon || annotation.analytic_icon),
29
+ [contextAnnotations]
30
+ );
31
+ useEffect(() => {
32
+ if (disableTooltip) {
33
+ closeInfo("context", value);
34
+ }
35
+ }, [disableTooltip]);
36
+ if ((contextAnnotations == null ? void 0 : contextAnnotations.length) < 1) {
30
37
  return null;
31
- const f = [];
32
- s.length && Object.entries(O(s, (e) => e.icon || e.analytic_icon)).forEach(
33
- ([e, S]) => f.push(
34
- /* @__PURE__ */ o(
35
- "span",
36
- {
37
- ref: a,
38
- style: { display: "flex" },
39
- onMouseOver: n ? void 0 : () => C("context", a.current, c, {
40
- content: /* @__PURE__ */ o(
41
- u,
38
+ }
39
+ const icons = [];
40
+ if (additionalIcons.length) {
41
+ Object.entries(groupBy(additionalIcons, (annotation) => annotation.icon || annotation.analytic_icon)).forEach(
42
+ ([icon, _annotations]) => icons.push(
43
+ /* @__PURE__ */ jsx(
44
+ "span",
45
+ {
46
+ ref: anchorRef,
47
+ style: { display: "flex" },
48
+ onMouseOver: disableTooltip ? void 0 : () => showInfo("context", anchorRef.current, value, {
49
+ content: /* @__PURE__ */ jsx(
50
+ Stack,
51
+ {
52
+ onClick: (e) => e.stopPropagation(),
53
+ spacing: 1,
54
+ divider: /* @__PURE__ */ jsx(Divider, { flexItem: true, orientation: "horizontal" }),
55
+ children: _annotations.map((annotation) => /* @__PURE__ */ jsx(AnnotationEntry, { annotation }, JSON.stringify(annotation)))
56
+ }
57
+ )
58
+ }),
59
+ onMouseLeave: disableTooltip ? void 0 : () => closeInfo("context", value),
60
+ children: /* @__PURE__ */ jsx(
61
+ Icon,
42
62
  {
43
- onClick: (i) => i.stopPropagation(),
44
- spacing: 1,
45
- divider: /* @__PURE__ */ o(z, { flexItem: !0, orientation: "horizontal" }),
46
- children: S.map((i) => /* @__PURE__ */ o(v, { annotation: i }, JSON.stringify(i)))
63
+ icon,
64
+ fontSize: otherProps.fontSize ?? "1.25em",
65
+ style: { filter: "drop-shadow(0px 0px 1px rgb(0 0 0 / 0.4))", ...otherProps.style ?? {} },
66
+ ...otherProps
47
67
  }
48
68
  )
49
- }),
50
- onMouseLeave: n ? void 0 : () => p("context", c),
51
- children: /* @__PURE__ */ o(
52
- w,
53
- {
54
- icon: e,
55
- fontSize: r.fontSize ?? "1.25em",
56
- style: { filter: "drop-shadow(0px 0px 1px rgb(0 0 0 / 0.4))", ...r.style ?? {} },
57
- ...r
58
- }
59
- )
60
- },
61
- e
69
+ },
70
+ icon
71
+ )
62
72
  )
63
- )
64
- );
65
- const d = t.length - s.length;
66
- return d > 0 && I && f.push(
67
- /* @__PURE__ */ o(E, { disabled: !y, count: d, children: /* @__PURE__ */ o(M, { icon: "ic:baseline-newspaper", style: { zIndex: 2, ...r.style ?? {} } }) }, "extra")
68
- ), /* @__PURE__ */ o(u, { direction: "row", spacing: 1, children: f });
69
- }, G = j(R);
73
+ );
74
+ }
75
+ const additionalSize = contextAnnotations.length - additionalIcons.length;
76
+ if (additionalSize > 0 && showExtraIcon) {
77
+ icons.push(
78
+ /* @__PURE__ */ jsx(CountBadge, { disabled: !counters, count: additionalSize, children: /* @__PURE__ */ jsx(Iconified, { icon: "ic:baseline-newspaper", style: { zIndex: 2, ...otherProps.style ?? {} } }) }, "extra")
79
+ );
80
+ }
81
+ return /* @__PURE__ */ jsx(Stack, { direction: "row", spacing: 1, children: icons });
82
+ };
83
+ const ContextIcon$1 = memo(ContextIcon);
70
84
  export {
71
- G as default
85
+ ContextIcon$1 as default
72
86
  };