@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
@@ -1,29 +1,34 @@
1
- import { jsx as m } from "react/jsx-runtime";
2
- import { Badge as l } from "@mui/material";
3
- import { forwardRef as d, cloneElement as f, Children as g } from "react";
4
- const b = d(({ children: r, color: a = "primary", count: t, disabled: n, ...e }, o) => n ? f(g.only(r), { ref: o, ...e }) : /* @__PURE__ */ m(
5
- l,
6
- {
7
- ref: o,
8
- ...e,
9
- badgeContent: t < 100 ? t : "99+",
10
- color: a,
11
- sx: (i) => ({
12
- "& .MuiBadge-badge": {
13
- backgroundColor: "transparent",
14
- color: i.palette[a].main,
15
- fontWeight: "bold",
16
- right: 0,
17
- top: 0,
18
- transform: `translateY(-25%) translateX(${Math.min(Math.ceil(Math.log10(t)), 3) * 10}%)`,
19
- px: 0,
20
- fontSize: ".85rem"
21
- },
22
- pr: 1.5
23
- }),
24
- children: r
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Badge } from "@mui/material";
3
+ import { forwardRef, cloneElement, Children } from "react";
4
+ const CountBadge = forwardRef(({ children, color = "primary", count, disabled, ...props }, ref) => {
5
+ if (disabled) {
6
+ return cloneElement(Children.only(children), { ref, ...props });
25
7
  }
26
- ));
8
+ return /* @__PURE__ */ jsx(
9
+ Badge,
10
+ {
11
+ ref,
12
+ ...props,
13
+ badgeContent: count < 100 ? count : "99+",
14
+ color,
15
+ sx: (theme) => ({
16
+ "& .MuiBadge-badge": {
17
+ backgroundColor: "transparent",
18
+ color: theme.palette[color].main,
19
+ fontWeight: "bold",
20
+ right: 0,
21
+ top: 0,
22
+ transform: `translateY(-25%) translateX(${Math.min(Math.ceil(Math.log10(count)), 3) * 10}%)`,
23
+ px: 0,
24
+ fontSize: ".85rem"
25
+ },
26
+ pr: 1.5
27
+ }),
28
+ children
29
+ }
30
+ );
31
+ });
27
32
  export {
28
- b as default
33
+ CountBadge as default
29
34
  };
