@cccsaurora/howler-ui 2.18.0-dev.710 → 2.18.0-dev.722

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 (251) hide show
  1. package/api/index.d.ts +0 -2
  2. package/api/index.js +2 -4
  3. package/api/search/facet/hit.d.ts +3 -1
  4. package/api/search/facet/index.d.ts +1 -3
  5. package/api/search/index.d.ts +1 -2
  6. package/api/search/index.js +1 -2
  7. package/commons/components/leftnav/LeftNavDrawer.js +1 -1
  8. package/components/app/App.js +7 -39
  9. package/components/app/hooks/useMatchers.js +2 -2
  10. package/components/app/hooks/useMatchers.test.js +22 -22
  11. package/components/app/hooks/useTitle.js +3 -3
  12. package/components/app/providers/FavouritesProvider.js +2 -2
  13. package/components/app/providers/HitProvider.d.ts +22 -0
  14. package/components/app/providers/{RecordProvider.js → HitProvider.js} +41 -41
  15. package/components/app/providers/{RecordSearchProvider.d.ts → HitSearchProvider.d.ts} +6 -6
  16. package/components/app/providers/{RecordSearchProvider.js → HitSearchProvider.js} +17 -12
  17. package/components/app/providers/{RecordSearchProvider.test.js → HitSearchProvider.test.js} +70 -51
  18. package/components/app/providers/ModalProvider.d.ts +0 -1
  19. package/components/app/providers/ParameterProvider.d.ts +2 -9
  20. package/components/app/providers/ParameterProvider.js +240 -165
  21. package/components/app/providers/ParameterProvider.test.js +14 -307
  22. package/components/elements/PluginTypography.d.ts +1 -2
  23. package/components/elements/PluginTypography.js +2 -3
  24. package/components/elements/UserList.d.ts +2 -5
  25. package/components/elements/UserList.js +5 -14
  26. package/components/elements/addons/search/phrase/Phrase.js +1 -1
  27. package/components/elements/display/ChipPopper.d.ts +1 -1
  28. package/components/elements/display/HowlerCard.js +1 -1
  29. package/components/elements/display/Modal.js +0 -2
  30. package/components/elements/display/icons/BundleButton.d.ts +6 -0
  31. package/components/elements/display/icons/BundleButton.js +32 -0
  32. package/components/elements/hit/HitActions.js +4 -4
  33. package/components/elements/hit/HitBanner.js +48 -28
  34. package/components/elements/hit/HitCard.js +5 -5
  35. package/components/elements/{record/RecordComments.d.ts → hit/HitComments.d.ts} +4 -5
  36. package/components/elements/{record/RecordComments.js → hit/HitComments.js} +28 -29
  37. package/components/elements/{ObjectDetails.js → hit/HitDetails.js} +17 -17
  38. package/components/elements/hit/HitLabels.js +2 -2
  39. package/components/elements/hit/{HitPreview.d.ts → HitQuickSearch.d.ts} +3 -3
  40. package/components/elements/hit/{HitPreview.js → HitQuickSearch.js} +4 -10
  41. package/components/elements/hit/HitRelated.d.ts +6 -0
  42. package/components/elements/hit/HitRelated.js +7 -0
  43. package/components/elements/hit/HitSummary.d.ts +1 -2
  44. package/components/elements/hit/HitSummary.js +5 -6
  45. package/components/elements/{record/RecordWorklog.d.ts → hit/HitWorklog.d.ts} +3 -4
  46. package/components/elements/{record/RecordWorklog.js → hit/HitWorklog.js} +13 -15
  47. package/components/elements/hit/aggregate/HitGraph.js +8 -8
  48. package/components/elements/hit/outlines/DefaultOutline.js +1 -1
  49. package/components/elements/view/ViewTitle.d.ts +0 -1
  50. package/components/elements/view/ViewTitle.js +2 -9
  51. package/components/hooks/useHitActions.d.ts +1 -1
  52. package/components/hooks/useHitActions.js +4 -4
  53. package/components/hooks/{useRecordSelection.d.ts → useHitSelection.d.ts} +2 -2
  54. package/components/hooks/{useRecordSelection.js → useHitSelection.js} +33 -12
  55. package/components/hooks/useMyPreferences.js +1 -10
  56. package/components/hooks/useMySearch.js +2 -2
  57. package/components/hooks/useMySitemap.js +1 -4
  58. package/components/hooks/useMyTheme.js +2 -9
  59. package/components/hooks/useParamState.test.js +4 -3
  60. package/components/routes/action/edit/ActionEditor.js +2 -2
  61. package/components/routes/action/view/ActionSearch.js +1 -1
  62. package/components/routes/advanced/QueryBuilder.js +1 -1
  63. package/components/routes/advanced/QueryEditor.js +3 -3
  64. package/components/routes/advanced/historyCompletionProvider.js +3 -3
  65. package/components/routes/analytics/AnalyticDetails.js +2 -2
  66. package/components/routes/analytics/AnalyticSearch.js +1 -1
  67. package/components/routes/dossiers/DossierEditor.js +2 -2
  68. package/components/routes/dossiers/DossierEditor.test.js +1 -1
  69. package/components/routes/help/ApiDocumentation.js +1 -1
  70. package/components/routes/help/BundleDocumentation.d.ts +3 -0
  71. package/components/routes/help/BundleDocumentation.js +12 -0
  72. package/components/routes/help/HitBannerDocumentation.js +0 -1
  73. package/components/routes/help/HitDocumentation.js +3 -1
  74. package/components/routes/help/markdown/en/bundles.md.js +1 -0
  75. package/components/routes/help/markdown/fr/bundles.md.js +1 -0
  76. package/components/routes/hits/search/BundleParentMenu.d.ts +6 -0
  77. package/components/routes/hits/search/BundleParentMenu.js +32 -0
  78. package/components/routes/hits/search/BundleScroller.d.ts +2 -0
  79. package/components/routes/hits/search/BundleScroller.js +6 -0
  80. package/components/routes/hits/search/{RecordBrowser.js → HitBrowser.js} +9 -9
  81. package/components/{elements/record/RecordContextMenu.d.ts → routes/hits/search/HitContextMenu.d.ts} +3 -3
  82. package/components/routes/hits/search/HitContextMenu.js +227 -0
  83. package/components/{elements/record/RecordContextMenu.test.js → routes/hits/search/HitContextMenu.test.js} +39 -94
  84. package/components/routes/hits/search/{RecordQuery.d.ts → HitQuery.d.ts} +2 -2
  85. package/components/routes/hits/search/{RecordQuery.js → HitQuery.js} +6 -6
  86. package/components/routes/hits/search/InformationPane.d.ts +0 -1
  87. package/components/routes/hits/search/InformationPane.js +60 -47
  88. package/components/routes/hits/search/LayoutSettings.js +3 -3
  89. package/components/routes/hits/search/QuerySettings.js +1 -2
  90. package/components/routes/hits/search/QuerySettings.test.js +9 -14
  91. package/components/routes/hits/search/SearchPane.js +49 -26
  92. package/components/routes/hits/search/ViewLink.js +3 -3
  93. package/components/routes/hits/search/ViewLink.test.js +8 -8
  94. package/components/routes/hits/search/grid/AddColumnModal.js +4 -5
  95. package/components/routes/hits/search/grid/EnhancedCell.d.ts +1 -2
  96. package/components/routes/hits/search/grid/EnhancedCell.js +2 -2
  97. package/components/routes/hits/search/grid/HitGrid.js +18 -20
  98. package/components/routes/hits/search/grid/{RecordRow.d.ts → HitRow.d.ts} +2 -3
  99. package/components/routes/hits/search/grid/{RecordRow.js → HitRow.js} +8 -10
  100. package/components/routes/hits/view/HitViewer.js +13 -12
  101. package/components/routes/home/ViewCard.js +41 -47
  102. package/components/{elements/MarkdownEditor.js → routes/overviews/OverviewEditor.js} +3 -3
  103. package/components/routes/overviews/OverviewViewer.js +2 -2
  104. package/components/routes/views/ViewComposer.js +19 -46
  105. package/locales/en/translation.json +3 -87
  106. package/locales/fr/translation.json +3 -85
  107. package/models/WithMetadata.d.ts +1 -2
  108. package/models/entities/generated/{ThreatEnrichment.d.ts → Enrichment.d.ts} +1 -1
  109. package/models/entities/generated/Hit.d.ts +0 -1
  110. package/models/entities/generated/Howler.d.ts +4 -0
  111. package/models/entities/generated/Rule.d.ts +10 -2
  112. package/models/entities/generated/Threat.d.ts +2 -2
  113. package/models/entities/generated/View.d.ts +0 -1
  114. package/package.json +1 -18
  115. package/plugins/clue/components/ClueTypography.js +2 -2
  116. package/plugins/clue/utils.d.ts +1 -2
  117. package/tests/server-handlers.js +1 -6
  118. package/tests/utils.d.ts +0 -4
  119. package/tests/utils.js +0 -20
  120. package/utils/constants.d.ts +3 -3
  121. package/utils/hitFunctions.d.ts +1 -2
  122. package/utils/hitFunctions.js +4 -4
  123. package/utils/viewUtils.js +0 -3
  124. package/api/search/case.d.ts +0 -4
  125. package/api/search/case.js +0 -8
  126. package/api/v2/case/index.d.ts +0 -8
  127. package/api/v2/case/index.js +0 -20
  128. package/api/v2/case/items.d.ts +0 -6
  129. package/api/v2/case/items.js +0 -18
  130. package/api/v2/index.d.ts +0 -4
  131. package/api/v2/index.js +0 -6
  132. package/api/v2/search/facet.d.ts +0 -3
  133. package/api/v2/search/facet.js +0 -12
  134. package/api/v2/search/index.d.ts +0 -5
  135. package/api/v2/search/index.js +0 -24
  136. package/components/app/providers/RecordProvider.d.ts +0 -23
  137. package/components/elements/ContextMenu.d.ts +0 -56
  138. package/components/elements/ContextMenu.js +0 -109
  139. package/components/elements/ContextMenu.test.js +0 -215
  140. package/components/elements/ObjectDetails.d.ts +0 -6
  141. package/components/elements/case/CaseCard.d.ts +0 -12
  142. package/components/elements/case/CaseCard.js +0 -42
  143. package/components/elements/case/CasePreview.d.ts +0 -6
  144. package/components/elements/case/CasePreview.js +0 -17
  145. package/components/elements/case/StatusIcon.d.ts +0 -5
  146. package/components/elements/case/StatusIcon.js +0 -13
  147. package/components/elements/hit/elements/AnalyticLink.d.ts +0 -8
  148. package/components/elements/hit/elements/AnalyticLink.js +0 -22
  149. package/components/elements/hit/related/RelatedRecords.js +0 -63
  150. package/components/elements/observable/ObservableCard.d.ts +0 -6
  151. package/components/elements/observable/ObservableCard.js +0 -22
  152. package/components/elements/observable/ObservablePreview.d.ts +0 -6
  153. package/components/elements/observable/ObservablePreview.js +0 -12
  154. package/components/elements/record/RecordContextMenu.js +0 -247
  155. package/components/elements/record/RecordContextMenu.test.d.ts +0 -1
  156. package/components/elements/record/RecordRelated.d.ts +0 -7
  157. package/components/elements/record/RecordRelated.js +0 -34
  158. package/components/hooks/useRelatedRecords.d.ts +0 -13
  159. package/components/hooks/useRelatedRecords.js +0 -32
  160. package/components/routes/cases/CaseViewer.d.ts +0 -2
  161. package/components/routes/cases/CaseViewer.js +0 -22
  162. package/components/routes/cases/Cases.d.ts +0 -2
  163. package/components/routes/cases/Cases.js +0 -101
  164. package/components/routes/cases/constants.d.ts +0 -5
  165. package/components/routes/cases/constants.js +0 -5
  166. package/components/routes/cases/detail/AlertPanel.d.ts +0 -6
  167. package/components/routes/cases/detail/AlertPanel.js +0 -33
  168. package/components/routes/cases/detail/CaseAssets.d.ts +0 -11
  169. package/components/routes/cases/detail/CaseAssets.js +0 -104
  170. package/components/routes/cases/detail/CaseAssets.test.d.ts +0 -1
  171. package/components/routes/cases/detail/CaseAssets.test.js +0 -167
  172. package/components/routes/cases/detail/CaseDashboard.d.ts +0 -7
  173. package/components/routes/cases/detail/CaseDashboard.js +0 -54
  174. package/components/routes/cases/detail/CaseDetails.d.ts +0 -6
  175. package/components/routes/cases/detail/CaseDetails.js +0 -61
  176. package/components/routes/cases/detail/CaseOverview.d.ts +0 -7
  177. package/components/routes/cases/detail/CaseOverview.js +0 -43
  178. package/components/routes/cases/detail/CaseSidebar.d.ts +0 -8
  179. package/components/routes/cases/detail/CaseSidebar.js +0 -50
  180. package/components/routes/cases/detail/CaseTask.d.ts +0 -11
  181. package/components/routes/cases/detail/CaseTask.js +0 -57
  182. package/components/routes/cases/detail/CaseTimeline.d.ts +0 -12
  183. package/components/routes/cases/detail/CaseTimeline.js +0 -106
  184. package/components/routes/cases/detail/CaseTimeline.test.d.ts +0 -1
  185. package/components/routes/cases/detail/CaseTimeline.test.js +0 -227
  186. package/components/routes/cases/detail/ItemPage.d.ts +0 -6
  187. package/components/routes/cases/detail/ItemPage.js +0 -99
  188. package/components/routes/cases/detail/RelatedCasePanel.d.ts +0 -6
  189. package/components/routes/cases/detail/RelatedCasePanel.js +0 -31
  190. package/components/routes/cases/detail/TaskPanel.d.ts +0 -7
  191. package/components/routes/cases/detail/TaskPanel.js +0 -52
  192. package/components/routes/cases/detail/aggregates/CaseAggregate.d.ts +0 -12
  193. package/components/routes/cases/detail/aggregates/CaseAggregate.js +0 -19
  194. package/components/routes/cases/detail/aggregates/SourceAggregate.d.ts +0 -6
  195. package/components/routes/cases/detail/aggregates/SourceAggregate.js +0 -30
  196. package/components/routes/cases/detail/assets/Asset.d.ts +0 -14
  197. package/components/routes/cases/detail/assets/Asset.js +0 -12
  198. package/components/routes/cases/detail/assets/Asset.test.d.ts +0 -1
  199. package/components/routes/cases/detail/assets/Asset.test.js +0 -72
  200. package/components/routes/cases/detail/sidebar/CaseFolder.d.ts +0 -14
  201. package/components/routes/cases/detail/sidebar/CaseFolder.js +0 -133
  202. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.d.ts +0 -34
  203. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.js +0 -105
  204. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.d.ts +0 -1
  205. package/components/routes/cases/detail/sidebar/CaseFolderContextMenu.test.js +0 -351
  206. package/components/routes/cases/detail/sidebar/types.d.ts +0 -3
  207. package/components/routes/cases/detail/sidebar/utils.d.ts +0 -3
  208. package/components/routes/cases/detail/sidebar/utils.js +0 -25
  209. package/components/routes/cases/hooks/useCase.d.ts +0 -13
  210. package/components/routes/cases/hooks/useCase.js +0 -51
  211. package/components/routes/cases/modals/AddToCaseModal.d.ts +0 -7
  212. package/components/routes/cases/modals/AddToCaseModal.js +0 -62
  213. package/components/routes/cases/modals/RenameItemModal.d.ts +0 -9
  214. package/components/routes/cases/modals/RenameItemModal.js +0 -48
  215. package/components/routes/cases/modals/ResolveModal.d.ts +0 -7
  216. package/components/routes/cases/modals/ResolveModal.js +0 -62
  217. package/components/routes/hits/search/shared/IndexPicker.d.ts +0 -2
  218. package/components/routes/hits/search/shared/IndexPicker.js +0 -20
  219. package/components/routes/observables/ObservableViewer.d.ts +0 -7
  220. package/components/routes/observables/ObservableViewer.js +0 -27
  221. package/models/entities/generated/AttachmentsFile.d.ts +0 -12
  222. package/models/entities/generated/Case.d.ts +0 -28
  223. package/models/entities/generated/DestinationOriginal.d.ts +0 -19
  224. package/models/entities/generated/EmailAttachment.d.ts +0 -8
  225. package/models/entities/generated/EmailParent.d.ts +0 -19
  226. package/models/entities/generated/Enrichments.d.ts +0 -7
  227. package/models/entities/generated/EnrichmentsIndicator.d.ts +0 -21
  228. package/models/entities/generated/HttpResponse.d.ts +0 -11
  229. package/models/entities/generated/Item.d.ts +0 -9
  230. package/models/entities/generated/Observable.d.ts +0 -85
  231. package/models/entities/generated/ObservableCloud.d.ts +0 -20
  232. package/models/entities/generated/ObservableDestination.d.ts +0 -23
  233. package/models/entities/generated/ObservableEmail.d.ts +0 -30
  234. package/models/entities/generated/ObservableFile.d.ts +0 -36
  235. package/models/entities/generated/ObservableHowler.d.ts +0 -43
  236. package/models/entities/generated/ObservableHttp.d.ts +0 -11
  237. package/models/entities/generated/ObservableObserver.d.ts +0 -21
  238. package/models/entities/generated/ObservableOrganization.d.ts +0 -7
  239. package/models/entities/generated/ObservableProcess.d.ts +0 -34
  240. package/models/entities/generated/ObservableSource.d.ts +0 -23
  241. package/models/entities/generated/ObservableThreat.d.ts +0 -21
  242. package/models/entities/generated/ObservableTls.d.ts +0 -12
  243. package/models/entities/generated/ObserverIngress.d.ts +0 -9
  244. package/models/entities/generated/Task.d.ts +0 -10
  245. package/utils/typeUtils.d.ts +0 -7
  246. package/utils/typeUtils.js +0 -27
  247. /package/components/app/providers/{RecordSearchProvider.test.d.ts → HitSearchProvider.test.d.ts} +0 -0
  248. /package/components/elements/hit/{related/RelatedRecords.d.ts → HitDetails.d.ts} +0 -0
  249. /package/components/routes/hits/search/{RecordBrowser.d.ts → HitBrowser.d.ts} +0 -0
  250. /package/components/{elements/ContextMenu.test.d.ts → routes/hits/search/HitContextMenu.test.d.ts} +0 -0
  251. /package/components/{elements/MarkdownEditor.d.ts → routes/overviews/OverviewEditor.d.ts} +0 -0
