@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/Opinion.js CHANGED
@@ -1,107 +1,125 @@
1
- import { jsxs as x, Fragment as R, jsx as s } from "react/jsx-runtime";
2
- import { I as u } from "../iconify-BBckr5AQ.js";
3
- import { useTheme as S, Stack as b, Chip as y, Divider as j, Grid as I } from "@mui/material";
4
- import q from "../components/CountBadge.js";
5
- import { C as v } from "../AnnotationPreview-jzZvkCxJ.js";
6
- import { g as B } from "../groupBy-br8xmD2R.js";
7
- import { s as E } from "../sortBy-DY2JBf9n.js";
8
- import { s as M } from "../sumBy-DuMASLPd.js";
9
- import { memo as D, useRef as F, useMemo as a, useCallback as G, useEffect as K } from "react";
10
- import { u as C } from "../index-Dj5C04IX.js";
11
- const w = { malicious: 3, suspicious: 2, obscure: 1, benign: 0 }, L = ({ annotations: m, value: l, counters: z = !0, disableTooltip: c = !1, ubiquitous: p = !1, ...f }) => {
12
- const i = S(), $ = C(v, (e) => e.showInfo), g = C(v, (e) => e.closeInfo), h = F(), r = a(
13
- () => m.filter((e) => e.type === "opinion" && e.ubiquitous === p),
14
- [m, p]
15
- ), t = a(
16
- () => Object.entries(B(r, "value")).map(([e, o]) => [e, M(o, "quantity")]).sort(([e, o], [k, d]) => d !== o ? d - o : (w[k] ?? -1) - (w[e] ?? -1)),
17
- [r]
18
- ), n = G(
19
- (e) => e === "benign" ? "mdi:shield-check" : e === "suspicious" ? "mdi:warning-outline" : e === "obscure" ? "bi:eye-slash-fill" : "mdi:warning-decagram",
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 } from "@mui/material";
4
+ import CountBadge from "../components/CountBadge.js";
5
+ import { C as CluePopupContext } from "../AnnotationPreview-CLMVD6Ec.js";
6
+ import chain from "../utils/chain.js";
7
+ import { g as groupBy } from "../groupBy-ChDRT7uy.js";
8
+ import { s as sortBy } from "../sortBy-C7mGPI_D.js";
9
+ import { s as sumBy } from "../sumBy-CGALjmwQ.js";
10
+ import { memo, useRef, useMemo, useCallback, useEffect } from "react";
11
+ import { u as useContextSelector } from "../index-AMfoEg_6.js";
12
+ const OpinionIcon = ({ 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 opinionAnnotations = useMemo(
18
+ () => annotations.filter((annotation) => annotation.type === "opinion" && annotation.ubiquitous === ubiquitous),
19
+ [annotations, ubiquitous]
20
+ );
21
+ const sortedOpinions = useMemo(
22
+ () => chain(
23
+ Object.entries(groupBy(opinionAnnotations, "value")).map(([_value, _annotations]) => [
24
+ _value,
25
+ sumBy(_annotations, "quantity")
26
+ ])
27
+ ).sortBy(([__, count]) => count).reverse().value(),
28
+ [opinionAnnotations]
29
+ );
30
+ const icon = useCallback(
31
+ (_opinion) => _opinion === "benign" ? "mdi:shield-check" : _opinion === "suspicious" ? "mdi:warning-outline" : _opinion === "obscure" ? "bi:eye-slash-fill" : "mdi:warning-decagram",
20
32
  []
21
33
  );
22
- K(() => {
23
- c && g("opinion", l);
24
- }, [c]);
25
- const O = a(
26
- () => /* @__PURE__ */ x(b, { spacing: 1, onClick: (e) => e.stopPropagation(), children: [
27
- r.length > 1 && /* @__PURE__ */ x(R, { children: [
28
- /* @__PURE__ */ s(b, { direction: "row", spacing: 1, children: t.map(([e, o]) => /* @__PURE__ */ s(
29
- y,
34
+ useEffect(() => {
35
+ if (disableTooltip) {
36
+ closeInfo("opinion", value);
37
+ }
38
+ }, [disableTooltip]);
39
+ const tooltipContent = useMemo(
40
+ () => /* @__PURE__ */ jsxs(Stack, { spacing: 1, onClick: (e) => e.stopPropagation(), children: [
41
+ opinionAnnotations.length > 1 && /* @__PURE__ */ jsxs(Fragment, { children: [
42
+ /* @__PURE__ */ jsx(Stack, { direction: "row", children: sortedOpinions.map(([type, count]) => /* @__PURE__ */ jsx(
43
+ Chip,
30
44
  {
31
45
  size: "small",
32
46
  variant: "outlined",
33
- label: `${e}: ${o}`,
34
- icon: /* @__PURE__ */ s(u, { icon: n(e) }),
47
+ label: `${type}: ${count}`,
48
+ icon: /* @__PURE__ */ jsx(Icon, { icon: icon(type) }),
35
49
  sx: { textTransform: "capitalize" },
36
50
  color: {
37
51
  benign: "success",
38
52
  suspicious: "warning",
39
53
  obscure: "error",
40
54
  malicious: "error"
41
- }[e]
55
+ }[type]
42
56
  },
43
- e
57
+ type
44
58
  )) }),
45
- /* @__PURE__ */ s(j, { orientation: "horizontal", flexItem: !0 })
59
+ /* @__PURE__ */ jsx(Divider, { orientation: "horizontal", flexItem: true })
46
60
  ] }),
47
- /* @__PURE__ */ s(
48
- I,
61
+ /* @__PURE__ */ jsx(
62
+ Grid,
49
63
  {
50
64
  sx: {
51
- mt: r.length < 2 && `${i.spacing(-0.5)} !important`,
52
- ml: `${i.spacing(-0.5)} !important`
65
+ mt: opinionAnnotations.length < 2 && `${theme.spacing(-0.5)} !important`,
66
+ ml: `${theme.spacing(-0.5)} !important`
53
67
  },
54
- container: !0,
68
+ container: true,
55
69
  spacing: 0.5,
56
70
  maxWidth: "500px",
57
- children: E(r, "value").map((e) => /* @__PURE__ */ s(I, { item: !0, children: /* @__PURE__ */ s(
58
- y,
71
+ children: sortBy(opinionAnnotations, "value").map((annotation) => /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
72
+ Chip,
59
73
  {
60
74
  size: "small",
61
75
  variant: "outlined",
62
- label: (e.analytic ?? e.author) + (e.quantity > 1 ? ` (x${e.quantity})` : ""),
63
- icon: /* @__PURE__ */ s(u, { icon: n(e.value) }),
76
+ label: (annotation.analytic ?? annotation.author) + (annotation.quantity > 1 ? ` (x${annotation.quantity})` : ""),
77
+ icon: /* @__PURE__ */ jsx(Icon, { icon: icon(annotation.value) }),
64
78
  color: {
65
79
  benign: "success",
66
80
  suspicious: "warning",
67
81
  obscure: "error",
68
82
  malicious: "error"
69
- }[e.value]
83
+ }[annotation.value]
70
84
  }
71
- ) }, (e.analytic ?? e.author) + e.value))
85
+ ) }, (annotation.analytic ?? annotation.author) + annotation.value))
72
86
  }
73
87
  )
74
88
  ] }),
75
- [n, r, t, i]
89
+ [icon, opinionAnnotations, sortedOpinions, theme]
76
90
  );
77
- return (r == null ? void 0 : r.length) < 1 ? null : /* @__PURE__ */ s(
91
+ if ((opinionAnnotations == null ? void 0 : opinionAnnotations.length) < 1) {
92
+ return null;
93
+ }
94
+ return /* @__PURE__ */ jsx(
78
95
  "span",
79
96
  {
80
- ref: h,
97
+ ref: anchorRef,
81
98
  style: { display: "flex" },
82
- onMouseOver: c ? void 0 : () => $("assessment", h.current, l, { content: O }),
83
- onMouseLeave: c ? void 0 : () => g("assessment", l),
84
- children: /* @__PURE__ */ s(q, { disabled: !z, count: t[0][1], children: /* @__PURE__ */ s(
85
- u,
99
+ onMouseOver: disableTooltip ? void 0 : () => showInfo("assessment", anchorRef.current, value, { content: tooltipContent }),
100
+ onMouseLeave: disableTooltip ? void 0 : () => closeInfo("assessment", value),
101
+ children: /* @__PURE__ */ jsx(CountBadge, { disabled: !counters, count: sortedOpinions[0][1], children: /* @__PURE__ */ jsx(
102
+ Icon,
86
103
  {
87
104
  fontSize: "1.25em",
88
- ...f,
89
- icon: n(t[0][0]),
105
+ ...otherProps,
106
+ icon: icon(sortedOpinions[0][0]),
90
107
  color: {
91
- benign: i.palette.success.light,
92
- suspicious: i.palette.warning.light,
93
- obscure: i.palette.error.light,
94
- malicious: i.palette.error.light
95
- }[t[0][0]],
108
+ benign: theme.palette.success.light,
109
+ suspicious: theme.palette.warning.light,
110
+ obscure: theme.palette.error.light,
111
+ malicious: theme.palette.error.light
112
+ }[sortedOpinions[0][0]],
96
113
  style: {
97
114
  zIndex: 2,
98
- ...f.style ?? {}
115
+ ...otherProps.style ?? {}
99
116
  }
100
117
  }
101
118
  ) })
102
119
  }
103
120
  );
104
- }, X = D(L);
121
+ };
122
+ const OpinionIcon$1 = memo(OpinionIcon);
105
123
  export {
106
- X as default
124
+ OpinionIcon$1 as default
107
125
  };
package/icons/iconMap.js CHANGED
@@ -1,4 +1,4 @@
1
- const o = {
1
+ const ICON_MAP = {
2
2
  context: "material-symbols:contextual-token",
3
3
  opinion: "material-symbols:how-to-vote-rounded",
4
4
  mitigation: "material-symbols:shield-locked-rounded",
@@ -6,5 +6,5 @@ const o = {
6
6
  assessment: "material-symbols:menu-book"
7
7
  };
8
8
  export {
9
- o as ICON_MAP
9
+ ICON_MAP
10
10
  };
@@ -0,0 +1,6 @@
1
+ function identity(value) {
2
+ return value;
3
+ }
4
+ export {
5
+ identity as i
6
+ };