@@ -1,155 +1,168 @@
1
- import { jsxs as r, jsx as e } from "react/jsx-runtime";
2
- import { I as C } from "../iconify-BBckr5AQ.js";
3
- import { useTheme as F, Card as M, CardHeader as O, Stack as W, CircularProgress as B, Divider as D, CardContent as G, Grid as c, Chip as g, Typography as b, Tooltip as H, Box as N } from "@mui/material";
4
- import { ClueComponentContext as R } from "../hooks/ClueComponentContext.js";
5
- import { b as v } from "../ActionForm-DlOXqMUx.js";
6
- import _ from "../hooks/useAnnotations.js";
7
- import $ from "../hooks/useErrors.js";
8
- import J from "../icons/Assessment.js";
9
- import K from "../icons/Context.js";
10
- import L from "../icons/Opinion.js";
11
- import { ICON_MAP as y } from "../icons/iconMap.js";
12
- import Q from "../text/Frequency.js";
13
- import { u as U } from "../useClueTypeConfig-Ct9Ygter.js";
14
- import { memo as V, useState as X, useMemo as T, useCallback as Y } from "react";
15
- import { u as Z } from "../index-Dj5C04IX.js";
16
- import P from "./AnnotationEntry.js";
17
- import ii from "./actions/ExecutePopover.js";
18
- import ei from "./enrichment/EnrichPopover.js";
19
- const ti = ({
20
- type: s,
21
- value: o,
22
- classification: p,
23
- contextIcon: z = !1,
24
- counters: d = !1,
25
- hideLoading: E = !1,
26
- ...t
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import { I as Icon } from "../iconify-CXMreGTg.js";
3
+ import { useTheme, Card, CardHeader, Stack, CircularProgress, Divider, CardContent, Grid, Chip, Typography, Tooltip, Box } from "@mui/material";
4
+ import { ClueComponentContext } from "../hooks/ClueComponentContext.js";
5
+ import { b as useClueEnrichSelector } from "../ActionForm-C0aE9HUv.js";
6
+ import useAnnotations from "../hooks/useAnnotations.js";
7
+ import useErrors from "../hooks/useErrors.js";
8
+ import AssessmentIcon from "../icons/Assessment.js";
9
+ import ContextIcon from "../icons/Context.js";
10
+ import OpinionIcon from "../icons/Opinion.js";
11
+ import { ICON_MAP } from "../icons/iconMap.js";
12
+ import FrequencyText from "../text/Frequency.js";
13
+ import { u as uniq } from "../useClueTypeConfig-D2tf4-NM.js";
14
+ import { memo, useState, useMemo, useCallback } from "react";
15
+ import { u as useContextSelector } from "../index-AMfoEg_6.js";
16
+ import AnnotationEntry from "./AnnotationEntry.js";
17
+ import ExecutePopover from "./actions/ExecutePopover.js";
18
+ import EnrichPopover from "./enrichment/EnrichPopover.js";
19
+ const EnrichedCard = ({
20
+ type,
21
+ value,
22
+ classification: _classification,
23
+ contextIcon = false,
24
+ counters = false,
25
+ hideLoading = false,
26
+ ...otherProps
27
27
  }) => {
28
- const u = F(), { t: I } = Z(R, (i) => i.i18next), x = v((i) => i.defaultClassification), h = v((i) => i.enrich), [S, A] = X("all"), m = T(
29
- () => p ?? x,
30
- [p, x]
31
- ), [n, k] = _(s, o, m), a = $(o), l = { type: s, value: o, classification: m }, q = T(() => ["all", ...U(n.map((i) => i.type))], [n]), w = Y(() => h(s, o, {
32
- classification: m,
33
- timeout: 15,
34
- force: !0
35
- }), [m, h, s, o]);
36
- return /* @__PURE__ */ r(
37
- M,
28
+ const theme = useTheme();
29
+ const { t } = useContextSelector(ClueComponentContext, (ctx) => ctx.i18next);
30
+ const defaultClassification = useClueEnrichSelector((ctx) => ctx.defaultClassification);
31
+ const enrich = useClueEnrichSelector((state) => state.enrich);
32
+ const [filter, setFilter] = useState("all");
33
+ const classification = useMemo(
34
+ () => _classification ?? defaultClassification,
35
+ [_classification, defaultClassification]
36
+ );
37
+ const [annotations, loading] = useAnnotations(type, value, classification);
38
+ const errors = useErrors(value);
39
+ const enrichRequest = { type, value, classification };
40
+ const options = useMemo(() => ["all", ...uniq(annotations.map((annotation) => annotation.type))], [annotations]);
41
+ const forceEnrich = useCallback(() => {
42
+ return enrich(type, value, {
43
+ classification,
44
+ timeout: 15,
45
+ force: true
46
+ });
47
+ }, [classification, enrich, type, value]);
48
+ return /* @__PURE__ */ jsxs(
49
+ Card,
38
50
  {
39
51
  sx: [
40
52
  {
41
53
  maxWidth: "900px"
42
54
  },
43
- ...Array.isArray(t == null ? void 0 : t.sx) ? t == null ? void 0 : t.sx : [t == null ? void 0 : t.sx]
55
+ ...Array.isArray(otherProps == null ? void 0 : otherProps.sx) ? otherProps == null ? void 0 : otherProps.sx : [otherProps == null ? void 0 : otherProps.sx]
44
56
  ],
45
- ...t,
57
+ ...otherProps,
46
58
  children: [
47
- /* @__PURE__ */ e(
48
- O,
59
+ /* @__PURE__ */ jsx(
60
+ CardHeader,
49
61
  {
50
- title: /* @__PURE__ */ r(W, { direction: "row", spacing: 1, alignItems: "center", children: [
51
- /* @__PURE__ */ e(Q, { annotations: n, value: o, variant: "h6" }),
52
- /* @__PURE__ */ e(
53
- J,
62
+ title: /* @__PURE__ */ jsxs(Stack, { direction: "row", spacing: 1, alignItems: "center", children: [
63
+ /* @__PURE__ */ jsx(FrequencyText, { annotations, value, variant: "h6" }),
64
+ /* @__PURE__ */ jsx(
65
+ AssessmentIcon,
54
66
  {
55
- value: l,
56
- annotations: n,
57
- counters: d,
67
+ value: enrichRequest,
68
+ annotations,
69
+ counters,
58
70
  fontSize: "1em",
59
- disableTooltip: !0
71
+ disableTooltip: true
60
72
  }
61
73
  ),
62
- /* @__PURE__ */ e(
63
- L,
74
+ /* @__PURE__ */ jsx(
75
+ OpinionIcon,
64
76
  {
65
- value: l,
66
- annotations: n,
67
- counters: d,
77
+ value: enrichRequest,
78
+ annotations,
79
+ counters,
68
80
  fontSize: "1em",
69
- disableTooltip: !0
81
+ disableTooltip: true
70
82
  }
71
83
  ),
72
- /* @__PURE__ */ e(
73
- K,
84
+ /* @__PURE__ */ jsx(
85
+ ContextIcon,
74
86
  {
75
- value: l,
76
- annotations: n,
77
- counters: d,
78
- showExtraIcon: z,
87
+ value: enrichRequest,
88
+ annotations,
89
+ counters,
90
+ showExtraIcon: contextIcon,
79
91
  fontSize: "inherit",
80
- disableTooltip: !0
92
+ disableTooltip: true
81
93
  }
82
94
  ),
83
- k && !E && /* @__PURE__ */ e(B, { color: "primary", size: 18 }),
84
- /* @__PURE__ */ e("div", { style: { flex: 1 } }),
85
- /* @__PURE__ */ e(ei, { selector: l }),
86
- /* @__PURE__ */ e(ii, { selectors: [l] })
95
+ loading && !hideLoading && /* @__PURE__ */ jsx(CircularProgress, { color: "primary", size: 18 }),
96
+ /* @__PURE__ */ jsx("div", { style: { flex: 1 } }),
97
+ /* @__PURE__ */ jsx(EnrichPopover, { selector: enrichRequest }),
98
+ /* @__PURE__ */ jsx(ExecutePopover, { selectors: [enrichRequest] })
87
99
  ] })
88
100
  }
89
101
  ),
90
- /* @__PURE__ */ e(D, { sx: { mx: 1 } }),
91
- /* @__PURE__ */ r(G, { sx: { p: 1 }, children: [
92
- /* @__PURE__ */ r(c, { container: !0, spacing: 0.5, sx: { mb: 1 }, children: [
93
- q.map((i, f) => (
102
+ /* @__PURE__ */ jsx(Divider, { sx: { mx: 1 } }),
103
+ /* @__PURE__ */ jsxs(CardContent, { sx: { p: 1 }, children: [
104
+ /* @__PURE__ */ jsxs(Grid, { container: true, spacing: 0.5, sx: { mb: 1 }, children: [
105
+ options.map((opt, id) => (
94
106
  // eslint-disable-next-line react/no-array-index-key
95
- /* @__PURE__ */ e(c, { item: !0, children: /* @__PURE__ */ e(
96
- g,
107
+ /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
108
+ Chip,
97
109
  {
98
110
  size: "small",
99
- variant: i === S ? "filled" : "outlined",
100
- icon: y[i] && /* @__PURE__ */ e(C, { icon: y[i] }),
101
- label: /* @__PURE__ */ r(b, { variant: "caption", textTransform: "capitalize", children: [
102
- i,
111
+ variant: opt === filter ? "filled" : "outlined",
112
+ icon: ICON_MAP[opt] && /* @__PURE__ */ jsx(Icon, { icon: ICON_MAP[opt] }),
113
+ label: /* @__PURE__ */ jsxs(Typography, { variant: "caption", textTransform: "capitalize", children: [
114
+ opt,
103
115
  ":",
104
116
  " ",
105
- i === "all" ? n.length : n.filter((j) => j.type === i).length
117
+ opt === "all" ? annotations.length : annotations.filter((annotation) => annotation.type === opt).length
106
118
  ] }),
107
- onClick: () => A(i)
119
+ onClick: () => setFilter(opt)
108
120
  }
109
- ) }, f)
121
+ ) }, id)
110
122
  )),
111
- (a == null ? void 0 : a.length) > 0 && /* @__PURE__ */ e(c, { item: !0, children: /* @__PURE__ */ e(
112
- H,
123
+ (errors == null ? void 0 : errors.length) > 0 && /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
124
+ Tooltip,
113
125
  {
114
- title: /* @__PURE__ */ e("div", { onClick: (i) => i.stopPropagation(), children: a.map((i) => /* @__PURE__ */ r("div", { children: [
115
- /* @__PURE__ */ e("span", { style: { textTransform: "capitalize" }, children: i.source.replace(/-/g, " ") }),
126
+ title: /* @__PURE__ */ jsx("div", { onClick: (e) => e.stopPropagation(), children: errors.map((err) => /* @__PURE__ */ jsxs("div", { children: [
127
+ /* @__PURE__ */ jsx("span", { style: { textTransform: "capitalize" }, children: err.source.replace(/-/g, " ") }),
116
128
  ":",
117
129
  " ",
118
- i.message
119
- ] }, i.source)) }),
120
- children: /* @__PURE__ */ e(
121
- g,
130
+ err.message
131
+ ] }, err.source)) }),
132
+ children: /* @__PURE__ */ jsx(
133
+ Chip,
122
134
  {
123
135
  size: "small",
124
136
  variant: "outlined",
125
- icon: /* @__PURE__ */ e(
126
- C,
137
+ icon: /* @__PURE__ */ jsx(
138
+ Icon,
127
139
  {
128
140
  icon: "material-symbols:timer-outline",
129
- color: u.palette.error.main,
141
+ color: theme.palette.error.main,
130
142
  style: { filter: "drop-shadow(0px 0px 1px rgb(0 0 0 / 0.4))" }
131
143
  }
132
144
  ),
133
- label: /* @__PURE__ */ r(b, { variant: "caption", textTransform: "capitalize", children: [
134
- I("annotation.failed"),
145
+ label: /* @__PURE__ */ jsxs(Typography, { variant: "caption", textTransform: "capitalize", children: [
146
+ t("annotation.failed"),
135
147
  ": ",
136
- a.length
148
+ errors.length
137
149
  ] }),
138
- onClick: w
150
+ onClick: forceEnrich
139
151
  }
140
152
  )
141
153
  }
142
154
  ) })
143
155
  ] }),
144
- /* @__PURE__ */ e(c, { container: !0, spacing: 1, alignItems: "stretch", children: n.map((i, f) => (
156
+ /* @__PURE__ */ jsx(Grid, { container: true, spacing: 1, alignItems: "stretch", children: annotations.map((annotation, id) => (
145
157
  // eslint-disable-next-line react/no-array-index-key
146
- /* @__PURE__ */ e(c, { item: !0, xs: 6, minWidth: "300px", children: /* @__PURE__ */ e(N, { sx: { border: `thin solid ${u.palette.divider}`, p: 1, height: "100%" }, children: /* @__PURE__ */ e(P, { annotation: i }) }) }, f)
158
+ /* @__PURE__ */ jsx(Grid, { item: true, xs: 6, minWidth: "300px", children: /* @__PURE__ */ jsx(Box, { sx: { border: `thin solid ${theme.palette.divider}`, p: 1, height: "100%" }, children: /* @__PURE__ */ jsx(AnnotationEntry, { annotation }) }) }, id)
147
159
  )) })
148
160
  ] })
149
161
  ]
150
162
  }
151
163
  );
152
- }, yi = V(ti);
164
+ };
165
+ const EnrichedCard_default = memo(EnrichedCard);
153
166
  export {
154
- yi as default
167
+ EnrichedCard_default as default
155
168
  };
@@ -1,145 +1,170 @@
1
- import { jsx as e, jsxs as O } from "react/jsx-runtime";
2
- import { Chip as B, Tooltip as G, Box as _, Stack as H, CircularProgress as J } from "@mui/material";
3
- import K from "./display/icons/Iconified.js";
4
- import { ClueComponentContext as L } from "../hooks/ClueComponentContext.js";
5
- import { ClueGroupContext as N } from "../hooks/ClueGroupContext.js";
6
- import { C as E } from "../AnnotationPreview-jzZvkCxJ.js";
7
- import { b as Q } from "../ActionForm-DlOXqMUx.js";
8
- import U from "../hooks/useAnnotations.js";
9
- import V from "../icons/Action.js";
10
- import v from "../icons/Assessment.js";
11
- import q from "../icons/Context.js";
12
- import z from "../icons/Opinion.js";
13
- import W from "../text/Frequency.js";
14
- import X, { useRef as Y, useMemo as u, useCallback as Z, useEffect as $, memo as F } from "react";
15
- import { u as m } from "../index-Dj5C04IX.js";
16
- const D = X.memo(
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { Chip, Tooltip, Box, Stack, CircularProgress } from "@mui/material";
3
+ import Iconified from "./display/icons/Iconified.js";
4
+ import { ClueComponentContext } from "../hooks/ClueComponentContext.js";
5
+ import { ClueGroupContext } from "../hooks/ClueGroupContext.js";
6
+ import { C as CluePopupContext } from "../AnnotationPreview-CLMVD6Ec.js";
7
+ import { b as useClueEnrichSelector } from "../ActionForm-C0aE9HUv.js";
8
+ import useAnnotations from "../hooks/useAnnotations.js";
9
+ import ActionIcon from "../icons/Action.js";
10
+ import AssessmentIcon from "../icons/Assessment.js";
11
+ import ContextIcon from "../icons/Context.js";
12
+ import OpinionIcon from "../icons/Opinion.js";
13
+ import FrequencyText from "../text/Frequency.js";
14
+ import React__default, { useRef, useMemo, useCallback, useEffect, memo } from "react";
15
+ import { u as useContextSelector } from "../index-AMfoEg_6.js";
16
+ const EnrichedChip = React__default.memo(
17
17
  ({
18
- type: C,
19
- value: i,
20
- classification: x,
21
- contextIcon: b = !1,
22
- counters: f = !1,
23
- hideDetails: h = !1,
24
- hideLoading: A = !1,
25
- forceDetails: r = !1,
26
- setForceDetails: c = null,
27
- useDetailsIcon: s = !1,
28
- skipEnrichment: R = !1,
29
- slotProps: a = {},
30
- ...l
18
+ type: _type,
19
+ value,
20
+ classification: _classification,
21
+ contextIcon = false,
22
+ counters = false,
23
+ hideDetails = false,
24
+ hideLoading = false,
25
+ forceDetails = false,
26
+ setForceDetails = null,
27
+ useDetailsIcon = false,
28
+ skipEnrichment = false,
29
+ slotProps = {},
30
+ ...otherProps
31
31
  }) => {
32
- const { t: j } = m(L, (o) => o.i18next), d = Y(), k = m(N, (o) => o == null ? void 0 : o.type), y = Q((o) => o.defaultClassification), n = u(() => C ?? k, [C, k]), t = u(
33
- () => x ?? y,
34
- [x, y]
32
+ const { t } = useContextSelector(ClueComponentContext, (ctx) => ctx.i18next);
33
+ const anchorRef = useRef();
34
+ const groupType = useContextSelector(ClueGroupContext, (ctx) => ctx == null ? void 0 : ctx.type);
35
+ const defaultClassification = useClueEnrichSelector((ctx) => ctx.defaultClassification);
36
+ const type = useMemo(() => _type ?? groupType, [_type, groupType]);
37
+ const classification = useMemo(
38
+ () => _classification ?? defaultClassification,
39
+ [_classification, defaultClassification]
35
40
  );
36
- if (!n)
41
+ if (!type) {
37
42
  throw new Error("Type was not provided as a prop, and component is not used in a group context.");
38
- const [p, T] = U(n, i, t, { skipEnrichment: R }), S = m(E, (o) => o.showInfo), M = m(E, (o) => o.closeInfo), w = Z(() => {
39
- const o = {};
40
- return c && (o.onClose = () => c(!1)), a != null && a.popover && (o.popoverProps = a.popover), o;
41
- }, [c, a.popover]), g = u(
42
- () => !h || s ? (o) => {
43
- var I;
44
- S("details", d.current, { type: n, value: i, classification: t }, w()), (I = l.onClick) == null || I.call(l, o), o.stopPropagation(), o.preventDefault();
45
- } : l.onClick,
43
+ }
44
+ const [annotations, loading] = useAnnotations(type, value, classification, { skipEnrichment });
45
+ const showInfo = useContextSelector(CluePopupContext, (ctx) => ctx.showInfo);
46
+ const closeInfo = useContextSelector(CluePopupContext, (ctx) => ctx.closeInfo);
47
+ const buildOptions = useCallback(() => {
48
+ const options = {};
49
+ if (setForceDetails) {
50
+ options.onClose = () => setForceDetails(false);
51
+ }
52
+ if (slotProps == null ? void 0 : slotProps.popover) {
53
+ options.popoverProps = slotProps.popover;
54
+ }
55
+ return options;
56
+ }, [setForceDetails, slotProps.popover]);
57
+ const clicker = useMemo(
58
+ () => !hideDetails || useDetailsIcon ? (e) => {
59
+ var _a;
60
+ showInfo("details", anchorRef.current, { type, value, classification }, buildOptions());
61
+ (_a = otherProps.onClick) == null ? void 0 : _a.call(otherProps, e);
62
+ e.stopPropagation();
63
+ e.preventDefault();
64
+ } : otherProps.onClick,
46
65
  // eslint-disable-next-line react-hooks/exhaustive-deps
47
- [h, s, l, n, i, t]
66
+ [hideDetails, useDetailsIcon, otherProps, type, value, classification]
48
67
  );
49
- return $(() => {
50
- r ? S("details", d.current, { type: n, value: i, classification: t }, w()) : M("details", {
51
- type: n,
52
- value: i,
53
- classification: t
54
- });
55
- }, [t, r, n, i]), /* @__PURE__ */ e(
56
- B,
68
+ useEffect(() => {
69
+ if (forceDetails) {
70
+ showInfo("details", anchorRef.current, { type, value, classification }, buildOptions());
71
+ } else {
72
+ closeInfo("details", {
73
+ type,
74
+ value,
75
+ classification
76
+ });
77
+ }
78
+ }, [classification, forceDetails, type, value]);
79
+ return /* @__PURE__ */ jsx(
80
+ Chip,
57
81
  {
58
- ...l,
59
- ref: d,
60
- variant: l.variant || "outlined",
82
+ ...otherProps,
83
+ ref: anchorRef,
84
+ variant: otherProps.variant || "outlined",
61
85
  sx: {
62
- height: l.size !== "small" ? "40px" : "unset",
86
+ height: otherProps.size !== "small" ? "40px" : "unset",
63
87
  "& .MuiChip-label": { overflow: "visible" },
64
- ...l.sx ?? {}
88
+ ...otherProps.sx ?? {}
65
89
  },
66
- label: /* @__PURE__ */ O(H, { direction: "row", spacing: 1, alignItems: "center", children: [
67
- /* @__PURE__ */ e(
68
- v,
90
+ label: /* @__PURE__ */ jsxs(Stack, { direction: "row", spacing: 1, alignItems: "center", children: [
91
+ /* @__PURE__ */ jsx(
92
+ AssessmentIcon,
69
93
  {
70
- ubiquitous: !0,
71
- value: { type: n, value: i, classification: t },
72
- annotations: p,
73
- counters: f,
74
- disableTooltip: r,
94
+ ubiquitous: true,
95
+ value: { type, value, classification },
96
+ annotations,
97
+ counters,
98
+ disableTooltip: forceDetails,
75
99
  style: { flexShrink: 0 }
76
100
  }
77
101
  ),
78
- /* @__PURE__ */ e(
79
- z,
102
+ /* @__PURE__ */ jsx(
103
+ OpinionIcon,
80
104
  {
81
- ubiquitous: !0,
82
- value: { type: n, value: i, classification: t },
83
- annotations: p,
84
- counters: f,
85
- disableTooltip: r,
105
+ ubiquitous: true,
106
+ value: { type, value, classification },
107
+ annotations,
108
+ counters,
109
+ disableTooltip: forceDetails,
86
110
  style: { flexShrink: 0 }
87
111
  }
88
112
  ),
89
- /* @__PURE__ */ e(
90
- q,
113
+ /* @__PURE__ */ jsx(
114
+ ContextIcon,
91
115
  {
92
- ubiquitous: !0,
93
- value: { type: n, value: i, classification: t },
94
- annotations: p,
95
- counters: f,
96
- showExtraIcon: b,
97
- disableTooltip: r,
116
+ ubiquitous: true,
117
+ value: { type, value, classification },
118
+ annotations,
119
+ counters,
120
+ showExtraIcon: contextIcon,
121
+ disableTooltip: forceDetails,
98
122
  style: { flexShrink: 0 }
99
123
  }
100
124
  ),
101
- l.label ?? /* @__PURE__ */ e(W, { fontSize: "inherit", annotations: p, value: i }),
102
- /* @__PURE__ */ e(
103
- v,
125
+ otherProps.label ?? /* @__PURE__ */ jsx(FrequencyText, { fontSize: "inherit", annotations, value }),
126
+ /* @__PURE__ */ jsx(
127
+ AssessmentIcon,
104
128
  {
105
- value: { type: n, value: i, classification: t },
106
- annotations: p,
107
- counters: f,
108
- disableTooltip: r,
129
+ value: { type, value, classification },
130
+ annotations,
131
+ counters,
132
+ disableTooltip: forceDetails,
109
133
  style: { flexShrink: 0 }
110
134
  }
111
135
  ),
112
- /* @__PURE__ */ e(
113
- z,
136
+ /* @__PURE__ */ jsx(
137
+ OpinionIcon,
114
138
  {
115
- value: { type: n, value: i, classification: t },
116
- annotations: p,
117
- counters: f,
118
- disableTooltip: r,
139
+ value: { type, value, classification },
140
+ annotations,
141
+ counters,
142
+ disableTooltip: forceDetails,
119
143
  style: { flexShrink: 0 }
120
144
  }
121
145
  ),
122
- /* @__PURE__ */ e(
123
- q,
146
+ /* @__PURE__ */ jsx(
147
+ ContextIcon,
124
148
  {
125
- value: { type: n, value: i, classification: t },
126
- annotations: p,
127
- counters: f,
128
- showExtraIcon: b,
129
- disableTooltip: r,
149
+ value: { type, value, classification },
150
+ annotations,
151
+ counters,
152
+ showExtraIcon: contextIcon,
153
+ disableTooltip: forceDetails,
130
154
  style: { flexShrink: 0 }
131
155
  }
132
156
  ),
133
- /* @__PURE__ */ e(V, { counters: f, value: { type: n, value: i, classification: t }, disableTooltip: r }),
134
- T && !A && /* @__PURE__ */ e(J, { color: "primary", size: 16 })
157
+ /* @__PURE__ */ jsx(ActionIcon, { counters, value: { type, value, classification }, disableTooltip: forceDetails }),
158
+ loading && !hideLoading && /* @__PURE__ */ jsx(CircularProgress, { color: "primary", size: 16 })
135
159
  ] }),
136
- onClick: s ? void 0 : g,
137
- onDelete: !T && s ? g : void 0,
138
- deleteIcon: s ? /* @__PURE__ */ e(G, { title: j("details.open"), children: /* @__PURE__ */ e(_, { component: "span", sx: { pr: 1 }, children: /* @__PURE__ */ e(K, { icon: "ic:outline-info" }) }) }) : null
160
+ onClick: !useDetailsIcon ? clicker : void 0,
161
+ onDelete: !loading && useDetailsIcon ? clicker : void 0,
162
+ deleteIcon: useDetailsIcon ? /* @__PURE__ */ jsx(Tooltip, { title: t("details.open"), children: /* @__PURE__ */ jsx(Box, { component: "span", sx: { pr: 1 }, children: /* @__PURE__ */ jsx(Iconified, { icon: "ic:outline-info" }) }) }) : null
139
163
  }
140
164
  );
141
165
  }
142
- ), Co = F(D);
166
+ );
167
+ const EnrichedChip_default = memo(EnrichedChip);
143
168
  export {
144
- Co as default
169
+ EnrichedChip_default as default
145
170
  };