@@ -10,7 +10,7 @@ import { compareTimestamp, twitterShort } from '@cccsaurora/howler-ui/utils/util
10
10
  import HowlerAvatar from '../display/HowlerAvatar';
11
11
  import HowlerCard from '../display/HowlerCard';
12
12
  import Markdown from '../display/Markdown';
13
- const RecordWorklog = ({ record, users }) => {
13
+ const HitWorklog = ({ hit, users }) => {
14
14
  const theme = useTheme();
15
15
  const { shiftColor } = useMyUtils();
16
16
  const { t } = useTranslation();
@@ -23,15 +23,15 @@ const RecordWorklog = ({ record, users }) => {
23
23
  */
24
24
  const worklogGroups = useMemo(() => {
25
25
  let setInitialVersion = false;
26
- return (record?.howler?.log || [])
26
+ return (hit?.howler?.log || [])
27
27
  .slice()
28
28
  .sort((a, b) => compareTimestamp(b.timestamp, a.timestamp))
29
29
  .reduce((acc, l) => {
30
- if (!initialVersions[record.howler.id] && !setInitialVersion) {
30
+ if (!initialVersions[hit.howler.id] && !setInitialVersion) {
31
31
  setInitialVersion = true;
32
32
  setInitialVersions({
33
33
  ...initialVersions,
34
- [record.howler.id]: l.previous_version
34
+ [hit.howler.id]: l.previous_version
35
35
  });
36
36
  }
37
37
  // Initialize the worklog card groups
@@ -42,9 +42,9 @@ const RecordWorklog = ({ record, users }) => {
42
42
  const currArr = acc[acc.length - 1];
43
43
  if (
44
44
  // Does this log version match the saved version?
45
- l.previous_version === initialVersions[record.howler.id] &&
45
+ l.previous_version === initialVersions[hit.howler.id] &&
46
46
  // Does the previous entry not match?
47
- currArr[currArr.length - 1].previous_version !== initialVersions[record.howler.id]) {
47
+ currArr[currArr.length - 1].previous_version !== initialVersions[hit.howler.id]) {
48
48
  // If so, we've figured out where the new logs should start, so we start a new card.
49
49
  acc.push([l]);
50
50
  return acc;
@@ -59,14 +59,14 @@ const RecordWorklog = ({ record, users }) => {
59
59
  }, []);
60
60
  },
61
61
  // eslint-disable-next-line react-hooks/exhaustive-deps
62
- [record?.howler?.log]);
62
+ [hit?.howler?.log]);
63
63
  useEffect(() => {
64
64
  // On unmount, mark the latest entry version as the last seen version.
65
65
  return () => {
66
- if (record?.howler.id) {
66
+ if (hit?.howler.id) {
67
67
  setInitialVersions({
68
68
  ...initialVersions,
69
- [record.howler.id]: worklogGroups[0][0]?.previous_version ?? initialVersions[record.howler.id]
69
+ [hit.howler.id]: worklogGroups[0][0]?.previous_version ?? initialVersions[hit.howler.id]
70
70
  });
71
71
  }
72
72
  };
@@ -77,9 +77,7 @@ const RecordWorklog = ({ record, users }) => {
77
77
  if (worklogGroups.length > 0) {
78
78
  return worklogGroups.flatMap((ls, index) => {
79
79
  const result = [];
80
- if (index > 0 &&
81
- initialVersions[record.howler.id] &&
82
- ls[0].previous_version === initialVersions[record.howler.id]) {
80
+ if (index > 0 && initialVersions[hit.howler.id] && ls[0].previous_version === initialVersions[hit.howler.id]) {
83
81
  result.push(_jsx(Divider, { children: _jsxs(Stack, { direction: "row", children: [_jsx(KeyboardArrowUp, { sx: { color: 'text.secondary' }, fontSize: "small" }), _jsx(Typography, { variant: "caption", color: "text.secondary", children: t('hit.worklog.new') }), _jsx(KeyboardArrowUp, { sx: { color: 'text.secondary' }, fontSize: "small" })] }) }, "new"));
84
82
  }
85
83
  result.push(_jsxs(HowlerCard, { elevation: 4, children: [_jsx(CardHeader, { avatar: _jsx(HowlerAvatar, { userId: ls[0].user }), title: users[ls[0].user]?.name ?? ls[0].user, subheader: _jsx(Tooltip, { title: new Date(ls[0].timestamp).toLocaleString(), children: _jsx(Typography, { variant: "caption", children: twitterShort(ls[0].timestamp) }) }) }), _jsx(CardContent, { children: _jsx(Stack, { spacing: 1, divider: _jsx(Divider, { orientation: "horizontal" }), children: ls.map(l => (_jsxs(Typography, { variant: "body2", color: "text.secondary", component: "div", position: "relative", children: [l.explanation ? (_jsx(Markdown, { md: l.explanation.trim() })) : (_jsxs(_Fragment, { children: [_jsxs("span", { children: [t('hit.worklog.updated'), "\u00A0"] }), _jsx("code", { children: l.key }), _jsx("span", { children: ":\u00A0" }), {
@@ -90,10 +88,10 @@ const RecordWorklog = ({ record, users }) => {
90
88
  return result;
91
89
  });
92
90
  }
93
- else if (!record?.howler) {
91
+ else if (!hit?.howler) {
94
92
  return (_jsxs(_Fragment, { children: [_jsx(Skeleton, { width: "100%", height: 200, variant: "rounded" }), _jsx(Skeleton, { width: "100%", height: 220, variant: "rounded" }), _jsx(Skeleton, { width: "100%", height: 150, variant: "rounded" })] }));
95
93
  }
96
- }, [worklogGroups, record.howler, initialVersions, users, t, shiftColor, theme.palette.text.primary]);
94
+ }, [worklogGroups, hit.howler, initialVersions, users, t, shiftColor, theme.palette.text.primary]);
97
95
  return (_jsx(Stack, { sx: { p: 2 }, spacing: 1, children: worklogEls }));
98
96
  };
99
- export default RecordWorklog;
97
+ export default HitWorklog;
@@ -4,9 +4,9 @@ import { Alert, AlertTitle, Autocomplete, Box, Button, CircularProgress, IconBut
4
4
  import api from '@cccsaurora/howler-ui/api';
5
5
  import 'chartjs-adapter-dayjs-4';
6
6
  import { ApiConfigContext } from '@cccsaurora/howler-ui/components/app/providers/ApiConfigProvider';
7
+ import { HitContext } from '@cccsaurora/howler-ui/components/app/providers/HitProvider';
8
+ import { HitSearchContext } from '@cccsaurora/howler-ui/components/app/providers/HitSearchProvider';
7
9
  import { ParameterContext } from '@cccsaurora/howler-ui/components/app/providers/ParameterProvider';
8
- import { RecordContext } from '@cccsaurora/howler-ui/components/app/providers/RecordProvider';
9
- import { RecordSearchContext } from '@cccsaurora/howler-ui/components/app/providers/RecordSearchProvider';
10
10
  import useMyApi from '@cccsaurora/howler-ui/components/hooks/useMyApi';
11
11
  import useMyChart from '@cccsaurora/howler-ui/components/hooks/useMyChart';
12
12
  import dayjs from 'dayjs';
@@ -38,12 +38,12 @@ const HitGraph = () => {
38
38
  const setQuery = useContextSelector(ParameterContext, ctx => ctx.setQuery);
39
39
  const span = useContextSelector(ParameterContext, ctx => ctx.span);
40
40
  const views = useContextSelector(ParameterContext, ctx => ctx.views);
41
- const selectedHits = useContextSelector(RecordContext, ctx => ctx.selectedRecords);
42
- const addHitToSelection = useContextSelector(RecordContext, ctx => ctx.addRecordToSelection);
43
- const removeHitFromSelection = useContextSelector(RecordContext, ctx => ctx.removeRecordFromSelection);
44
- const error = useContextSelector(RecordSearchContext, ctx => ctx.error);
45
- const response = useContextSelector(RecordSearchContext, ctx => ctx.response);
46
- const getFilters = useContextSelector(RecordSearchContext, ctx => ctx.getFilters);
41
+ const selectedHits = useContextSelector(HitContext, ctx => ctx.selectedHits);
42
+ const addHitToSelection = useContextSelector(HitContext, ctx => ctx.addHitToSelection);
43
+ const removeHitFromSelection = useContextSelector(HitContext, ctx => ctx.removeHitFromSelection);
44
+ const error = useContextSelector(HitSearchContext, ctx => ctx.error);
45
+ const response = useContextSelector(HitSearchContext, ctx => ctx.response);
46
+ const getFilters = useContextSelector(HitSearchContext, ctx => ctx.getFilters);
47
47
  const chartRef = useRef();
48
48
  const [loading, setLoading] = useState(false);
49
49
  const [filterField, setFilterField] = useState(FILTER_FIELDS[0]);
@@ -41,7 +41,7 @@ const DefaultOutline = ({ hit, fields, template, layout = HitLayout.NORMAL, read
41
41
  if (!displayedData) {
42
42
  return null;
43
43
  }
44
- return (_jsxs(React.Fragment, { children: [_jsx(Tooltip, { title: (config.indexes.hit[field]?.description ?? t('none')).split('\n')[0], children: _jsxs(Typography, { variant: layout !== HitLayout.COMFY ? 'caption' : 'body1', fontWeight: "bold", children: [field, ":"] }) }), _jsx(PluginTypography, { context: "outline", variant: layout !== HitLayout.COMFY ? 'caption' : 'body1', whiteSpace: "normal", sx: { width: '100%', wordBreak: 'break-all' }, value: displayedData, field: field, obj: hit, children: displayedData })] }, field));
44
+ return (_jsxs(React.Fragment, { children: [_jsx(Tooltip, { title: (config.indexes.hit[field]?.description ?? t('none')).split('\n')[0], children: _jsxs(Typography, { variant: layout !== HitLayout.COMFY ? 'caption' : 'body1', fontWeight: "bold", children: [field, ":"] }) }), _jsx(PluginTypography, { context: "outline", variant: layout !== HitLayout.COMFY ? 'caption' : 'body1', whiteSpace: "normal", sx: { width: '100%', wordBreak: 'break-all' }, value: displayedData, field: field, hit: hit, children: displayedData })] }, field));
45
45
  })] }));
46
46
  };
47
47
  export default memo(DefaultOutline);
@@ -3,7 +3,6 @@ interface ViewTitleProps {
3
3
  title?: string;
4
4
  type?: string;
5
5
  query?: string;
6
- indexes?: string[];
7
6
  sort?: string;
8
7
  span?: string;
9
8
  }
@@ -4,7 +4,7 @@ import { Chip, Stack, Tooltip, Typography } from '@mui/material';
4
4
  import { useMemo } from 'react';
5
5
  import { useTranslation } from 'react-i18next';
6
6
  import { convertLuceneToDate } from '@cccsaurora/howler-ui/utils/utils';
7
- export const ViewTitle = ({ title, type, query, sort, span, indexes }) => {
7
+ export const ViewTitle = ({ title, type, query, sort, span }) => {
8
8
  const { t } = useTranslation();
9
9
  const spanLabel = useMemo(() => {
10
10
  if (!span) {
@@ -17,16 +17,9 @@ export const ViewTitle = ({ title, type, query, sort, span, indexes }) => {
17
17
  return t(span);
18
18
  }
19
19
  }, [span, t]);
20
- const indexLabel = useMemo(() => {
21
- if (!indexes || indexes.length === 0) {
22
- return '';
23
- }
24
- else
25
- return `(${indexes.join(', ')})`;
26
- }, [indexes]);
27
20
  return (_jsxs(Stack, { children: [_jsxs(Stack, { direction: "row", alignItems: "start", spacing: 1, children: [_jsx(Tooltip, { title: t(`route.views.manager.${type}`), children: {
28
21
  readonly: _jsx(Lock, { fontSize: "small" }),
29
22
  global: _jsx(Language, { fontSize: "small" }),
30
23
  personal: _jsx(Person, { fontSize: "small" })
31
- }[type] }), _jsx(Typography, { variant: "body1", children: t(title) })] }), _jsx(Typography, { variant: "caption", children: _jsx("code", { children: query }) }), (sort || span || indexLabel) && (_jsxs(Stack, { direction: "row", sx: { mt: 1 }, spacing: 1, children: [sort?.split(',').map(_sort => (_jsx(Chip, { size: "small", label: _sort.split(' ')[0], icon: _sort.endsWith('desc') ? _jsx(ArrowDownward, {}) : _jsx(ArrowUpward, {}) }, _sort.split(' ')[0]))), spanLabel && _jsx(Chip, { label: spanLabel }), indexLabel && _jsx(Chip, { label: indexLabel })] }))] }));
24
+ }[type] }), _jsx(Typography, { variant: "body1", children: t(title) })] }), _jsx(Typography, { variant: "caption", children: _jsx("code", { children: query }) }), (sort || span) && (_jsxs(Stack, { direction: "row", sx: { mt: 1 }, spacing: 1, children: [sort?.split(',').map(_sort => (_jsx(Chip, { size: "small", label: _sort.split(' ')[0], icon: _sort.endsWith('desc') ? _jsx(ArrowDownward, {}) : _jsx(ArrowUpward, {}) }, _sort.split(' ')[0]))), spanLabel && _jsx(Chip, { size: "small", label: spanLabel })] }))] }));
32
25
  };
@@ -7,7 +7,7 @@ declare const useHitActions: (_hits: Hit | Hit[]) => {
7
7
  canAssess: boolean;
8
8
  loading: boolean;
9
9
  manage: (transition: string) => Promise<void>;
10
- assess: (assessment: string, skipRationale?: boolean, providedRationale?: any) => Promise<void>;
10
+ assess: (assessment: string, skipRationale?: boolean) => Promise<void>;
11
11
  vote: (v: string) => Promise<void>;
12
12
  selectedVote: string;
13
13
  };
@@ -4,8 +4,8 @@ import { useAppUser } from '@cccsaurora/howler-ui/commons/components/app/hooks';
4
4
  import AssignUserDrawer from '@cccsaurora/howler-ui/components/app/drawers/AssignUserDrawer';
5
5
  import { ApiConfigContext } from '@cccsaurora/howler-ui/components/app/providers/ApiConfigProvider';
6
6
  import { AppDrawerContext } from '@cccsaurora/howler-ui/components/app/providers/AppDrawerProvider';
7
+ import { HitContext } from '@cccsaurora/howler-ui/components/app/providers/HitProvider';
7
8
  import { ModalContext } from '@cccsaurora/howler-ui/components/app/providers/ModalProvider';
8
- import { RecordContext } from '@cccsaurora/howler-ui/components/app/providers/RecordProvider';
9
9
  import RationaleModal from '@cccsaurora/howler-ui/components/elements/display/modals/RationaleModal';
10
10
  import { useCallback, useContext, useMemo, useState } from 'react';
11
11
  import { useTranslation } from 'react-i18next';
@@ -31,7 +31,7 @@ const useHitActions = (_hits) => {
31
31
  const { showModal } = useContext(ModalContext);
32
32
  const { showWarningMessage } = useMySnackbar();
33
33
  const { dispatchApi } = useMyApi();
34
- const updateHit = useContextSelector(RecordContext, ctx => ctx.updateRecord);
34
+ const updateHit = useContextSelector(HitContext, ctx => ctx.updateHit);
35
35
  const [loading, setLoading] = useState(false);
36
36
  const hits = useMemo(() => (Array.isArray(_hits) ? _hits : [_hits]).filter(_hit => !!_hit), [_hits]);
37
37
  const canVote = useMemo(() => hits.every(hit => hit?.howler.assignment !== user.username || hit?.howler.status === 'in-progress'), [hits, user.username]);
@@ -90,9 +90,9 @@ const useHitActions = (_hits) => {
90
90
  }
91
91
  }
92
92
  }, [dispatchApi, hits, selectedVote, updateHit, user.email]);
93
- const assess = useCallback(async (assessment, skipRationale = false, providedRationale = null) => {
93
+ const assess = useCallback(async (assessment, skipRationale = false) => {
94
94
  const rationale = skipRationale
95
- ? (providedRationale ?? t('rationale.default', { assessment }))
95
+ ? t('rationale.default', { assessment })
96
96
  : await new Promise(res => {
97
97
  showModal(_jsx(RationaleModal, { hits: hits, onSubmit: _rationale => {
98
98
  res(_rationale);
@@ -1,8 +1,8 @@
1
1
  import type { Hit } from '@cccsaurora/howler-ui/models/entities/generated/Hit';
2
2
  import type React from 'react';
3
- declare const useRecordSelection: () => {
3
+ declare const useHitSelection: () => {
4
4
  lastSelected: string;
5
5
  setLastSelected: React.Dispatch<React.SetStateAction<string>>;
6
6
  onClick: (e: React.MouseEvent<HTMLDivElement>, hit: Hit) => void;
7
7
  };
8
- export default useRecordSelection;
8
+ export default useHitSelection;
@@ -1,14 +1,20 @@
1
+ import { useAppBreadcrumbs } from '@cccsaurora/howler-ui/commons/components/app/hooks';
2
+ import { HitContext } from '@cccsaurora/howler-ui/components/app/providers/HitProvider';
3
+ import { HitSearchContext } from '@cccsaurora/howler-ui/components/app/providers/HitSearchProvider';
1
4
  import { ParameterContext } from '@cccsaurora/howler-ui/components/app/providers/ParameterProvider';
2
- import { RecordContext } from '@cccsaurora/howler-ui/components/app/providers/RecordProvider';
3
- import { RecordSearchContext } from '@cccsaurora/howler-ui/components/app/providers/RecordSearchProvider';
5
+ import useMySitemap from '@cccsaurora/howler-ui/components/hooks/useMySitemap';
4
6
  import { useCallback, useState } from 'react';
7
+ import { useNavigate } from 'react-router-dom';
5
8
  import { useContextSelector } from 'use-context-selector';
6
- const useRecordSelection = () => {
7
- const response = useContextSelector(RecordSearchContext, ctx => ctx.response);
8
- const selectedHits = useContextSelector(RecordContext, ctx => ctx.selectedRecords);
9
- const addHitToSelection = useContextSelector(RecordContext, ctx => ctx.addRecordToSelection);
10
- const removeHitFromSelection = useContextSelector(RecordContext, ctx => ctx.removeRecordFromSelection);
11
- const clearSelectedHits = useContextSelector(RecordContext, ctx => ctx.clearSelectedRecords);
9
+ const useHitSelection = () => {
10
+ const navigate = useNavigate();
11
+ const { setItems } = useAppBreadcrumbs();
12
+ const { routes } = useMySitemap();
13
+ const response = useContextSelector(HitSearchContext, ctx => ctx.response);
14
+ const selectedHits = useContextSelector(HitContext, ctx => ctx.selectedHits);
15
+ const addHitToSelection = useContextSelector(HitContext, ctx => ctx.addHitToSelection);
16
+ const removeHitFromSelection = useContextSelector(HitContext, ctx => ctx.removeHitFromSelection);
17
+ const clearSelectedHits = useContextSelector(HitContext, ctx => ctx.clearSelectedHits);
12
18
  const setSelected = useContextSelector(ParameterContext, ctx => ctx.setSelected);
13
19
  const [lastSelected, setLastSelected] = useState(null);
14
20
  const onClick = useCallback((e, hit) => {
@@ -41,17 +47,32 @@ const useRecordSelection = () => {
41
47
  e.stopPropagation();
42
48
  return;
43
49
  }
44
- clearSelectedHits(hit.howler.id);
45
- setSelected(hit.howler.id);
50
+ if (hit.howler.is_bundle) {
51
+ const searchRoute = routes.find(_route => _route.path.startsWith(location.pathname.replace(/^(\/.*)\/.+/, '$1')));
52
+ const newBreadcrumb = {
53
+ ...searchRoute,
54
+ path: location.pathname + location.search
55
+ };
56
+ setItems([{ route: newBreadcrumb, matcher: null }]);
57
+ navigate(`/bundles/${hit.howler.id}?span=date.range.all&query=howler.id%3A*&offset=0`);
58
+ clearSelectedHits(hit.howler.id);
59
+ }
60
+ else {
61
+ clearSelectedHits(hit.howler.id);
62
+ setSelected(hit.howler.id);
63
+ }
46
64
  }, [
47
65
  addHitToSelection,
48
66
  clearSelectedHits,
49
67
  lastSelected,
68
+ navigate,
50
69
  removeHitFromSelection,
51
- response?.items,
70
+ response,
71
+ routes,
52
72
  selectedHits,
73
+ setItems,
53
74
  setSelected
54
75
  ]);
55
76
  return { lastSelected, setLastSelected, onClick };
56
77
  };
57
- export default useRecordSelection;
78
+ export default useHitSelection;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Api, Article, Book, BookRounded, Code, Dashboard, Description, ExitToApp, FormatListBulleted, Help, HelpCenter, Key, ManageSearch, QueryStats, SavedSearch, Search, Settings, SettingsSuggest, Shield, Storage, SupervisorAccount, Terminal, Topic } from '@mui/icons-material';
2
+ import { Api, Article, Book, Code, Dashboard, Description, ExitToApp, FormatListBulleted, Help, HelpCenter, Key, ManageSearch, QueryStats, SavedSearch, Search, Settings, SettingsSuggest, Shield, Storage, SupervisorAccount, Terminal, Topic } from '@mui/icons-material';
3
3
  import { Stack } from '@mui/material';
4
4
  import { AppBrand } from '@cccsaurora/howler-ui/branding/AppBrand';
5
5
  import { AppBarContext } from '@cccsaurora/howler-ui/components/app/providers/AppBarProvider';
@@ -24,15 +24,6 @@ const useMyPreferences = () => {
24
24
  icon: _jsx(Dashboard, {})
25
25
  }
26
26
  },
27
- {
28
- type: 'item',
29
- element: {
30
- id: 'cases',
31
- i18nKey: 'route.cases',
32
- route: '/cases',
33
- icon: _jsx(BookRounded, {})
34
- }
35
- },
36
27
  {
37
28
  type: 'group',
38
29
  element: {
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { Alert, Box, Typography } from '@mui/material';
3
3
  import api from '@cccsaurora/howler-ui/api';
4
- import HitPreview from '@cccsaurora/howler-ui/components/elements/hit/HitPreview';
4
+ import HitQuickSearch from '@cccsaurora/howler-ui/components/elements/hit/HitQuickSearch';
5
5
  import { useMemo } from 'react';
6
6
  import { useTranslation } from 'react-i18next';
7
7
  import { Link, useNavigate } from 'react-router-dom';
@@ -40,7 +40,7 @@ const useMySearch = () => {
40
40
  },
41
41
  headerRenderer: (state) => (state.result?.error || !state.items) && (_jsx(Box, { sx: { p: 1, pb: 0, textAlign: 'center' }, children: state.result?.error ? (_jsx(Alert, { severity: "error", color: "error", children: t('hit.search.invalid') })) : ((!state.items || state.items.length === 0) && (_jsx(Typography, { sx: { mb: -1, color: 'text.secondary' }, children: t('hit.quicksearch') }))) })),
42
42
  itemRenderer: (item, options) => {
43
- return (_jsx(Link, { to: `/hits/${item.id}`, style: { flex: 1, textDecoration: 'none', color: 'inherit', overflow: 'hidden' }, children: _jsx(HitPreview, { hit: item.item, options: options }) }));
43
+ return (_jsx(Link, { to: `/hits/${item.id}`, style: { flex: 1, textDecoration: 'none', color: 'inherit', overflow: 'hidden' }, children: _jsx(HitQuickSearch, { hit: item.item, options: options }) }));
44
44
  }
45
45
  }), [navigate, pageCount, t]);
46
46
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { Article, Book, BookRounded, Code, CreateNewFolder, Dashboard, Description, Edit, EditNote, FormatListBulleted, Help, Info, Key, Person, PersonSearch, QueryStats, SavedSearch, Search, Settings, SettingsSuggest, Shield, Storage, Terminal, Topic, Work } from '@mui/icons-material';
2
+ import { Article, Book, Code, CreateNewFolder, Dashboard, Description, Edit, EditNote, FormatListBulleted, Help, Info, Key, Person, PersonSearch, QueryStats, SavedSearch, Search, Settings, SettingsSuggest, Shield, Storage, Terminal, Topic, Work } from '@mui/icons-material';
3
3
  import howlerPluginStore from '@cccsaurora/howler-ui/plugins/store';
4
4
  import { useMemo } from 'react';
5
5
  import { useTranslation } from 'react-i18next';
@@ -24,9 +24,6 @@ const useMySitemap = () => {
24
24
  return useMemo(() => ({
25
25
  routes: [
26
26
  { path: '/', title: t('route.home'), isRoot: true, icon: _jsx(Dashboard, {}) },
27
- { path: '/cases', title: t('route.cases'), isRoot: true, icon: _jsx(BookRounded, {}) },
28
- { path: '/cases/:id', title: t('route.cases.view'), breadcrumbs: ['/cases'] },
29
- { path: '/cases/:id/*', title: t('route.cases.view'), breadcrumbs: ['/cases'] },
30
27
  { path: '/admin/users', title: t('route.admin.user.search'), isRoot: true, icon: _jsx(PersonSearch, {}) },
31
28
  {
32
29
  path: '/admin/users/:id',
@@ -1,16 +1,9 @@
1
1
  const DEFAULT_THEME = {
2
- components: {
3
- MuiChip: {
4
- defaultProps: {
5
- size: 'small'
6
- }
7
- }
8
- },
9
2
  palette: {
10
3
  dark: {
11
4
  background: {
12
- default: '#181818',
13
- paper: '#181818'
5
+ default: '#202020',
6
+ paper: '#202020'
14
7
  },
15
8
  primary: {
16
9
  main: '#7DA1DB'
@@ -5,9 +5,10 @@ import { MemoryRouter, useSearchParams } from 'react-router-dom';
5
5
  import { describe, expect, it } from 'vitest';
6
6
  import useParamState from './useParamState';
7
7
  // Creates a MemoryRouter wrapper using createElement to avoid JSX in a .ts file
8
- const makeWrapper = (search = '') =>
9
- // eslint-disable-next-line react/function-component-definition
10
- ({ children }) => createElement(MemoryRouter, { initialEntries: [search ? `/?${search}` : '/'] }, children);
8
+ const makeWrapper = (search = '') => {
9
+ // eslint-disable-next-line react/function-component-definition
10
+ return ({ children }) => createElement(MemoryRouter, { initialEntries: [search ? `/?${search}` : '/'] }, children);
11
+ };
11
12
  // Composite hook: exposes the param state AND the live URL params for URL-level assertions
12
13
  const useParamStateWithUrl = (key, defaultValue) => {
13
14
  const [value, setValue] = useParamState(key, defaultValue);
@@ -7,7 +7,7 @@ import PageCenter from '@cccsaurora/howler-ui/commons/components/pages/PageCente
7
7
  import { FieldContext } from '@cccsaurora/howler-ui/components/app/providers/FieldProvider';
8
8
  import SocketBadge from '@cccsaurora/howler-ui/components/elements/display/icons/SocketBadge';
9
9
  import useMyApi from '@cccsaurora/howler-ui/components/hooks/useMyApi';
10
- import RecordQuery from '@cccsaurora/howler-ui/components/routes/hits/search/RecordQuery';
10
+ import HitQuery from '@cccsaurora/howler-ui/components/routes/hits/search/HitQuery';
11
11
  import { difference, uniq } from 'lodash-es';
12
12
  import howlerPluginStore from '@cccsaurora/howler-ui/plugins/store';
13
13
  import { useCallback, useContext, useEffect, useMemo, useState } from 'react';
@@ -102,7 +102,7 @@ const ActionEditor = () => {
102
102
  : disabled && userOperations.length > 0
103
103
  ? t('route.actions.trigger.disabled.explanation')
104
104
  : null, children: component }, trigger));
105
- }) }) }), _jsxs(Stack, { direction: "row", justifyContent: "space-between", alignItems: "end", sx: { mb: -1 }, children: [_jsx(Typography, { sx: theme => ({ color: theme.palette.text.disabled, fontStyle: 'italic', mb: 0.5 }), variant: "body2", children: t('hit.search.prompt') }), _jsx(SocketBadge, { size: "small" })] }), _jsx(RecordQuery, { triggerSearch: onSearch }), response ? (_jsx(QueryResultText, { count: response.total, query: responseQuery })) : (_jsx(Typography, { sx: theme => ({
105
+ }) }) }), _jsxs(Stack, { direction: "row", justifyContent: "space-between", alignItems: "end", sx: { mb: -1 }, children: [_jsx(Typography, { sx: theme => ({ color: theme.palette.text.disabled, fontStyle: 'italic', mb: 0.5 }), variant: "body2", children: t('hit.search.prompt') }), _jsx(SocketBadge, { size: "small" })] }), _jsx(HitQuery, { triggerSearch: onSearch }), response ? (_jsx(QueryResultText, { count: response.total, query: responseQuery })) : (_jsx(Typography, { sx: theme => ({
106
106
  color: theme.palette.text.secondary,
107
107
  fontSize: '0.9em',
108
108
  fontStyle: 'italic',
@@ -109,7 +109,7 @@ const ActionSearch = () => {
109
109
  e.stopPropagation();
110
110
  await deleteAction(item.item.action_id);
111
111
  onSearch();
112
- }, children: _jsx(Delete, {}) })), _jsx(HowlerAvatar, { sx: { width: 24, height: 24, marginRight: '8px !important' }, userId: item.item.owner_id })] }), subheader: item.item.query }), _jsx(CardContent, { sx: { paddingTop: 0 }, children: _jsx(Grid, { container: true, spacing: 1, children: item.item.operations.map(d => (_jsx(Grid, { item: true, children: _jsx(Chip, { label: t(`operations.${d.operation_id}`) }) }, d.operation_id))) }) })] }, item.item.name));
112
+ }, children: _jsx(Delete, {}) })), _jsx(HowlerAvatar, { sx: { width: 24, height: 24, marginRight: '8px !important' }, userId: item.item.owner_id })] }), subheader: item.item.query }), _jsx(CardContent, { sx: { paddingTop: 0 }, children: _jsx(Grid, { container: true, spacing: 1, children: item.item.operations.map(d => (_jsx(Grid, { item: true, children: _jsx(Chip, { size: "small", label: t(`operations.${d.operation_id}`) }) }, d.operation_id))) }) })] }, item.item.name));
113
113
  }, [deleteAction, navigate, onSearch, t, user.roles, user.username]);
114
114
  return (_jsx(ItemManager, { onSearch: onSearch, onCreate: () => navigate('/action/execute'), onPageChange: onPageChange, phrase: phrase, setPhrase: setPhrase, hasError: hasError, searching: searching, aboveSearch: _jsx(Typography, { sx: theme => ({ fontStyle: 'italic', color: theme.palette.text.disabled, mb: 0.5 }), variant: "body2", children: t('route.actions.search.prompt') }), searchFilters: _jsx(Autocomplete, { multiple: true, size: "small", value: searchModifiers, onChange: (__, values) => setSearchModifiers(values), getOptionLabel: trigger => t(`route.actions.trigger.${trigger}`), options: VALID_ACTION_TRIGGERS, renderInput: params => (_jsx(TextField, { ...params, sx: { maxWidth: '500px' }, label: t('route.actions.trigger') })) }), renderer: renderer, response: response, createPrompt: "route.actions.create", searchPrompt: "route.actions.search", createIcon: _jsx(Terminal, { sx: { mr: 1 } }) }));
115
115
  };
@@ -233,7 +233,7 @@ const QueryBuilder = () => {
233
233
  height: '100%',
234
234
  '& .MuiFormControl-root': { height: '100%', '& > div': { height: '100%' } }
235
235
  }
236
- ], slotProps: { paper: { sx: { minWidth: '600px' } } } }), _jsx(Card, { variant: "outlined", sx: { flex: 1, maxWidth: '350px', minWidth: '210px' }, children: _jsxs(Stack, { spacing: 0.5, sx: { px: 1, alignItems: 'start' }, children: [_jsxs(Typography, { variant: "caption", color: "text.secondary", sx: { whiteSpace: 'nowrap' }, children: [t('route.advanced.rows'), ": ", STEPS[rows]] }), _jsx(Slider, { size: "small", valueLabelDisplay: "off", value: rows, onChange: (_, value) => setRows(value), min: 0, max: 9, step: 1, marks: true, track: false, sx: { py: 0.5 } })] }) })] }), type === 'lucene' && (_jsx(Autocomplete, { size: "small", getOptionLabel: opt => t(`route.advanced.query.type.${opt}`), options: LUCENE_QUERY_OPTIONS, value: queryType, onChange: (_event, value) => setQueryType(value), renderInput: params => (_jsx(TextField, { ...params, label: t('route.advanced.query.lucene.type'), sx: { minWidth: '230px' } })), renderOption: (props, option) => (_jsx(ListItemText, { ...props, sx: { flexDirection: 'column', alignItems: 'start !important' }, primary: t(`route.advanced.query.type.${option}`), secondary: t(`route.advanced.query.type.${option}.description`) })) })), queryType === 'groupby' && (_jsx(Autocomplete, { size: "small", options: fieldOptions, value: groupByField, onChange: (__, value) => setGroupByField(value), renderInput: params => _jsx(TextField, { ...params, label: t('route.advanced.pivot.field') }), sx: { minWidth: '200px', '& label': { zIndex: 1200 } }, onKeyDown: onKeyDown, PopperComponent: CustomPopper })), allFields && queryType !== 'facet' ? (_jsx(FormControlLabel, { control: _jsx(Checkbox, { size: "small", checked: allFields, onChange: (__, checked) => setAllFields(checked) }), label: t('route.advanced.fields.all'), sx: { '& > span': { color: 'text.secondary' }, alignSelf: 'start' } })) : (_jsx(Autocomplete, { fullWidth: true, renderTags: values => values.length <= 3 ? (_jsx(Stack, { direction: "row", spacing: 0.5, children: values.map(_value => (_jsx(Chip, { label: _value }, _value))) })) : (_jsx(Tooltip, { title: _jsx(Stack, { spacing: 1, children: values.map(_value => (_jsx("span", { children: _value }, _value))) }), children: _jsx(Chip, { label: values.length }) })), multiple: true, size: "small", options: fieldOptions, value: fields, onChange: (__, values) => (values.length > 0 ? setFields(values) : setAllFields(true)), renderInput: params => _jsx(TextField, { ...params, label: t('route.advanced.fields') }), sx: { maxWidth: '500px', width: '20vw', minWidth: '200px', '& label': { zIndex: 1200 } }, onKeyDown: onKeyDown, PopperComponent: CustomPopper })), _jsx(FlexOne, {}), type === 'lucene' &&
236
+ ], slotProps: { paper: { sx: { minWidth: '600px' } } } }), _jsx(Card, { variant: "outlined", sx: { flex: 1, maxWidth: '350px', minWidth: '210px' }, children: _jsxs(Stack, { spacing: 0.5, sx: { px: 1, alignItems: 'start' }, children: [_jsxs(Typography, { variant: "caption", color: "text.secondary", sx: { whiteSpace: 'nowrap' }, children: [t('route.advanced.rows'), ": ", STEPS[rows]] }), _jsx(Slider, { size: "small", valueLabelDisplay: "off", value: rows, onChange: (_, value) => setRows(value), min: 0, max: 9, step: 1, marks: true, track: false, sx: { py: 0.5 } })] }) })] }), type === 'lucene' && (_jsx(Autocomplete, { size: "small", getOptionLabel: opt => t(`route.advanced.query.type.${opt}`), options: LUCENE_QUERY_OPTIONS, value: queryType, onChange: (_event, value) => setQueryType(value), renderInput: params => (_jsx(TextField, { ...params, label: t('route.advanced.query.lucene.type'), sx: { minWidth: '230px' } })), renderOption: (props, option) => (_jsx(ListItemText, { ...props, sx: { flexDirection: 'column', alignItems: 'start !important' }, primary: t(`route.advanced.query.type.${option}`), secondary: t(`route.advanced.query.type.${option}.description`) })) })), queryType === 'groupby' && (_jsx(Autocomplete, { size: "small", options: fieldOptions, value: groupByField, onChange: (__, value) => setGroupByField(value), renderInput: params => _jsx(TextField, { ...params, label: t('route.advanced.pivot.field') }), sx: { minWidth: '200px', '& label': { zIndex: 1200 } }, onKeyDown: onKeyDown, PopperComponent: CustomPopper })), allFields && queryType !== 'facet' ? (_jsx(FormControlLabel, { control: _jsx(Checkbox, { size: "small", checked: allFields, onChange: (__, checked) => setAllFields(checked) }), label: t('route.advanced.fields.all'), sx: { '& > span': { color: 'text.secondary' }, alignSelf: 'start' } })) : (_jsx(Autocomplete, { fullWidth: true, renderTags: values => values.length <= 3 ? (_jsx(Stack, { direction: "row", spacing: 0.5, children: values.map(_value => (_jsx(Chip, { size: "small", label: _value }, _value))) })) : (_jsx(Tooltip, { title: _jsx(Stack, { spacing: 1, children: values.map(_value => (_jsx("span", { children: _value }, _value))) }), children: _jsx(Chip, { size: "small", label: values.length }) })), multiple: true, size: "small", options: fieldOptions, value: fields, onChange: (__, values) => (values.length > 0 ? setFields(values) : setAllFields(true)), renderInput: params => _jsx(TextField, { ...params, label: t('route.advanced.fields') }), sx: { maxWidth: '500px', width: '20vw', minWidth: '200px', '& label': { zIndex: 1200 } }, onKeyDown: onKeyDown, PopperComponent: CustomPopper })), _jsx(FlexOne, {}), type === 'lucene' &&
237
237
  (smallButtons ? (_jsx(Tooltip, { title: t('route.advanced.open'), children: _jsx(IconButton, { color: "primary", sx: { alignSelf: 'center' }, component: Link, disabled: !response, to: `/hits?query=${sanitizeMultilineLucene(query).replaceAll('\n', ' ').trim()}`, children: _jsx(OpenInNew, { fontSize: "small" }) }) })) : (_jsx(CustomButton, { size: "small", variant: "outlined", startIcon: _jsx(OpenInNew, {}), component: Link, disabled: !response, ...{ to: `/hits?query=${sanitizeMultilineLucene(query).replaceAll('\n', ' ').trim()}` }, children: t('route.advanced.open') }))), smallButtons ? (_jsx(Tooltip, { title: response ? t('route.advanced.create.rule') : t('route.advanced.create.rule.disabled'), children: _jsx(IconButton, { size: "small", sx: { alignSelf: 'center' }, color: "info", onClick: onCreateRule, disabled: !response, children: _jsx(SsidChart, {}) }) })) : (_jsx(CustomButton, { size: "small", variant: "outlined", color: "info", startIcon: _jsx(SsidChart, {}), onClick: onCreateRule, disabled: !response, ...{ to: `/hits?query=${sanitizeMultilineLucene(query).replaceAll('\n', ' ').trim()}` }, tooltip: !response && t('route.advanced.create.rule.disabled'), children: t('route.advanced.create.rule') }))] }), _jsxs(Box, { width: "100%", height: "calc(100vh - 112px)", sx: { position: 'relative', overflow: 'hidden', borderTop: `thin solid ${theme.palette.divider}` }, children: [_jsx(Box, { sx: {
238
238
  position: 'absolute',
239
239
  top: 0,
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { useMonaco } from '@monaco-editor/react';
3
3
  import { Box, useTheme } from '@mui/material';
4
4
  import { ApiConfigContext } from '@cccsaurora/howler-ui/components/app/providers/ApiConfigProvider';
5
- import { RecordSearchContext } from '@cccsaurora/howler-ui/components/app/providers/RecordSearchProvider';
5
+ import { HitSearchContext } from '@cccsaurora/howler-ui/components/app/providers/HitSearchProvider';
6
6
  import ThemedEditor from '@cccsaurora/howler-ui/components/elements/ThemedEditor';
7
7
  import { memo, useCallback, useContext, useEffect, useMemo } from 'react';
8
8
  import { useContextSelector } from 'use-context-selector';
@@ -20,8 +20,8 @@ const QueryEditor = ({ query, setQuery, onMount, language = 'lucene', fontSize =
20
20
  const yamlCompletion = useYamlCompletionProvider();
21
21
  const eqlCompletion = useEQLCompletionProvider();
22
22
  const historyCompletion = useHistoryCompletionProvider();
23
- const fzfSearch = useContextSelector(RecordSearchContext, ctx => ctx?.fzfSearch ?? false);
24
- const setFzfSearch = useContextSelector(RecordSearchContext, ctx => ctx?.setFzfSearch);
23
+ const fzfSearch = useContextSelector(HitSearchContext, ctx => ctx?.fzfSearch ?? false);
24
+ const setFzfSearch = useContextSelector(HitSearchContext, ctx => ctx?.setFzfSearch);
25
25
  const beforeEditorMount = useCallback((_monaco) => {
26
26
  _monaco.languages.register({ id: 'lucene' });
27
27
  _monaco.languages.register({ id: 'eql' });
@@ -1,13 +1,13 @@
1
1
  import { useMonaco } from '@monaco-editor/react';
2
- import { RecordSearchContext } from '@cccsaurora/howler-ui/components/app/providers/RecordSearchProvider';
2
+ import { HitSearchContext } from '@cccsaurora/howler-ui/components/app/providers/HitSearchProvider';
3
3
  import Fuse from 'fuse.js';
4
4
  import { useMemo } from 'react';
5
5
  import { useContextSelector } from 'use-context-selector';
6
6
  import { twitterShort } from '@cccsaurora/howler-ui/utils/utils';
7
7
  const useHistoryCompletionProvider = () => {
8
8
  const monaco = useMonaco();
9
- const fzfSearch = useContextSelector(RecordSearchContext, ctx => ctx?.fzfSearch);
10
- const queryHistory = useContextSelector(RecordSearchContext, ctx => ctx?.queryHistory ?? {});
9
+ const fzfSearch = useContextSelector(HitSearchContext, ctx => ctx?.fzfSearch);
10
+ const queryHistory = useContextSelector(HitSearchContext, ctx => ctx?.queryHistory ?? {});
11
11
  // Using fuse for fuzzy searching
12
12
  const fuse = useMemo(() => new Fuse(Object.keys(queryHistory), { keys: ['key'], threshold: 0.4 }), [queryHistory]);
13
13
  return {
@@ -51,7 +51,7 @@ const AnalyticDetails = () => {
51
51
  _setFilter(detection);
52
52
  }
53
53
  }, [filter]);
54
- const onOwnerChange = useCallback(async ([ownerId]) => {
54
+ const onOwnerChange = useCallback(async (ownerId) => {
55
55
  const result = await dispatchApi(api.analytic.owner.post(analytic.analytic_id, { username: ownerId }), {
56
56
  throwError: true,
57
57
  showError: true
@@ -108,7 +108,7 @@ const AnalyticDetails = () => {
108
108
  marginTop: '0 !important',
109
109
  marginLeft: `${theme.spacing(-1)} !important`,
110
110
  marginRight: `${theme.spacing(-1)} !important`
111
- }, userIds: [analytic?.owner], onChange: onOwnerChange, i18nLabel: "route.analytics.set.owner" })) : (_jsx(HowlerAvatar, { userId: analytic?.owner })), _jsx(Stack, { children: users[analytic?.owner] ? (_jsxs(_Fragment, { children: [_jsx(Typography, { variant: "body1", children: users[analytic?.owner].name }), _jsx(Typography, { component: "a", href: `mailto:${users[analytic?.owner].email}`, variant: "caption", color: "text.secondary", children: users[analytic?.owner].email })] })) : (_jsxs(_Fragment, { children: [_jsx(Skeleton, { variant: "text", width: "70px" }), _jsx(Skeleton, { variant: "text", width: "60px" })] })) })] })] }), filteredContributors.length > 0 && (_jsxs(Stack, { spacing: 1, children: [_jsx(Typography, { variant: "body1", color: "text.secondary", children: t('route.analytics.contributors') }), _jsx(Stack, { direction: "row", alignItems: "center", spacing: 1, children: filteredContributors.map(_user => (_jsx(HowlerAvatar, { userId: _user }, _user))) })] })), analytic?.rule_crontab && (_jsxs(Stack, { direction: "row", spacing: 1, children: [_jsxs(Stack, { spacing: 1, justifyContent: "space-between", children: [_jsx(Typography, { variant: "body1", color: "text.secondary", children: t('rule.interval') }), editingInterval ? (_jsxs(FormControl, { sx: { minWidth: '200px' }, children: [_jsx(InputLabel, { children: t('rule.interval') }), _jsx(Select, { size: "small", label: t('rule.interval'), onChange: event => setCrontab(event.target.value), value: crontab, children: RULE_INTERVALS.map(interval => (_jsx(MenuItem, { value: interval.crontab, children: t(interval.key) }, interval.key))) })] })) : (_jsx("code", { style: {
111
+ }, userId: analytic?.owner, onChange: onOwnerChange, i18nLabel: "route.analytics.set.owner" })) : (_jsx(HowlerAvatar, { userId: analytic?.owner })), _jsx(Stack, { children: users[analytic?.owner] ? (_jsxs(_Fragment, { children: [_jsx(Typography, { variant: "body1", children: users[analytic?.owner].name }), _jsx(Typography, { component: "a", href: `mailto:${users[analytic?.owner].email}`, variant: "caption", color: "text.secondary", children: users[analytic?.owner].email })] })) : (_jsxs(_Fragment, { children: [_jsx(Skeleton, { variant: "text", width: "70px" }), _jsx(Skeleton, { variant: "text", width: "60px" })] })) })] })] }), filteredContributors.length > 0 && (_jsxs(Stack, { spacing: 1, children: [_jsx(Typography, { variant: "body1", color: "text.secondary", children: t('route.analytics.contributors') }), _jsx(Stack, { direction: "row", alignItems: "center", spacing: 1, children: filteredContributors.map(_user => (_jsx(HowlerAvatar, { userId: _user }, _user))) })] })), analytic?.rule_crontab && (_jsxs(Stack, { direction: "row", spacing: 1, children: [_jsxs(Stack, { spacing: 1, justifyContent: "space-between", children: [_jsx(Typography, { variant: "body1", color: "text.secondary", children: t('rule.interval') }), editingInterval ? (_jsxs(FormControl, { sx: { minWidth: '200px' }, children: [_jsx(InputLabel, { children: t('rule.interval') }), _jsx(Select, { size: "small", label: t('rule.interval'), onChange: event => setCrontab(event.target.value), value: crontab, children: RULE_INTERVALS.map(interval => (_jsx(MenuItem, { value: interval.crontab, children: t(interval.key) }, interval.key))) })] })) : (_jsx("code", { style: {
112
112
  backgroundColor: theme.palette.background.paper,
113
113
  padding: theme.spacing(0.5),
114
114
  alignSelf: 'start',
@@ -128,7 +128,7 @@ const AnalyticSearchBase = () => {
128
128
  padding: theme.spacing(0.5),
129
129
  borderRadius: theme.shape.borderRadius,
130
130
  border: `thin solid ${theme.palette.divider}`
131
- }, children: item.item.rule_type })] })), _jsx(FlexOne, {}), _jsxs(Stack, { direction: "row", spacing: 1, sx: { mt: 1 }, children: [item.item.owner && _jsx(HowlerAvatar, { sx: { width: 24, height: 24 }, userId: item.item.owner }), filteredContributors.length > 0 && _jsx(Divider, { orientation: "vertical", flexItem: true }), _jsx(AvatarGroup, { children: filteredContributors.map(contributor => (_jsx(HowlerAvatar, { sx: { width: 24, height: 24 }, userId: contributor }, contributor))) })] }), _jsx(Tooltip, { title: t('button.pin'), children: _jsx(IconButton, { size: "small", onClick: e => onFavourite(e, item.item), children: appUser.user?.favourite_analytics?.includes(item.item.analytic_id) ? _jsx(Star, {}) : _jsx(StarBorder, {}) }) })] }) }), item.item.detections?.length > 0 && (_jsx(CardContent, { sx: { paddingTop: 0 }, children: _jsxs(Grid, { container: true, spacing: 0.5, sx: { marginTop: `${theme.spacing(-0.5)} !important` }, children: [item.item.detections.slice(0, 5).map(d => (_jsx(Grid, { item: true, children: _jsx(Chip, { variant: "outlined", label: d }) }, d))), item.item.detections.length > 5 && (_jsx(Grid, { item: true, children: _jsx(Tooltip, { title: _jsx(Stack, { children: item.item.detections.slice(5).map(d => (_jsx("span", { children: d }, d))) }), children: _jsx(Chip, { variant: "outlined", label: `+ ${item.item.detections.length - 5}` }) }) }))] }) }))] }, item.item.name));
131
+ }, children: item.item.rule_type })] })), _jsx(FlexOne, {}), _jsxs(Stack, { direction: "row", spacing: 1, sx: { mt: 1 }, children: [item.item.owner && _jsx(HowlerAvatar, { sx: { width: 24, height: 24 }, userId: item.item.owner }), filteredContributors.length > 0 && _jsx(Divider, { orientation: "vertical", flexItem: true }), _jsx(AvatarGroup, { children: filteredContributors.map(contributor => (_jsx(HowlerAvatar, { sx: { width: 24, height: 24 }, userId: contributor }, contributor))) })] }), _jsx(Tooltip, { title: t('button.pin'), children: _jsx(IconButton, { size: "small", onClick: e => onFavourite(e, item.item), children: appUser.user?.favourite_analytics?.includes(item.item.analytic_id) ? _jsx(Star, {}) : _jsx(StarBorder, {}) }) })] }) }), item.item.detections?.length > 0 && (_jsx(CardContent, { sx: { paddingTop: 0 }, children: _jsxs(Grid, { container: true, spacing: 0.5, sx: { marginTop: `${theme.spacing(-0.5)} !important` }, children: [item.item.detections.slice(0, 5).map(d => (_jsx(Grid, { item: true, children: _jsx(Chip, { size: "small", variant: "outlined", label: d }) }, d))), item.item.detections.length > 5 && (_jsx(Grid, { item: true, children: _jsx(Tooltip, { title: _jsx(Stack, { children: item.item.detections.slice(5).map(d => (_jsx("span", { children: d }, d))) }), children: _jsx(Chip, { size: "small", variant: "outlined", label: `+ ${item.item.detections.length - 5}` }) }) }))] }) }))] }, item.item.name));
132
132
  }, [appUser.user?.favourite_analytics, navigate, onFavourite, t, theme]);
133
133
  return (_jsx(ItemManager, { onSearch: onSearch, onPageChange: onPageChange, phrase: phrase, setPhrase: setPhrase, hasError: hasError, searching: searching, searchAdornment: _jsx(InputAdornment, { position: "end", children: _jsx(Tooltip, { title: t(`route.analytics.search.filter.rules.${onlyRules < 0 ? 'hide' : onlyRules > 0 ? 'show' : 'toggle'}`), children: _jsx(IconButton, { onClick: () => setOnlyRules((((onlyRules + 2) % 3) - 1)), children: _jsx(SsidChart, { color: onlyRules < 0 ? 'error' : onlyRules > 0 ? 'info' : 'inherit', sx: { transition: theme.transitions.create(['color']) } }) }) }) }), aboveSearch: _jsx(Typography, { sx: { fontStyle: 'italic', color: theme.palette.text.disabled, mb: 0.5 }, variant: "body2", children: t('route.analytics.search.prompt') }), renderer: renderer, response: response, searchPrompt: "route.analytics.manager.search" }));
134
134
  };
@@ -13,7 +13,7 @@ import { useTranslation } from 'react-i18next';
13
13
  import { useNavigate, useParams, useSearchParams } from 'react-router-dom';
14
14
  import { useContextSelector } from 'use-context-selector';
15
15
  import QueryResultText from '../../elements/display/QueryResultText';
16
- import RecordQuery from '../hits/search/RecordQuery';
16
+ import HitQuery from '../hits/search/HitQuery';
17
17
  import LeadForm from './LeadForm';
18
18
  import PivotForm from './PivotForm';
19
19
  const DossierEditor = () => {
@@ -188,6 +188,6 @@ const DossierEditor = () => {
188
188
  fontSize: '0.9em',
189
189
  fontStyle: 'italic',
190
190
  mb: 0.5
191
- }), variant: "body2", children: t('hit.search.prompt') }), _jsx(RecordQuery, { disabled: !dossier || loading, onChange: (_val, isDirty) => setSearchDirty(isDirty), triggerSearch: query => setDossier(_dossier => ({ ..._dossier, query })) }), searchTotal >= 0 && _jsx(QueryResultText, { count: searchTotal, query: dossier.query })] }) }), _jsxs(Tabs, { value: tab, onChange: (_ev, value) => setTab(value), children: [_jsx(Tab, { label: t('route.dossiers.manager.tabs.leads'), value: "leads" }), _jsx(Tab, { label: t('route.dossiers.manager.tabs.pivots'), value: "pivots" })] }), tab === 'leads' && _jsx(LeadForm, { dossier: dossier, setDossier: setDossier, loading: loading }), tab === 'pivots' && _jsx(PivotForm, { dossier: dossier, setDossier: setDossier, loading: loading })] })] }) }));
191
+ }), variant: "body2", children: t('hit.search.prompt') }), _jsx(HitQuery, { disabled: !dossier || loading, onChange: (_val, isDirty) => setSearchDirty(isDirty), triggerSearch: query => setDossier(_dossier => ({ ..._dossier, query })) }), searchTotal >= 0 && _jsx(QueryResultText, { count: searchTotal, query: dossier.query })] }) }), _jsxs(Tabs, { value: tab, onChange: (_ev, value) => setTab(value), children: [_jsx(Tab, { label: t('route.dossiers.manager.tabs.leads'), value: "leads" }), _jsx(Tab, { label: t('route.dossiers.manager.tabs.pivots'), value: "pivots" })] }), tab === 'leads' && _jsx(LeadForm, { dossier: dossier, setDossier: setDossier, loading: loading }), tab === 'pivots' && _jsx(PivotForm, { dossier: dossier, setDossier: setDossier, loading: loading })] })] }) }));
192
192
  };
193
193
  export default memo(DossierEditor);
@@ -61,7 +61,7 @@ vi.mock('commons/components/pages/PageCenter', () => ({
61
61
  vi.mock('../../elements/display/QueryResultText', () => ({
62
62
  default: ({ count, query }) => (_jsxs("div", { id: "query-result-text", children: [count, " ", ' results for ', " ", query] }))
63
63
  }));
64
- vi.mock('../hits/search/RecordQuery', () => ({
64
+ vi.mock('../hits/search/HitQuery', () => ({
65
65
  default: ({ onChange, triggerSearch, disabled }) => {
66
66
  return (_jsxs("div", { id: "hit-query", children: [_jsx("input", { id: "query-input", disabled: disabled, onChange: e => {
67
67
  onChange?.(e.target.value, false);
@@ -49,7 +49,7 @@ const ApiDocumentation = () => {
49
49
  .replace(/(\S+)\s+=>\s+(.+)/g, '\n`$1`: $2\n')
50
50
  .replace(/(Data Block:\n)([\s\S]+)(Result Example:)/, (__, p1, p2, p3) => `${p1}\`\`\`\n${p2.trim()}\n\`\`\`\n${p3}`)
51
51
  .replace(/(Result Example:\n)([\s\S]+)$/, (__, p1, p2) => `${p1}\`\`\`\n${p2.trim()}\n\`\`\``) }));
52
- return (_jsxs(Fragment, { children: [_jsxs(TableRow, { style: { marginBottom: '1rem' }, sx: [isLg && { '& > td': { borderBottom: 0 } }], children: [_jsx(TableCell, { children: _jsxs(Stack, { direction: "column", spacing: 1, alignItems: "start", children: [_jsx(Typography, { children: endpoint.name }), _jsx("code", { children: endpoint.path }), _jsxs(Stack, { direction: "row", spacing: 1, children: [endpoint.complete ? (_jsx(Chip, { label: "Stable", color: "success" })) : (_jsx(Chip, { label: "Unstable", color: "error" })), endpoint.protected ? (_jsx(Chip, { label: "Protected", color: "warning" })) : (_jsx(Chip, { label: "Unprotected" }))] }), _jsx(Stack, { spacing: 1, direction: "row", children: endpoint.methods.map(m => (_jsx(Chip, { size: "small", label: m }, m))) }), endpoint.ui_only && _jsx(Chip, { label: "UI Only" })] }) }), _jsx(TableCell, { children: _jsx(Stack, { spacing: 1, direction: "row", children: endpoint.required_type.map(type => (_jsx(Chip, { size: "small", label: type, color: user.roles?.includes(type) ? 'success' : 'default' }, type))) }) }), _jsx(TableCell, { children: _jsx(Stack, { spacing: 1, direction: "row", children: endpoint.required_priv.map((p) => (_jsx(Chip, { size: "small", label: t(APIKEY_LABELS[p]) }, p))) }) }), !isLg && _jsx(TableCell, { children: documentationCell })] }), isLg && (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: 3, sx: { '& pre': { whiteSpace: 'pre-wrap' } }, children: documentationCell }) }))] }, endpoint.id));
52
+ return (_jsxs(Fragment, { children: [_jsxs(TableRow, { style: { marginBottom: '1rem' }, sx: [isLg && { '& > td': { borderBottom: 0 } }], children: [_jsx(TableCell, { children: _jsxs(Stack, { direction: "column", spacing: 1, alignItems: "start", children: [_jsx(Typography, { children: endpoint.name }), _jsx("code", { children: endpoint.path }), _jsxs(Stack, { direction: "row", spacing: 1, children: [endpoint.complete ? (_jsx(Chip, { size: "small", label: "Stable", color: "success" })) : (_jsx(Chip, { size: "small", label: "Unstable", color: "error" })), endpoint.protected ? (_jsx(Chip, { size: "small", label: "Protected", color: "warning" })) : (_jsx(Chip, { size: "small", label: "Unprotected" }))] }), _jsx(Stack, { spacing: 1, direction: "row", children: endpoint.methods.map(m => (_jsx(Chip, { size: "small", label: m }, m))) }), endpoint.ui_only && _jsx(Chip, { size: "small", label: "UI Only" })] }) }), _jsx(TableCell, { children: _jsx(Stack, { spacing: 1, direction: "row", children: endpoint.required_type.map(type => (_jsx(Chip, { size: "small", label: type, color: user.roles?.includes(type) ? 'success' : 'default' }, type))) }) }), _jsx(TableCell, { children: _jsx(Stack, { spacing: 1, direction: "row", children: endpoint.required_priv.map((p) => (_jsx(Chip, { size: "small", label: t(APIKEY_LABELS[p]) }, p))) }) }), !isLg && _jsx(TableCell, { children: documentationCell })] }), isLg && (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: 3, sx: { '& pre': { whiteSpace: 'pre-wrap' } }, children: documentationCell }) }))] }, endpoint.id));
53
53
  }) })] }) })] }) }));
54
54
  };
55
55
  export default ApiDocumentation;
@@ -0,0 +1,3 @@
1
+ import type { FC } from 'react';
2
+ declare const BundleDocumentation: FC;
3
+ export default BundleDocumentation;
@@ -0,0 +1,12 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import Markdown from '@cccsaurora/howler-ui/components/elements/display/Markdown';
3
+ import { useMemo } from 'react';
4
+ import { useTranslation } from 'react-i18next';
5
+ import BUNDLES_EN from './markdown/en/bundles.md';
6
+ import BUNDLES_FR from './markdown/fr/bundles.md';
7
+ const BundleDocumentation = () => {
8
+ const { i18n } = useTranslation();
9
+ const md = useMemo(() => (i18n.language === 'en' ? BUNDLES_EN : BUNDLES_FR), [i18n.language]);
10
+ return _jsx(Markdown, { md: md });
11
+ };
12
+ export default BundleDocumentation;
@@ -9,7 +9,6 @@ import { useTranslation } from 'react-i18next';
9
9
  const HitBannerDocumentation = () => {
10
10
  const { t } = useTranslation();
11
11
  const dummyHit = useMemo(() => ({
12
- __index: 'hit',
13
12
  timestamp: '2023-02-11T15:10:31.585826Z',
14
13
  howler: {
15
14
  id: 'howler.id',