@datarecce/ui 0.1.30 → 0.1.31

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 (549) hide show
  1. package/dist/api.d.mts +1 -1
  2. package/dist/api.d.ts +1 -1
  3. package/dist/components.d.mts +1 -1
  4. package/dist/components.d.ts +1 -1
  5. package/dist/hooks.d.mts +1 -1
  6. package/dist/hooks.d.ts +1 -1
  7. package/dist/{index-BNUP2V_N.d.ts → index-B9lSPJTi.d.ts} +184 -2
  8. package/dist/index-B9lSPJTi.d.ts.map +1 -0
  9. package/dist/{index-DOPZuhD8.d.mts → index-IIXVIoOL.d.mts} +253 -71
  10. package/dist/index-IIXVIoOL.d.mts.map +1 -0
  11. package/dist/index.d.mts +2 -2
  12. package/dist/index.d.ts +2 -2
  13. package/dist/index.js +8 -1
  14. package/dist/index.js.map +1 -1
  15. package/dist/index.mjs +3 -2
  16. package/dist/index.mjs.map +1 -1
  17. package/dist/styles.css +4 -0
  18. package/dist/theme.d.mts +2 -185
  19. package/dist/theme.d.ts +2 -185
  20. package/dist/types.d.mts +1 -1
  21. package/dist/types.d.ts +1 -1
  22. package/package.json +4 -2
  23. package/recce-source/.editorconfig +26 -0
  24. package/recce-source/.flake8 +37 -0
  25. package/recce-source/.github/ISSUE_TEMPLATE/bug_report.yml +67 -0
  26. package/recce-source/.github/ISSUE_TEMPLATE/custom.md +10 -0
  27. package/recce-source/.github/ISSUE_TEMPLATE/feature_request.yml +42 -0
  28. package/recce-source/.github/PULL_REQUEST_TEMPLATE.md +21 -0
  29. package/recce-source/.github/copilot-instructions.md +331 -0
  30. package/recce-source/.github/instructions/backend-instructions.md +541 -0
  31. package/recce-source/.github/instructions/frontend-instructions.md +317 -0
  32. package/recce-source/.github/workflows/build-statics.yaml +72 -0
  33. package/recce-source/.github/workflows/bump.yaml +48 -0
  34. package/recce-source/.github/workflows/integration-tests-cloud.yaml +92 -0
  35. package/recce-source/.github/workflows/integration-tests-sqlmesh.yaml +33 -0
  36. package/recce-source/.github/workflows/integration-tests.yaml +52 -0
  37. package/recce-source/.github/workflows/nightly.yaml +246 -0
  38. package/recce-source/.github/workflows/release.yaml +196 -0
  39. package/recce-source/.github/workflows/tests-js.yaml +58 -0
  40. package/recce-source/.github/workflows/tests-python.yaml +128 -0
  41. package/recce-source/.pre-commit-config.yaml +26 -0
  42. package/recce-source/CLAUDE.md +483 -0
  43. package/recce-source/CODE_OF_CONDUCT.md +128 -0
  44. package/recce-source/CONTRIBUTING.md +107 -0
  45. package/recce-source/LICENSE +201 -0
  46. package/recce-source/Makefile +126 -0
  47. package/recce-source/README.md +182 -0
  48. package/recce-source/RECCE_CLOUD.md +81 -0
  49. package/recce-source/SECURITY.md +25 -0
  50. package/recce-source/docs/PACKAGING.md +340 -0
  51. package/recce-source/docs/README.md +1 -0
  52. package/recce-source/integration_tests/dbt/dbt_project.yml +26 -0
  53. package/recce-source/integration_tests/dbt/models/customers.sql +69 -0
  54. package/recce-source/integration_tests/dbt/models/docs.md +14 -0
  55. package/recce-source/integration_tests/dbt/models/orders.sql +56 -0
  56. package/recce-source/integration_tests/dbt/models/schema.yml +82 -0
  57. package/recce-source/integration_tests/dbt/models/staging/schema.yml +31 -0
  58. package/recce-source/integration_tests/dbt/models/staging/stg_customers.sql +22 -0
  59. package/recce-source/integration_tests/dbt/models/staging/stg_orders.sql +23 -0
  60. package/recce-source/integration_tests/dbt/models/staging/stg_payments.sql +25 -0
  61. package/recce-source/integration_tests/dbt/packages.yml +7 -0
  62. package/recce-source/integration_tests/dbt/profiles.yml +8 -0
  63. package/recce-source/integration_tests/dbt/seeds/raw_customers.csv +101 -0
  64. package/recce-source/integration_tests/dbt/seeds/raw_orders.csv +100 -0
  65. package/recce-source/integration_tests/dbt/seeds/raw_payments.csv +114 -0
  66. package/recce-source/integration_tests/dbt/seeds/raw_statuses.csv +5 -0
  67. package/recce-source/integration_tests/dbt/smoke_test.sh +72 -0
  68. package/recce-source/integration_tests/dbt/smoke_test_cloud.sh +71 -0
  69. package/recce-source/integration_tests/sqlmesh/__init__.py +0 -0
  70. package/recce-source/integration_tests/sqlmesh/audits/assert_item_price_above_zero.sql +9 -0
  71. package/recce-source/integration_tests/sqlmesh/audits/items.sql +7 -0
  72. package/recce-source/integration_tests/sqlmesh/audits/order_items.sql +7 -0
  73. package/recce-source/integration_tests/sqlmesh/config.py +171 -0
  74. package/recce-source/integration_tests/sqlmesh/helper.py +20 -0
  75. package/recce-source/integration_tests/sqlmesh/hooks/__init__.py +0 -0
  76. package/recce-source/integration_tests/sqlmesh/macros/__init__.py +0 -0
  77. package/recce-source/integration_tests/sqlmesh/macros/macros.py +8 -0
  78. package/recce-source/integration_tests/sqlmesh/macros/macros.sql +8 -0
  79. package/recce-source/integration_tests/sqlmesh/macros/utils.py +11 -0
  80. package/recce-source/integration_tests/sqlmesh/metrics/metrics.sql +25 -0
  81. package/recce-source/integration_tests/sqlmesh/models/customer_revenue_by_day.sql +41 -0
  82. package/recce-source/integration_tests/sqlmesh/models/customer_revenue_lifetime.sql +60 -0
  83. package/recce-source/integration_tests/sqlmesh/models/customers.sql +32 -0
  84. package/recce-source/integration_tests/sqlmesh/models/items.py +95 -0
  85. package/recce-source/integration_tests/sqlmesh/models/marketing.sql +15 -0
  86. package/recce-source/integration_tests/sqlmesh/models/order_items.py +95 -0
  87. package/recce-source/integration_tests/sqlmesh/models/orders.py +70 -0
  88. package/recce-source/integration_tests/sqlmesh/models/raw_marketing.py +62 -0
  89. package/recce-source/integration_tests/sqlmesh/models/top_waiters.sql +23 -0
  90. package/recce-source/integration_tests/sqlmesh/models/waiter_as_customer_by_day.sql +29 -0
  91. package/recce-source/integration_tests/sqlmesh/models/waiter_names.sql +10 -0
  92. package/recce-source/integration_tests/sqlmesh/models/waiter_revenue_by_day.sql +29 -0
  93. package/recce-source/integration_tests/sqlmesh/models/waiters.py +62 -0
  94. package/recce-source/integration_tests/sqlmesh/prep_env.sh +16 -0
  95. package/recce-source/integration_tests/sqlmesh/schema.yaml +5 -0
  96. package/recce-source/integration_tests/sqlmesh/seeds/waiter_names.csv +11 -0
  97. package/recce-source/integration_tests/sqlmesh/test_server.sh +29 -0
  98. package/recce-source/integration_tests/sqlmesh/tests/test_customer_revenue_by_day.yaml +63 -0
  99. package/recce-source/integration_tests/sqlmesh/tests/test_order_items.yaml +72 -0
  100. package/recce-source/js/.editorconfig +27 -0
  101. package/recce-source/js/.env.development +5 -0
  102. package/recce-source/js/.husky/pre-commit +29 -0
  103. package/recce-source/js/.nvmrc +1 -0
  104. package/recce-source/js/README.md +39 -0
  105. package/recce-source/js/app/(mainComponents)/DisplayModeToggle.tsx +65 -0
  106. package/recce-source/js/app/(mainComponents)/NavBar.tsx +228 -0
  107. package/recce-source/js/app/(mainComponents)/RecceVersionBadge.tsx +107 -0
  108. package/recce-source/js/app/(mainComponents)/TopBar.tsx +252 -0
  109. package/recce-source/js/app/@lineage/default.tsx +20 -0
  110. package/recce-source/js/app/@lineage/page.tsx +14 -0
  111. package/recce-source/js/app/MainLayout.tsx +170 -0
  112. package/recce-source/js/app/Providers.tsx +49 -0
  113. package/recce-source/js/app/checks/page.tsx +296 -0
  114. package/recce-source/js/app/error.tsx +93 -0
  115. package/recce-source/js/app/favicon.ico +0 -0
  116. package/recce-source/js/app/global-error.tsx +115 -0
  117. package/recce-source/js/app/global.css +82 -0
  118. package/recce-source/js/app/layout.tsx +48 -0
  119. package/recce-source/js/app/lineage/page.tsx +15 -0
  120. package/recce-source/js/app/page.tsx +12 -0
  121. package/recce-source/js/app/query/page.tsx +8 -0
  122. package/recce-source/js/biome.json +313 -0
  123. package/recce-source/js/jest.config.js +34 -0
  124. package/recce-source/js/jest.globals.d.ts +32 -0
  125. package/recce-source/js/jest.setup.js +91 -0
  126. package/recce-source/js/next.config.js +16 -0
  127. package/recce-source/js/package-lock.json +13843 -0
  128. package/recce-source/js/package.json +123 -0
  129. package/recce-source/js/pnpm-lock.yaml +9235 -0
  130. package/recce-source/js/pnpm-workspace.yaml +6 -0
  131. package/recce-source/js/postcss.config.js +5 -0
  132. package/recce-source/js/public/auth_callback.html +68 -0
  133. package/recce-source/js/public/imgs/feedback/thumbs-down.png +0 -0
  134. package/recce-source/js/public/imgs/feedback/thumbs-up.png +0 -0
  135. package/recce-source/js/public/imgs/reload-image.svg +4 -0
  136. package/recce-source/js/public/logo/recce-logo-white.png +0 -0
  137. package/recce-source/js/src/components/AuthModal/AuthModal.tsx +202 -0
  138. package/recce-source/js/src/components/app/AvatarDropdown.tsx +159 -0
  139. package/recce-source/js/src/components/app/EnvInfo.tsx +357 -0
  140. package/recce-source/js/src/components/app/Filename.tsx +388 -0
  141. package/recce-source/js/src/components/app/SetupConnectionPopover.tsx +91 -0
  142. package/recce-source/js/src/components/app/StateExporter.tsx +57 -0
  143. package/recce-source/js/src/components/app/StateImporter.tsx +198 -0
  144. package/recce-source/js/src/components/app/StateSharing.tsx +145 -0
  145. package/recce-source/js/src/components/app/StateSynchronizer.tsx +205 -0
  146. package/recce-source/js/src/components/charts/HistogramChart.tsx +291 -0
  147. package/recce-source/js/src/components/charts/SquareIcon.tsx +51 -0
  148. package/recce-source/js/src/components/charts/TopKSummaryList.tsx +457 -0
  149. package/recce-source/js/src/components/charts/chartTheme.ts +74 -0
  150. package/recce-source/js/src/components/check/CheckBreadcrumb.tsx +97 -0
  151. package/recce-source/js/src/components/check/CheckDescription.tsx +134 -0
  152. package/recce-source/js/src/components/check/CheckDetail.tsx +797 -0
  153. package/recce-source/js/src/components/check/CheckEmptyState.tsx +84 -0
  154. package/recce-source/js/src/components/check/CheckList.tsx +320 -0
  155. package/recce-source/js/src/components/check/LineageDiffView.tsx +32 -0
  156. package/recce-source/js/src/components/check/PresetCheckTemplateView.tsx +48 -0
  157. package/recce-source/js/src/components/check/SchemaDiffView.tsx +290 -0
  158. package/recce-source/js/src/components/check/check.ts +25 -0
  159. package/recce-source/js/src/components/check/timeline/CheckTimeline.tsx +163 -0
  160. package/recce-source/js/src/components/check/timeline/CommentInput.tsx +84 -0
  161. package/recce-source/js/src/components/check/timeline/TimelineEvent.tsx +468 -0
  162. package/recce-source/js/src/components/check/timeline/index.ts +12 -0
  163. package/recce-source/js/src/components/check/utils.ts +12 -0
  164. package/recce-source/js/src/components/data-grid/ScreenshotDataGrid.tsx +333 -0
  165. package/recce-source/js/src/components/data-grid/agGridStyles.css +55 -0
  166. package/recce-source/js/src/components/data-grid/agGridTheme.ts +43 -0
  167. package/recce-source/js/src/components/editor/CodeEditor.tsx +107 -0
  168. package/recce-source/js/src/components/editor/DiffEditor.tsx +162 -0
  169. package/recce-source/js/src/components/editor/index.ts +12 -0
  170. package/recce-source/js/src/components/errorboundary/ErrorBoundary.tsx +87 -0
  171. package/recce-source/js/src/components/histogram/HistogramDiffForm.tsx +147 -0
  172. package/recce-source/js/src/components/histogram/HistogramDiffResultView.tsx +63 -0
  173. package/recce-source/js/src/components/icons/index.tsx +142 -0
  174. package/recce-source/js/src/components/lineage/ActionControl.tsx +63 -0
  175. package/recce-source/js/src/components/lineage/ActionTag.tsx +141 -0
  176. package/recce-source/js/src/components/lineage/ChangeStatusLegend.tsx +46 -0
  177. package/recce-source/js/src/components/lineage/ColumnLevelLineageControl.tsx +327 -0
  178. package/recce-source/js/src/components/lineage/ColumnLevelLineageLegend.tsx +57 -0
  179. package/recce-source/js/src/components/lineage/GraphColumnNode.tsx +199 -0
  180. package/recce-source/js/src/components/lineage/GraphEdge.tsx +59 -0
  181. package/recce-source/js/src/components/lineage/GraphNode.tsx +555 -0
  182. package/recce-source/js/src/components/lineage/LineagePage.tsx +10 -0
  183. package/recce-source/js/src/components/lineage/LineageView.tsx +1384 -0
  184. package/recce-source/js/src/components/lineage/LineageViewContext.tsx +86 -0
  185. package/recce-source/js/src/components/lineage/LineageViewContextMenu.tsx +637 -0
  186. package/recce-source/js/src/components/lineage/LineageViewNotification.tsx +64 -0
  187. package/recce-source/js/src/components/lineage/LineageViewTopBar.tsx +596 -0
  188. package/recce-source/js/src/components/lineage/NodeSqlView.tsx +136 -0
  189. package/recce-source/js/src/components/lineage/NodeTag.tsx +278 -0
  190. package/recce-source/js/src/components/lineage/NodeView.tsx +642 -0
  191. package/recce-source/js/src/components/lineage/SandboxView.tsx +436 -0
  192. package/recce-source/js/src/components/lineage/ServerDisconnectedModalContent.tsx +105 -0
  193. package/recce-source/js/src/components/lineage/SetupConnectionBanner.tsx +52 -0
  194. package/recce-source/js/src/components/lineage/SingleEnvironmentQueryView.tsx +152 -0
  195. package/recce-source/js/src/components/lineage/graph.test.ts +31 -0
  196. package/recce-source/js/src/components/lineage/graph.ts +58 -0
  197. package/recce-source/js/src/components/lineage/lineage.test.ts +169 -0
  198. package/recce-source/js/src/components/lineage/lineage.ts +521 -0
  199. package/recce-source/js/src/components/lineage/styles.css +42 -0
  200. package/recce-source/js/src/components/lineage/styles.tsx +165 -0
  201. package/recce-source/js/src/components/lineage/useMultiNodesAction.ts +352 -0
  202. package/recce-source/js/src/components/lineage/useValueDiffAlertDialog.tsx +108 -0
  203. package/recce-source/js/src/components/onboarding-guide/Notification.tsx +62 -0
  204. package/recce-source/js/src/components/profile/ProfileDiffForm.tsx +134 -0
  205. package/recce-source/js/src/components/profile/ProfileDiffResultView.tsx +245 -0
  206. package/recce-source/js/src/components/query/ChangedOnlyCheckbox.tsx +29 -0
  207. package/recce-source/js/src/components/query/DiffText.tsx +120 -0
  208. package/recce-source/js/src/components/query/QueryDiffResultView.tsx +470 -0
  209. package/recce-source/js/src/components/query/QueryForm.tsx +80 -0
  210. package/recce-source/js/src/components/query/QueryPage.tsx +282 -0
  211. package/recce-source/js/src/components/query/QueryResultView.tsx +180 -0
  212. package/recce-source/js/src/components/query/SetupConnectionGuide.tsx +57 -0
  213. package/recce-source/js/src/components/query/SqlEditor.tsx +245 -0
  214. package/recce-source/js/src/components/query/ToggleSwitch.tsx +84 -0
  215. package/recce-source/js/src/components/query/styles.css +21 -0
  216. package/recce-source/js/src/components/routing/DirectUrlAccess.test.tsx +428 -0
  217. package/recce-source/js/src/components/routing/LineageStatePreservation.test.tsx +311 -0
  218. package/recce-source/js/src/components/routing/Navigation.test.tsx +256 -0
  219. package/recce-source/js/src/components/rowcount/RowCountDiffResultView.tsx +109 -0
  220. package/recce-source/js/src/components/rowcount/delta.ts +11 -0
  221. package/recce-source/js/src/components/run/RunList.tsx +303 -0
  222. package/recce-source/js/src/components/run/RunModal.tsx +191 -0
  223. package/recce-source/js/src/components/run/RunPage.tsx +26 -0
  224. package/recce-source/js/src/components/run/RunResultPane.tsx +454 -0
  225. package/recce-source/js/src/components/run/RunStatusAndDate.tsx +106 -0
  226. package/recce-source/js/src/components/run/RunToolbar.tsx +70 -0
  227. package/recce-source/js/src/components/run/RunView.tsx +196 -0
  228. package/recce-source/js/src/components/run/registry.ts +214 -0
  229. package/recce-source/js/src/components/run/types.ts +14 -0
  230. package/recce-source/js/src/components/schema/ColumnNameCell.test.tsx +169 -0
  231. package/recce-source/js/src/components/schema/ColumnNameCell.tsx +198 -0
  232. package/recce-source/js/src/components/schema/SchemaView.tsx +337 -0
  233. package/recce-source/js/src/components/schema/schemaDiff.ts +32 -0
  234. package/recce-source/js/src/components/schema/style.css +134 -0
  235. package/recce-source/js/src/components/screenshot/ScreenshotBox.tsx +39 -0
  236. package/recce-source/js/src/components/shared/HistoryToggle.tsx +35 -0
  237. package/recce-source/js/src/components/split/Split.tsx +40 -0
  238. package/recce-source/js/src/components/split/styles.css +24 -0
  239. package/recce-source/js/src/components/summary/ChangeSummary.tsx +264 -0
  240. package/recce-source/js/src/components/summary/SchemaSummary.tsx +123 -0
  241. package/recce-source/js/src/components/summary/SummaryView.tsx +29 -0
  242. package/recce-source/js/src/components/timeout/IdleTimeoutBadge.tsx +48 -0
  243. package/recce-source/js/src/components/top-k/TopKDiffForm.tsx +58 -0
  244. package/recce-source/js/src/components/top-k/TopKDiffResultView.tsx +73 -0
  245. package/recce-source/js/src/components/ui/dataGrid/DataFrameColumnGroupHeader.tsx +228 -0
  246. package/recce-source/js/src/components/ui/dataGrid/DataFrameColumnHeader.tsx +113 -0
  247. package/recce-source/js/src/components/ui/dataGrid/defaultRenderCell.tsx +72 -0
  248. package/recce-source/js/src/components/ui/dataGrid/index.ts +23 -0
  249. package/recce-source/js/src/components/ui/dataGrid/inlineRenderCell.test.tsx +607 -0
  250. package/recce-source/js/src/components/ui/dataGrid/inlineRenderCell.tsx +211 -0
  251. package/recce-source/js/src/components/ui/dataGrid/schemaCells.test.tsx +452 -0
  252. package/recce-source/js/src/components/ui/dataGrid/schemaCells.tsx +142 -0
  253. package/recce-source/js/src/components/ui/dataGrid/valueDiffCells.test.tsx +178 -0
  254. package/recce-source/js/src/components/ui/dataGrid/valueDiffCells.tsx +275 -0
  255. package/recce-source/js/src/components/ui/markdown/ExternalLinkConfirmDialog.tsx +134 -0
  256. package/recce-source/js/src/components/ui/markdown/MarkdownContent.tsx +364 -0
  257. package/recce-source/js/src/components/ui/mui/index.ts +13 -0
  258. package/recce-source/js/src/components/ui/mui-provider.tsx +67 -0
  259. package/recce-source/js/src/components/ui/mui-theme.ts +1039 -0
  260. package/recce-source/js/src/components/ui/mui-utils.ts +113 -0
  261. package/recce-source/js/src/components/ui/toaster.tsx +288 -0
  262. package/recce-source/js/src/components/valuediff/ValueDiffDetailResultView.tsx +217 -0
  263. package/recce-source/js/src/components/valuediff/ValueDiffForm.tsx +246 -0
  264. package/recce-source/js/src/components/valuediff/ValueDiffResultView.tsx +82 -0
  265. package/recce-source/js/src/components/valuediff/shared.ts +33 -0
  266. package/recce-source/js/src/constants/tooltipMessage.ts +3 -0
  267. package/recce-source/js/src/constants/urls.ts +1 -0
  268. package/recce-source/js/src/lib/UrlHash.ts +12 -0
  269. package/recce-source/js/src/lib/api/adhocQuery.ts +70 -0
  270. package/recce-source/js/src/lib/api/axiosClient.ts +9 -0
  271. package/recce-source/js/src/lib/api/cacheKeys.ts +13 -0
  272. package/recce-source/js/src/lib/api/checkEvents.ts +252 -0
  273. package/recce-source/js/src/lib/api/checks.ts +129 -0
  274. package/recce-source/js/src/lib/api/cll.ts +53 -0
  275. package/recce-source/js/src/lib/api/connectToCloud.ts +13 -0
  276. package/recce-source/js/src/lib/api/flag.ts +37 -0
  277. package/recce-source/js/src/lib/api/info.ts +198 -0
  278. package/recce-source/js/src/lib/api/instanceInfo.ts +25 -0
  279. package/recce-source/js/src/lib/api/keepAlive.ts +108 -0
  280. package/recce-source/js/src/lib/api/lineagecheck.ts +35 -0
  281. package/recce-source/js/src/lib/api/localStorageKeys.ts +7 -0
  282. package/recce-source/js/src/lib/api/models.ts +59 -0
  283. package/recce-source/js/src/lib/api/profile.ts +65 -0
  284. package/recce-source/js/src/lib/api/rowcount.ts +19 -0
  285. package/recce-source/js/src/lib/api/runs.ts +174 -0
  286. package/recce-source/js/src/lib/api/schemacheck.ts +31 -0
  287. package/recce-source/js/src/lib/api/select.ts +25 -0
  288. package/recce-source/js/src/lib/api/sessionStorageKeys.ts +8 -0
  289. package/recce-source/js/src/lib/api/state.ts +117 -0
  290. package/recce-source/js/src/lib/api/track.ts +281 -0
  291. package/recce-source/js/src/lib/api/types.ts +284 -0
  292. package/recce-source/js/src/lib/api/user.ts +42 -0
  293. package/recce-source/js/src/lib/api/valuediff.ts +46 -0
  294. package/recce-source/js/src/lib/api/version.ts +40 -0
  295. package/recce-source/js/src/lib/const.ts +9 -0
  296. package/recce-source/js/src/lib/dataGrid/crossFunctionConsistency.test.ts +626 -0
  297. package/recce-source/js/src/lib/dataGrid/dataGridFactory.test.ts +2140 -0
  298. package/recce-source/js/src/lib/dataGrid/dataGridFactory.ts +397 -0
  299. package/recce-source/js/src/lib/dataGrid/generators/rowCountUtils.test.ts +132 -0
  300. package/recce-source/js/src/lib/dataGrid/generators/rowCountUtils.ts +126 -0
  301. package/recce-source/js/src/lib/dataGrid/generators/toDataDiffGrid.test.ts +1627 -0
  302. package/recce-source/js/src/lib/dataGrid/generators/toDataDiffGrid.ts +140 -0
  303. package/recce-source/js/src/lib/dataGrid/generators/toDataGrid.ts +67 -0
  304. package/recce-source/js/src/lib/dataGrid/generators/toRowCountDataGrid.test.ts +142 -0
  305. package/recce-source/js/src/lib/dataGrid/generators/toRowCountDataGrid.ts +71 -0
  306. package/recce-source/js/src/lib/dataGrid/generators/toRowCountDiffDataGrid.test.ts +258 -0
  307. package/recce-source/js/src/lib/dataGrid/generators/toRowCountDiffDataGrid.ts +153 -0
  308. package/recce-source/js/src/lib/dataGrid/generators/toSchemaDataGrid.test.ts +951 -0
  309. package/recce-source/js/src/lib/dataGrid/generators/toSchemaDataGrid.ts +221 -0
  310. package/recce-source/js/src/lib/dataGrid/generators/toValueDataGrid.test.ts +395 -0
  311. package/recce-source/js/src/lib/dataGrid/generators/toValueDataGrid.ts +184 -0
  312. package/recce-source/js/src/lib/dataGrid/generators/toValueDiffGrid.test.ts +884 -0
  313. package/recce-source/js/src/lib/dataGrid/generators/toValueDiffGrid.ts +113 -0
  314. package/recce-source/js/src/lib/dataGrid/index.ts +51 -0
  315. package/recce-source/js/src/lib/dataGrid/propertyBased.test.ts +858 -0
  316. package/recce-source/js/src/lib/dataGrid/shared/columnBuilders.test.ts +482 -0
  317. package/recce-source/js/src/lib/dataGrid/shared/columnBuilders.ts +345 -0
  318. package/recce-source/js/src/lib/dataGrid/shared/dataTypeEdgeCases.test.ts +698 -0
  319. package/recce-source/js/src/lib/dataGrid/shared/diffColumnBuilder.test.tsx +820 -0
  320. package/recce-source/js/src/lib/dataGrid/shared/diffColumnBuilder.tsx +277 -0
  321. package/recce-source/js/src/lib/dataGrid/shared/gridUtils.test.ts +785 -0
  322. package/recce-source/js/src/lib/dataGrid/shared/gridUtils.ts +370 -0
  323. package/recce-source/js/src/lib/dataGrid/shared/index.ts +81 -0
  324. package/recce-source/js/src/lib/dataGrid/shared/rowBuilders.test.ts +909 -0
  325. package/recce-source/js/src/lib/dataGrid/shared/rowBuilders.ts +325 -0
  326. package/recce-source/js/src/lib/dataGrid/shared/simpleColumnBuilder.tsx +240 -0
  327. package/recce-source/js/src/lib/dataGrid/shared/toDiffColumn.test.tsx +719 -0
  328. package/recce-source/js/src/lib/dataGrid/shared/toDiffColumn.tsx +231 -0
  329. package/recce-source/js/src/lib/dataGrid/shared/validation.test.ts +559 -0
  330. package/recce-source/js/src/lib/dataGrid/shared/validation.ts +367 -0
  331. package/recce-source/js/src/lib/dataGrid/warehouseNamingConventions.test.ts +1117 -0
  332. package/recce-source/js/src/lib/formatSelect.ts +50 -0
  333. package/recce-source/js/src/lib/hooks/ApiConfigContext.tsx +181 -0
  334. package/recce-source/js/src/lib/hooks/IdleTimeoutContext.tsx +177 -0
  335. package/recce-source/js/src/lib/hooks/LineageGraphContext.tsx +512 -0
  336. package/recce-source/js/src/lib/hooks/RecceActionContext.tsx +269 -0
  337. package/recce-source/js/src/lib/hooks/RecceCheckContext.tsx +33 -0
  338. package/recce-source/js/src/lib/hooks/RecceContextProvider.tsx +54 -0
  339. package/recce-source/js/src/lib/hooks/RecceInstanceContext.tsx +129 -0
  340. package/recce-source/js/src/lib/hooks/RecceQueryContext.tsx +98 -0
  341. package/recce-source/js/src/lib/hooks/RecceShareStateContext.tsx +59 -0
  342. package/recce-source/js/src/lib/hooks/ScreenShot.tsx +399 -0
  343. package/recce-source/js/src/lib/hooks/useAppRouter.test.ts +211 -0
  344. package/recce-source/js/src/lib/hooks/useAppRouter.ts +200 -0
  345. package/recce-source/js/src/lib/hooks/useCheckEvents.ts +99 -0
  346. package/recce-source/js/src/lib/hooks/useCheckToast.tsx +14 -0
  347. package/recce-source/js/src/lib/hooks/useClipBoardToast.tsx +27 -0
  348. package/recce-source/js/src/lib/hooks/useCountdownToast.tsx +102 -0
  349. package/recce-source/js/src/lib/hooks/useFeedbackCollectionToast.tsx +130 -0
  350. package/recce-source/js/src/lib/hooks/useGuideToast.tsx +45 -0
  351. package/recce-source/js/src/lib/hooks/useIdleDetection.tsx +185 -0
  352. package/recce-source/js/src/lib/hooks/useModelColumns.tsx +113 -0
  353. package/recce-source/js/src/lib/hooks/useRecceInstanceInfo.tsx +13 -0
  354. package/recce-source/js/src/lib/hooks/useRecceServerFlag.tsx +13 -0
  355. package/recce-source/js/src/lib/hooks/useRun.tsx +89 -0
  356. package/recce-source/js/src/lib/hooks/useThemeColors.ts +115 -0
  357. package/recce-source/js/src/lib/mergeKeys.test.ts +89 -0
  358. package/recce-source/js/src/lib/mergeKeys.ts +86 -0
  359. package/recce-source/js/src/lib/result/ResultErrorFallback.tsx +9 -0
  360. package/recce-source/js/src/lib/utils/formatTime.ts +84 -0
  361. package/recce-source/js/src/lib/utils/urls.ts +16 -0
  362. package/recce-source/js/src/utils/DropdownValuesInput.tsx +297 -0
  363. package/recce-source/js/src/utils/formatters.tsx +237 -0
  364. package/recce-source/js/src/utils/transforms.ts +81 -0
  365. package/recce-source/js/tsconfig.json +47 -0
  366. package/recce-source/macros/README.md +8 -0
  367. package/recce-source/macros/recce_athena.sql +73 -0
  368. package/recce-source/pyproject.toml +109 -0
  369. package/recce-source/recce/VERSION +1 -0
  370. package/recce-source/recce/__init__.py +84 -0
  371. package/recce-source/recce/adapter/__init__.py +0 -0
  372. package/recce-source/recce/adapter/base.py +109 -0
  373. package/recce-source/recce/adapter/dbt_adapter/__init__.py +1699 -0
  374. package/recce-source/recce/adapter/dbt_adapter/dbt_version.py +42 -0
  375. package/recce-source/recce/adapter/sqlmesh_adapter.py +141 -0
  376. package/recce-source/recce/apis/__init__.py +0 -0
  377. package/recce-source/recce/apis/check_api.py +203 -0
  378. package/recce-source/recce/apis/check_events_api.py +353 -0
  379. package/recce-source/recce/apis/check_func.py +130 -0
  380. package/recce-source/recce/apis/run_api.py +130 -0
  381. package/recce-source/recce/apis/run_func.py +258 -0
  382. package/recce-source/recce/artifact.py +266 -0
  383. package/recce-source/recce/cli.py +1846 -0
  384. package/recce-source/recce/config.py +127 -0
  385. package/recce-source/recce/connect_to_cloud.py +138 -0
  386. package/recce-source/recce/core.py +334 -0
  387. package/recce-source/recce/diff.py +26 -0
  388. package/recce-source/recce/event/CONFIG +1 -0
  389. package/recce-source/recce/event/SENTRY_DNS +1 -0
  390. package/recce-source/recce/event/__init__.py +304 -0
  391. package/recce-source/recce/event/collector.py +184 -0
  392. package/recce-source/recce/event/track.py +158 -0
  393. package/recce-source/recce/exceptions.py +21 -0
  394. package/recce-source/recce/git.py +77 -0
  395. package/recce-source/recce/github.py +222 -0
  396. package/recce-source/recce/mcp_server.py +861 -0
  397. package/recce-source/recce/models/__init__.py +6 -0
  398. package/recce-source/recce/models/check.py +473 -0
  399. package/recce-source/recce/models/run.py +46 -0
  400. package/recce-source/recce/models/types.py +218 -0
  401. package/recce-source/recce/pull_request.py +124 -0
  402. package/recce-source/recce/run.py +390 -0
  403. package/recce-source/recce/server.py +877 -0
  404. package/recce-source/recce/state/__init__.py +31 -0
  405. package/recce-source/recce/state/cloud.py +644 -0
  406. package/recce-source/recce/state/const.py +26 -0
  407. package/recce-source/recce/state/local.py +56 -0
  408. package/recce-source/recce/state/state.py +119 -0
  409. package/recce-source/recce/state/state_loader.py +174 -0
  410. package/recce-source/recce/summary.py +575 -0
  411. package/recce-source/recce/tasks/__init__.py +23 -0
  412. package/recce-source/recce/tasks/core.py +134 -0
  413. package/recce-source/recce/tasks/dataframe.py +170 -0
  414. package/recce-source/recce/tasks/histogram.py +433 -0
  415. package/recce-source/recce/tasks/lineage.py +19 -0
  416. package/recce-source/recce/tasks/profile.py +298 -0
  417. package/recce-source/recce/tasks/query.py +450 -0
  418. package/recce-source/recce/tasks/rowcount.py +277 -0
  419. package/recce-source/recce/tasks/schema.py +65 -0
  420. package/recce-source/recce/tasks/top_k.py +172 -0
  421. package/recce-source/recce/tasks/utils.py +147 -0
  422. package/recce-source/recce/tasks/valuediff.py +497 -0
  423. package/recce-source/recce/util/__init__.py +4 -0
  424. package/recce-source/recce/util/api_token.py +80 -0
  425. package/recce-source/recce/util/breaking.py +330 -0
  426. package/recce-source/recce/util/cache.py +25 -0
  427. package/recce-source/recce/util/cll.py +355 -0
  428. package/recce-source/recce/util/cloud/__init__.py +15 -0
  429. package/recce-source/recce/util/cloud/base.py +115 -0
  430. package/recce-source/recce/util/cloud/check_events.py +190 -0
  431. package/recce-source/recce/util/cloud/checks.py +242 -0
  432. package/recce-source/recce/util/io.py +120 -0
  433. package/recce-source/recce/util/lineage.py +83 -0
  434. package/recce-source/recce/util/logger.py +25 -0
  435. package/recce-source/recce/util/onboarding_state.py +45 -0
  436. package/recce-source/recce/util/perf_tracking.py +85 -0
  437. package/recce-source/recce/util/pydantic_model.py +22 -0
  438. package/recce-source/recce/util/recce_cloud.py +454 -0
  439. package/recce-source/recce/util/singleton.py +18 -0
  440. package/recce-source/recce/util/startup_perf.py +121 -0
  441. package/recce-source/recce/yaml/__init__.py +58 -0
  442. package/recce-source/recce_cloud/README.md +780 -0
  443. package/recce-source/recce_cloud/VERSION +1 -0
  444. package/recce-source/recce_cloud/__init__.py +24 -0
  445. package/recce-source/recce_cloud/api/__init__.py +17 -0
  446. package/recce-source/recce_cloud/api/base.py +132 -0
  447. package/recce-source/recce_cloud/api/client.py +186 -0
  448. package/recce-source/recce_cloud/api/exceptions.py +26 -0
  449. package/recce-source/recce_cloud/api/factory.py +63 -0
  450. package/recce-source/recce_cloud/api/github.py +106 -0
  451. package/recce-source/recce_cloud/api/gitlab.py +111 -0
  452. package/recce-source/recce_cloud/artifact.py +57 -0
  453. package/recce-source/recce_cloud/ci_providers/__init__.py +9 -0
  454. package/recce-source/recce_cloud/ci_providers/base.py +82 -0
  455. package/recce-source/recce_cloud/ci_providers/detector.py +147 -0
  456. package/recce-source/recce_cloud/ci_providers/github_actions.py +136 -0
  457. package/recce-source/recce_cloud/ci_providers/gitlab_ci.py +130 -0
  458. package/recce-source/recce_cloud/cli.py +434 -0
  459. package/recce-source/recce_cloud/download.py +230 -0
  460. package/recce-source/recce_cloud/hatch_build.py +20 -0
  461. package/recce-source/recce_cloud/pyproject.toml +49 -0
  462. package/recce-source/recce_cloud/upload.py +214 -0
  463. package/recce-source/test.py +0 -0
  464. package/recce-source/tests/__init__.py +0 -0
  465. package/recce-source/tests/adapter/__init__.py +0 -0
  466. package/recce-source/tests/adapter/dbt_adapter/__init__.py +0 -0
  467. package/recce-source/tests/adapter/dbt_adapter/conftest.py +17 -0
  468. package/recce-source/tests/adapter/dbt_adapter/dbt_test_helper.py +298 -0
  469. package/recce-source/tests/adapter/dbt_adapter/test_dbt_adapter.py +25 -0
  470. package/recce-source/tests/adapter/dbt_adapter/test_dbt_cll.py +717 -0
  471. package/recce-source/tests/adapter/dbt_adapter/test_proj/dbt_project.yml +4 -0
  472. package/recce-source/tests/adapter/dbt_adapter/test_proj/manifest.json +1 -0
  473. package/recce-source/tests/adapter/dbt_adapter/test_proj/package-lock.yml +8 -0
  474. package/recce-source/tests/adapter/dbt_adapter/test_proj/packages.yml +7 -0
  475. package/recce-source/tests/adapter/dbt_adapter/test_proj/profiles.yml +6 -0
  476. package/recce-source/tests/adapter/dbt_adapter/test_selector.py +205 -0
  477. package/recce-source/tests/apis/__init__.py +0 -0
  478. package/recce-source/tests/apis/row_count_diff.json +59 -0
  479. package/recce-source/tests/apis/test_check_events_api.py +615 -0
  480. package/recce-source/tests/apis/test_run_func.py +433 -0
  481. package/recce-source/tests/catalog.json +527 -0
  482. package/recce-source/tests/data/manifest/base/catalog.json +1 -0
  483. package/recce-source/tests/data/manifest/base/manifest.json +1 -0
  484. package/recce-source/tests/data/manifest/pr2/catalog.json +1 -0
  485. package/recce-source/tests/data/manifest/pr2/manifest.json +1 -0
  486. package/recce-source/tests/manifest.json +10655 -0
  487. package/recce-source/tests/models/__init__.py +0 -0
  488. package/recce-source/tests/models/test_check.py +731 -0
  489. package/recce-source/tests/models/test_run_models.py +295 -0
  490. package/recce-source/tests/recce_cloud/__init__.py +0 -0
  491. package/recce-source/tests/recce_cloud/test_ci_providers.py +351 -0
  492. package/recce-source/tests/recce_cloud/test_cli.py +735 -0
  493. package/recce-source/tests/recce_cloud/test_client.py +379 -0
  494. package/recce-source/tests/recce_cloud/test_platform_clients.py +483 -0
  495. package/recce-source/tests/recce_state.json +1 -0
  496. package/recce-source/tests/state/test_cloud.py +719 -0
  497. package/recce-source/tests/state/test_local.py +164 -0
  498. package/recce-source/tests/state/test_state_loader.py +211 -0
  499. package/recce-source/tests/tasks/__init__.py +0 -0
  500. package/recce-source/tests/tasks/conftest.py +4 -0
  501. package/recce-source/tests/tasks/test_histogram.py +129 -0
  502. package/recce-source/tests/tasks/test_lineage.py +55 -0
  503. package/recce-source/tests/tasks/test_preset_checks.py +64 -0
  504. package/recce-source/tests/tasks/test_profile.py +397 -0
  505. package/recce-source/tests/tasks/test_query.py +528 -0
  506. package/recce-source/tests/tasks/test_row_count.py +133 -0
  507. package/recce-source/tests/tasks/test_schema.py +122 -0
  508. package/recce-source/tests/tasks/test_top_k.py +77 -0
  509. package/recce-source/tests/tasks/test_utils.py +439 -0
  510. package/recce-source/tests/tasks/test_valuediff.py +361 -0
  511. package/recce-source/tests/test_cli.py +236 -0
  512. package/recce-source/tests/test_cli_mcp_optional.py +45 -0
  513. package/recce-source/tests/test_cloud_listing_cli.py +324 -0
  514. package/recce-source/tests/test_config.py +43 -0
  515. package/recce-source/tests/test_connect_to_cloud.py +82 -0
  516. package/recce-source/tests/test_core.py +174 -0
  517. package/recce-source/tests/test_dbt.py +36 -0
  518. package/recce-source/tests/test_mcp_server.py +505 -0
  519. package/recce-source/tests/test_pull_request.py +130 -0
  520. package/recce-source/tests/test_server.py +202 -0
  521. package/recce-source/tests/test_server_lifespan.py +138 -0
  522. package/recce-source/tests/test_summary.py +73 -0
  523. package/recce-source/tests/util/__init__.py +0 -0
  524. package/recce-source/tests/util/cloud/__init__.py +0 -0
  525. package/recce-source/tests/util/cloud/test_check_events.py +255 -0
  526. package/recce-source/tests/util/cloud/test_checks.py +204 -0
  527. package/recce-source/tests/util/test_api_token.py +119 -0
  528. package/recce-source/tests/util/test_breaking.py +1427 -0
  529. package/recce-source/tests/util/test_cll.py +706 -0
  530. package/recce-source/tests/util/test_lineage.py +122 -0
  531. package/recce-source/tests/util/test_onboarding_state.py +84 -0
  532. package/recce-source/tests/util/test_recce_cloud.py +231 -0
  533. package/recce-source/tox.ini +40 -0
  534. package/recce-source/uv.lock +3928 -0
  535. package/src/api/index.ts +32 -0
  536. package/src/components/index.ts +154 -0
  537. package/src/global.d.ts +14 -0
  538. package/src/hooks/index.ts +56 -0
  539. package/src/index.ts +17 -0
  540. package/src/lib/hooks/RouteConfigContext.ts +139 -0
  541. package/src/lib/hooks/useAppRouter.ts +240 -0
  542. package/src/mui-augmentation.d.ts +139 -0
  543. package/src/theme/index.ts +13 -0
  544. package/src/theme.ts +23 -0
  545. package/src/types/index.ts +23 -0
  546. package/dist/index-BNUP2V_N.d.ts.map +0 -1
  547. package/dist/index-DOPZuhD8.d.mts.map +0 -1
  548. package/dist/theme.d.mts.map +0 -1
  549. package/dist/theme.d.ts.map +0 -1
@@ -0,0 +1,820 @@
1
+ /**
2
+ * @file diffColumnBuilder.test.tsx
3
+ * @description Tests for diff column definition builder
4
+ *
5
+ * Tests cover:
6
+ * - buildDiffColumnDefinitions: Main function for building column definitions
7
+ * - Primary key column generation (frozen, special cellClass)
8
+ * - Diff column generation (inline vs side_by_side modes)
9
+ * - Index fallback behavior when no PKs
10
+ * - Header props propagation
11
+ */
12
+
13
+ // Mock AG Grid modules
14
+ jest.mock("ag-grid-community", () => ({
15
+ ModuleRegistry: { registerModules: jest.fn() },
16
+ AllCommunityModule: {},
17
+ }));
18
+
19
+ // Mock MUI wrapper components
20
+ jest.mock("@/components/ui/mui", () => ({
21
+ Box: ({ children }: { children: React.ReactNode }) => children,
22
+ Flex: ({ children }: { children: React.ReactNode }) => children,
23
+ Icon: () => null,
24
+ IconButton: () => null,
25
+ Menu: {
26
+ Root: ({ children }: { children: React.ReactNode }) => children,
27
+ Trigger: ({ children }: { children: React.ReactNode }) => children,
28
+ Content: ({ children }: { children: React.ReactNode }) => children,
29
+ Item: ({ children }: { children: React.ReactNode }) => children,
30
+ ItemGroup: ({ children }: { children: React.ReactNode }) => children,
31
+ Positioner: ({ children }: { children: React.ReactNode }) => children,
32
+ },
33
+ Portal: ({ children }: { children: React.ReactNode }) => children,
34
+ Text: ({ children }: { children: React.ReactNode }) => children,
35
+ }));
36
+
37
+ import type { CellClassParams, ColDef, ColGroupDef } from "ag-grid-community";
38
+ import React from "react";
39
+ import { ColumnRenderMode, ColumnType, RowObjectType } from "@/lib/api/types";
40
+ import { ColumnConfig } from "./columnBuilders";
41
+ import {
42
+ BuildDiffColumnDefinitionsConfig,
43
+ buildDiffColumnDefinitions,
44
+ DiffColumnDefinition,
45
+ } from "./diffColumnBuilder";
46
+ import { RecceColumnContext } from "./simpleColumnBuilder";
47
+
48
+ // ============================================================================
49
+ // Helper to create mock CellClassParams
50
+ // ============================================================================
51
+
52
+ /**
53
+ * Helper to create mock CellClassParams from a row
54
+ * This is needed because AG Grid cellClass functions expect CellClassParams
55
+ */
56
+ const createCellClassParams = (
57
+ row: RowObjectType,
58
+ ): CellClassParams<RowObjectType> =>
59
+ ({
60
+ data: row,
61
+ value: undefined,
62
+ node: undefined,
63
+ colDef: {},
64
+ column: {},
65
+ api: {},
66
+ rowIndex: 0,
67
+ }) as unknown as CellClassParams<RowObjectType>;
68
+
69
+ // ============================================================================
70
+ // Type Guards
71
+ // ============================================================================
72
+
73
+ /**
74
+ * Type alias for single column (ColDef branch of DiffColumnDefinition)
75
+ */
76
+ type SingleColumn = ColDef<RowObjectType> & { context?: RecceColumnContext };
77
+
78
+ /**
79
+ * Type alias for column group (ColGroupDef branch of DiffColumnDefinition)
80
+ */
81
+ type ColumnGroup = ColGroupDef<RowObjectType> & {
82
+ context?: RecceColumnContext;
83
+ };
84
+
85
+ /**
86
+ * Type guard to check if a column definition is a ColDef (has field)
87
+ */
88
+ function isColumn(col: DiffColumnDefinition): col is SingleColumn {
89
+ return "field" in col && !("children" in col);
90
+ }
91
+
92
+ /**
93
+ * Type guard to check if a column definition is a ColGroupDef (has children)
94
+ */
95
+ function isColumnGroup(col: DiffColumnDefinition): col is ColumnGroup {
96
+ return "children" in col && Array.isArray(col.children);
97
+ }
98
+
99
+ /**
100
+ * Helper to extract field from a column (works for both ColDef and ColGroupDef)
101
+ */
102
+ function getColumnKey(col: DiffColumnDefinition): string | undefined {
103
+ if (isColumn(col)) {
104
+ const singleCol = col as SingleColumn;
105
+ return singleCol.field;
106
+ }
107
+ return undefined;
108
+ }
109
+
110
+ /**
111
+ * Helper to find a column by field
112
+ */
113
+ function findColumnByKey(
114
+ columns: DiffColumnDefinition[],
115
+ key: string,
116
+ ): DiffColumnDefinition | undefined {
117
+ return columns.find((col) => {
118
+ if (isColumn(col)) {
119
+ const singleCol = col as SingleColumn;
120
+ return singleCol.field === key;
121
+ }
122
+ if (isColumnGroup(col)) {
123
+ const groupCol = col as ColumnGroup;
124
+ return groupCol.children?.some(
125
+ (child: ColDef<RowObjectType>) =>
126
+ "field" in child && child.field === `base__${key}`,
127
+ );
128
+ }
129
+ return false;
130
+ });
131
+ }
132
+
133
+ // ============================================================================
134
+ // Test Fixtures
135
+ // ============================================================================
136
+
137
+ /**
138
+ * Creates a ColumnConfig for testing
139
+ */
140
+ const createColumnConfig = (
141
+ overrides: Partial<ColumnConfig> = {},
142
+ ): ColumnConfig => ({
143
+ key: "test_column",
144
+ name: "test_column",
145
+ columnType: "text",
146
+ ...overrides,
147
+ });
148
+
149
+ /**
150
+ * Creates standard column configs for testing
151
+ */
152
+ const createStandardColumns = (): ColumnConfig[] => [
153
+ createColumnConfig({
154
+ key: "id",
155
+ name: "id",
156
+ columnType: "integer",
157
+ isPrimaryKey: true,
158
+ frozen: true,
159
+ }),
160
+ createColumnConfig({
161
+ key: "name",
162
+ name: "name",
163
+ columnType: "text",
164
+ }),
165
+ createColumnConfig({
166
+ key: "value",
167
+ name: "value",
168
+ columnType: "number",
169
+ columnStatus: "modified",
170
+ }),
171
+ ];
172
+
173
+ /**
174
+ * Creates a basic config for buildDiffColumnDefinitions
175
+ */
176
+ const createConfig = (
177
+ overrides: Partial<BuildDiffColumnDefinitionsConfig> = {},
178
+ ): BuildDiffColumnDefinitionsConfig => ({
179
+ columns: createStandardColumns(),
180
+ displayMode: "inline",
181
+ headerProps: {
182
+ primaryKeys: ["id"],
183
+ pinnedColumns: [],
184
+ },
185
+ ...overrides,
186
+ });
187
+
188
+ // ============================================================================
189
+ // Basic Functionality Tests
190
+ // ============================================================================
191
+
192
+ describe("buildDiffColumnDefinitions - Basic Functionality", () => {
193
+ test("generates column definitions from ColumnConfig array", () => {
194
+ const result = buildDiffColumnDefinitions(createConfig());
195
+
196
+ expect(result.columns).toHaveLength(3);
197
+ expect(result.usedIndexFallback).toBe(false);
198
+ });
199
+
200
+ test("returns usedIndexFallback as false when PKs exist", () => {
201
+ const result = buildDiffColumnDefinitions(createConfig());
202
+
203
+ expect(result.usedIndexFallback).toBe(false);
204
+ });
205
+
206
+ test("handles empty columns array", () => {
207
+ const result = buildDiffColumnDefinitions(
208
+ createConfig({
209
+ columns: [],
210
+ }),
211
+ );
212
+
213
+ expect(result.columns).toHaveLength(0);
214
+ expect(result.usedIndexFallback).toBe(false);
215
+ });
216
+
217
+ test("preserves column order from input", () => {
218
+ const columns = [
219
+ createColumnConfig({ key: "first", name: "first", isPrimaryKey: true }),
220
+ createColumnConfig({ key: "second", name: "second" }),
221
+ createColumnConfig({ key: "third", name: "third" }),
222
+ ];
223
+
224
+ const result = buildDiffColumnDefinitions(
225
+ createConfig({
226
+ columns,
227
+ headerProps: { primaryKeys: ["first"] },
228
+ }),
229
+ );
230
+
231
+ const keys = result.columns.map(getColumnKey);
232
+ expect(keys[0]).toBe("first");
233
+ expect(keys[1]).toBe("second");
234
+ expect(keys[2]).toBe("third");
235
+ });
236
+ });
237
+
238
+ // ============================================================================
239
+ // Primary Key Column Tests
240
+ // ============================================================================
241
+
242
+ describe("buildDiffColumnDefinitions - Primary Key Columns", () => {
243
+ test("marks primary key columns as frozen", () => {
244
+ const result = buildDiffColumnDefinitions(createConfig());
245
+
246
+ const pkColumn = findColumnByKey(result.columns, "id");
247
+ expect(pkColumn).toBeDefined();
248
+ if (pkColumn && isColumn(pkColumn)) {
249
+ expect((pkColumn as SingleColumn).pinned).toBe("left");
250
+ }
251
+ });
252
+
253
+ test("primary key columns have cellClass function", () => {
254
+ const result = buildDiffColumnDefinitions(createConfig());
255
+
256
+ const pkColumn = findColumnByKey(result.columns, "id");
257
+ expect(pkColumn).toBeDefined();
258
+ if (pkColumn && isColumn(pkColumn)) {
259
+ expect(typeof (pkColumn as SingleColumn).cellClass).toBe("function");
260
+ }
261
+ });
262
+
263
+ test("primary key cellClass returns status-based class", () => {
264
+ const result = buildDiffColumnDefinitions(createConfig());
265
+
266
+ const pkColumn = findColumnByKey(result.columns, "id");
267
+ expect(pkColumn).toBeDefined();
268
+ if (pkColumn && isColumn(pkColumn)) {
269
+ const col = pkColumn as SingleColumn;
270
+ if (typeof col.cellClass === "function") {
271
+ const cellClassFn = col.cellClass as (
272
+ params: CellClassParams<RowObjectType>,
273
+ ) => string | undefined;
274
+
275
+ expect(cellClassFn(createCellClassParams({ __status: "added" }))).toBe(
276
+ "diff-header-added",
277
+ );
278
+ expect(
279
+ cellClassFn(createCellClassParams({ __status: "removed" })),
280
+ ).toBe("diff-header-removed");
281
+ expect(
282
+ cellClassFn(createCellClassParams({ __status: "modified" })),
283
+ ).toBe("diff-header-modified");
284
+ expect(
285
+ cellClassFn(createCellClassParams({ __status: undefined })),
286
+ ).toBeUndefined();
287
+ }
288
+ }
289
+ });
290
+
291
+ test("primary key columns have headerComponent", () => {
292
+ const result = buildDiffColumnDefinitions(createConfig());
293
+
294
+ const pkColumn = findColumnByKey(result.columns, "id");
295
+ expect(pkColumn).toBeDefined();
296
+ if (pkColumn && isColumn(pkColumn)) {
297
+ // biome-ignore lint/suspicious/noExplicitAny: Accessing AG Grid internal property for testing
298
+ expect((pkColumn as any).headerComponent).toBeDefined();
299
+ }
300
+ });
301
+
302
+ test("primary key columns have cellRenderer function", () => {
303
+ const result = buildDiffColumnDefinitions(createConfig());
304
+
305
+ const pkColumn = findColumnByKey(result.columns, "id");
306
+ expect(pkColumn).toBeDefined();
307
+ if (pkColumn && isColumn(pkColumn)) {
308
+ expect((pkColumn as SingleColumn).cellRenderer).toBeDefined();
309
+ }
310
+ });
311
+
312
+ test("handles multiple primary key columns", () => {
313
+ const columns = [
314
+ createColumnConfig({
315
+ key: "region",
316
+ name: "region",
317
+ columnType: "text",
318
+ isPrimaryKey: true,
319
+ }),
320
+ createColumnConfig({
321
+ key: "product",
322
+ name: "product",
323
+ columnType: "text",
324
+ isPrimaryKey: true,
325
+ }),
326
+ createColumnConfig({ key: "sales", name: "sales", columnType: "number" }),
327
+ ];
328
+
329
+ const result = buildDiffColumnDefinitions(
330
+ createConfig({
331
+ columns,
332
+ headerProps: { primaryKeys: ["region", "product"] },
333
+ }),
334
+ );
335
+
336
+ const pinnedColumns = result.columns.filter(
337
+ (c) => isColumn(c) && (c as SingleColumn).pinned === "left",
338
+ );
339
+ expect(pinnedColumns).toHaveLength(2);
340
+
341
+ const pinnedKeys = pinnedColumns.map(getColumnKey);
342
+ expect(pinnedKeys[0]).toBe("region");
343
+ expect(pinnedKeys[1]).toBe("product");
344
+ });
345
+ });
346
+
347
+ // ============================================================================
348
+ // Index Fallback Tests
349
+ // ============================================================================
350
+
351
+ describe("buildDiffColumnDefinitions - Index Fallback", () => {
352
+ test("adds index column when no PKs and allowIndexFallback is true", () => {
353
+ const columns = [
354
+ createColumnConfig({ key: "name", name: "name" }),
355
+ createColumnConfig({ key: "value", name: "value" }),
356
+ ];
357
+
358
+ const result = buildDiffColumnDefinitions(
359
+ createConfig({
360
+ columns,
361
+ allowIndexFallback: true,
362
+ headerProps: { primaryKeys: [] },
363
+ }),
364
+ );
365
+
366
+ expect(result.usedIndexFallback).toBe(true);
367
+ expect(getColumnKey(result.columns[0])).toBe("_index");
368
+ });
369
+
370
+ test("index column has correct configuration", () => {
371
+ const result = buildDiffColumnDefinitions(
372
+ createConfig({
373
+ columns: [createColumnConfig({ key: "value", name: "value" })],
374
+ allowIndexFallback: true,
375
+ headerProps: { primaryKeys: [] },
376
+ }),
377
+ );
378
+
379
+ const indexColumn = result.columns[0];
380
+ expect(isColumn(indexColumn)).toBe(true);
381
+ if (isColumn(indexColumn)) {
382
+ const col = indexColumn as SingleColumn;
383
+ expect(col.field).toBe("_index");
384
+ expect(col.headerName).toBe("");
385
+ expect(col.width).toBe(50);
386
+ expect(col.maxWidth).toBe(100);
387
+ expect(col.cellClass).toBe("index-column");
388
+ }
389
+ });
390
+
391
+ test("does not add index column when PKs exist", () => {
392
+ const result = buildDiffColumnDefinitions(
393
+ createConfig({
394
+ allowIndexFallback: true,
395
+ }),
396
+ );
397
+
398
+ expect(result.usedIndexFallback).toBe(false);
399
+ expect(getColumnKey(result.columns[0])).not.toBe("_index");
400
+ });
401
+
402
+ test("does not add index column when allowIndexFallback is false", () => {
403
+ const columns = [createColumnConfig({ key: "value", name: "value" })];
404
+
405
+ const result = buildDiffColumnDefinitions(
406
+ createConfig({
407
+ columns,
408
+ allowIndexFallback: false,
409
+ headerProps: { primaryKeys: [] },
410
+ }),
411
+ );
412
+
413
+ expect(result.usedIndexFallback).toBe(false);
414
+ const indexColumn = result.columns.find(
415
+ (c) => isColumn(c) && (c as SingleColumn).field === "_index",
416
+ );
417
+ expect(indexColumn).toBeUndefined();
418
+ });
419
+
420
+ test("index column appears before other columns", () => {
421
+ const columns = [
422
+ createColumnConfig({ key: "first", name: "first" }),
423
+ createColumnConfig({ key: "second", name: "second" }),
424
+ ];
425
+
426
+ const result = buildDiffColumnDefinitions(
427
+ createConfig({
428
+ columns,
429
+ allowIndexFallback: true,
430
+ headerProps: { primaryKeys: [] },
431
+ }),
432
+ );
433
+
434
+ const keys = result.columns.map(getColumnKey);
435
+ expect(keys[0]).toBe("_index");
436
+ expect(keys[1]).toBe("first");
437
+ expect(keys[2]).toBe("second");
438
+ });
439
+ });
440
+
441
+ // ============================================================================
442
+ // Display Mode Tests
443
+ // ============================================================================
444
+
445
+ describe("buildDiffColumnDefinitions - Display Modes", () => {
446
+ test("inline mode creates single columns without children", () => {
447
+ const result = buildDiffColumnDefinitions(
448
+ createConfig({
449
+ displayMode: "inline",
450
+ }),
451
+ );
452
+
453
+ const nonPkColumns = result.columns.filter(
454
+ (c) => isColumn(c) && (c as SingleColumn).field !== "id",
455
+ );
456
+ nonPkColumns.forEach((col) => {
457
+ expect(isColumnGroup(col)).toBe(false);
458
+ });
459
+ });
460
+
461
+ test("side_by_side mode creates columns with children for non-PK columns", () => {
462
+ const result = buildDiffColumnDefinitions(
463
+ createConfig({
464
+ displayMode: "side_by_side",
465
+ }),
466
+ );
467
+
468
+ // PK column should still be a regular column
469
+ const pkColumn = result.columns[0];
470
+ expect(isColumn(pkColumn)).toBe(true);
471
+ if (isColumn(pkColumn)) {
472
+ expect((pkColumn as SingleColumn).field).toBe("id");
473
+ }
474
+
475
+ // Non-PK columns should be column groups with children
476
+ const nonPkColumns = result.columns.slice(1);
477
+ nonPkColumns.forEach((col) => {
478
+ expect(isColumnGroup(col)).toBe(true);
479
+ if (isColumnGroup(col)) {
480
+ expect(col.children).toHaveLength(2);
481
+ }
482
+ });
483
+ });
484
+
485
+ test("side_by_side mode creates base and current child columns", () => {
486
+ const columns = [
487
+ createColumnConfig({ key: "id", name: "id", isPrimaryKey: true }),
488
+ createColumnConfig({ key: "value", name: "value" }),
489
+ ];
490
+
491
+ const result = buildDiffColumnDefinitions(
492
+ createConfig({
493
+ columns,
494
+ displayMode: "side_by_side",
495
+ headerProps: { primaryKeys: ["id"] },
496
+ }),
497
+ );
498
+
499
+ const valueColumn = result.columns[1];
500
+ expect(isColumnGroup(valueColumn)).toBe(true);
501
+ if (isColumnGroup(valueColumn) && valueColumn.children) {
502
+ const childKeys = valueColumn.children.map((child) =>
503
+ "field" in child ? child.field : undefined,
504
+ );
505
+ expect(childKeys[0]).toBe("base__value");
506
+ expect(childKeys[1]).toBe("current__value");
507
+ }
508
+ });
509
+
510
+ test("side_by_side mode uses custom base/current titles", () => {
511
+ const columns = [createColumnConfig({ key: "value", name: "value" })];
512
+
513
+ const result = buildDiffColumnDefinitions(
514
+ createConfig({
515
+ columns,
516
+ displayMode: "side_by_side",
517
+ baseTitle: "Before",
518
+ currentTitle: "After",
519
+ headerProps: { primaryKeys: [] },
520
+ }),
521
+ );
522
+
523
+ const valueColumn = result.columns[0];
524
+ expect(isColumnGroup(valueColumn)).toBe(true);
525
+ if (isColumnGroup(valueColumn) && valueColumn.children) {
526
+ const childNames = valueColumn.children.map(
527
+ (child) => (child as ColDef<RowObjectType>).headerName,
528
+ );
529
+ expect(childNames[0]).toBe("Before");
530
+ expect(childNames[1]).toBe("After");
531
+ }
532
+ });
533
+
534
+ test("side_by_side mode uses default titles when not specified", () => {
535
+ const columns = [createColumnConfig({ key: "value", name: "value" })];
536
+
537
+ const result = buildDiffColumnDefinitions(
538
+ createConfig({
539
+ columns,
540
+ displayMode: "side_by_side",
541
+ headerProps: { primaryKeys: [] },
542
+ }),
543
+ );
544
+
545
+ const valueColumn = result.columns[0];
546
+ expect(isColumnGroup(valueColumn)).toBe(true);
547
+ if (isColumnGroup(valueColumn) && valueColumn.children) {
548
+ const childNames = valueColumn.children.map(
549
+ (child) => (child as ColDef<RowObjectType>).headerName,
550
+ );
551
+ expect(childNames[0]).toBe("Base");
552
+ expect(childNames[1]).toBe("Current");
553
+ }
554
+ });
555
+ });
556
+
557
+ // ============================================================================
558
+ // Column Metadata Tests
559
+ // ============================================================================
560
+
561
+ describe("buildDiffColumnDefinitions - Column Metadata", () => {
562
+ test("preserves columnType from config", () => {
563
+ const columns = [
564
+ createColumnConfig({
565
+ key: "id",
566
+ name: "id",
567
+ columnType: "integer",
568
+ isPrimaryKey: true,
569
+ }),
570
+ createColumnConfig({
571
+ key: "price",
572
+ name: "price",
573
+ columnType: "number",
574
+ }),
575
+ createColumnConfig({
576
+ key: "name",
577
+ name: "name",
578
+ columnType: "text",
579
+ }),
580
+ ];
581
+
582
+ const result = buildDiffColumnDefinitions(
583
+ createConfig({
584
+ columns,
585
+ displayMode: "inline",
586
+ headerProps: { primaryKeys: ["id"] },
587
+ }),
588
+ );
589
+
590
+ const idCol = findColumnByKey(result.columns, "id");
591
+ const priceCol = findColumnByKey(result.columns, "price");
592
+ const nameCol = findColumnByKey(result.columns, "name");
593
+
594
+ expect(idCol?.context?.columnType).toBe("integer");
595
+ expect(priceCol?.context?.columnType).toBe("number");
596
+ expect(nameCol?.context?.columnType).toBe("text");
597
+ });
598
+
599
+ test("preserves columnRenderMode from config", () => {
600
+ const columns = [
601
+ createColumnConfig({
602
+ key: "percentage",
603
+ name: "percentage",
604
+ columnType: "number",
605
+ columnRenderMode: "percent",
606
+ }),
607
+ createColumnConfig({
608
+ key: "decimal",
609
+ name: "decimal",
610
+ columnType: "number",
611
+ columnRenderMode: 2,
612
+ }),
613
+ ];
614
+
615
+ const result = buildDiffColumnDefinitions(
616
+ createConfig({
617
+ columns,
618
+ displayMode: "inline",
619
+ headerProps: { primaryKeys: [] },
620
+ }),
621
+ );
622
+
623
+ const percentageCol = findColumnByKey(result.columns, "percentage");
624
+ const decimalCol = findColumnByKey(result.columns, "decimal");
625
+
626
+ expect(percentageCol?.context?.columnRenderMode).toBe("percent");
627
+ expect(decimalCol?.context?.columnRenderMode).toBe(2);
628
+ });
629
+
630
+ test("handles undefined columnStatus", () => {
631
+ const columns = [
632
+ createColumnConfig({
633
+ key: "col",
634
+ name: "col",
635
+ columnStatus: undefined,
636
+ }),
637
+ ];
638
+
639
+ const result = buildDiffColumnDefinitions(
640
+ createConfig({
641
+ columns,
642
+ headerProps: { primaryKeys: [] },
643
+ }),
644
+ );
645
+
646
+ expect(result.columns).toHaveLength(1);
647
+ });
648
+
649
+ test("handles various column statuses", () => {
650
+ const columns = [
651
+ createColumnConfig({
652
+ key: "added",
653
+ name: "added",
654
+ columnStatus: "added",
655
+ }),
656
+ createColumnConfig({
657
+ key: "removed",
658
+ name: "removed",
659
+ columnStatus: "removed",
660
+ }),
661
+ createColumnConfig({
662
+ key: "modified",
663
+ name: "modified",
664
+ columnStatus: "modified",
665
+ }),
666
+ ];
667
+
668
+ const result = buildDiffColumnDefinitions(
669
+ createConfig({
670
+ columns,
671
+ displayMode: "inline",
672
+ headerProps: { primaryKeys: [] },
673
+ }),
674
+ );
675
+
676
+ expect(result.columns).toHaveLength(3);
677
+ });
678
+ });
679
+
680
+ // ============================================================================
681
+ // Header Props Tests
682
+ // ============================================================================
683
+
684
+ describe("buildDiffColumnDefinitions - Header Props", () => {
685
+ test("passes headerProps to column headers", () => {
686
+ const onPrimaryKeyChange = jest.fn();
687
+ const onPinnedColumnsChange = jest.fn();
688
+
689
+ const result = buildDiffColumnDefinitions(
690
+ createConfig({
691
+ headerProps: {
692
+ primaryKeys: ["id"],
693
+ pinnedColumns: ["name"],
694
+ onPrimaryKeyChange,
695
+ onPinnedColumnsChange,
696
+ },
697
+ }),
698
+ );
699
+
700
+ // Headers use headerComponent in AG Grid (for ColDef) or headerGroupComponent (for ColGroupDef)
701
+ result.columns.forEach((col) => {
702
+ const key = getColumnKey(col);
703
+ if (key !== "_index") {
704
+ // biome-ignore lint/suspicious/noExplicitAny: Accessing AG Grid internal property for testing
705
+ const hasHeader =
706
+ // biome-ignore lint/suspicious/noExplicitAny: Accessing AG Grid internal property for testing
707
+ (col as any).headerComponent || (col as any).headerGroupComponent;
708
+ expect(hasHeader).toBeDefined();
709
+ }
710
+ });
711
+ });
712
+
713
+ test("handles empty headerProps", () => {
714
+ const result = buildDiffColumnDefinitions(
715
+ createConfig({
716
+ headerProps: {},
717
+ }),
718
+ );
719
+
720
+ expect(result.columns.length).toBeGreaterThan(0);
721
+ });
722
+ });
723
+
724
+ // ============================================================================
725
+ // Edge Cases
726
+ // ============================================================================
727
+
728
+ describe("buildDiffColumnDefinitions - Edge Cases", () => {
729
+ test("handles columns with same key and name", () => {
730
+ const columns = [createColumnConfig({ key: "test", name: "test" })];
731
+
732
+ const result = buildDiffColumnDefinitions(
733
+ createConfig({
734
+ columns,
735
+ headerProps: { primaryKeys: [] },
736
+ }),
737
+ );
738
+
739
+ expect(getColumnKey(result.columns[0])).toBe("test");
740
+ });
741
+
742
+ test("handles columns with different key and name", () => {
743
+ const columns = [
744
+ createColumnConfig({ key: "col_0", name: "Display Name" }),
745
+ ];
746
+
747
+ const result = buildDiffColumnDefinitions(
748
+ createConfig({
749
+ columns,
750
+ headerProps: { primaryKeys: [] },
751
+ }),
752
+ );
753
+
754
+ // toDiffColumn uses 'name' as the column key for react-data-grid
755
+ expect(getColumnKey(result.columns[0])).toBe("Display Name");
756
+ });
757
+
758
+ test("handles all columns being primary keys", () => {
759
+ const columns = [
760
+ createColumnConfig({ key: "pk1", name: "pk1", isPrimaryKey: true }),
761
+ createColumnConfig({ key: "pk2", name: "pk2", isPrimaryKey: true }),
762
+ ];
763
+
764
+ const result = buildDiffColumnDefinitions(
765
+ createConfig({
766
+ columns,
767
+ headerProps: { primaryKeys: ["pk1", "pk2"] },
768
+ }),
769
+ );
770
+
771
+ const allPinned = result.columns.every(
772
+ (c) => isColumn(c) && (c as SingleColumn).pinned === "left",
773
+ );
774
+ expect(allPinned).toBe(true);
775
+ expect(result.usedIndexFallback).toBe(false);
776
+ });
777
+
778
+ test("handles no primary keys with no index fallback", () => {
779
+ const columns = [
780
+ createColumnConfig({ key: "col1", name: "col1" }),
781
+ createColumnConfig({ key: "col2", name: "col2" }),
782
+ ];
783
+
784
+ const result = buildDiffColumnDefinitions(
785
+ createConfig({
786
+ columns,
787
+ allowIndexFallback: false,
788
+ headerProps: { primaryKeys: [] },
789
+ }),
790
+ );
791
+
792
+ expect(result.columns).toHaveLength(2);
793
+ expect(result.usedIndexFallback).toBe(false);
794
+
795
+ const anyPinned = result.columns.some(
796
+ (c) => isColumn(c) && (c as SingleColumn).pinned === "left",
797
+ );
798
+ expect(anyPinned).toBe(false);
799
+ });
800
+
801
+ test("handles special characters in column names", () => {
802
+ const columns = [
803
+ createColumnConfig({ key: "col-with-dashes", name: "col-with-dashes" }),
804
+ createColumnConfig({ key: "col.with.dots", name: "col.with.dots" }),
805
+ createColumnConfig({
806
+ key: "col_with_underscores",
807
+ name: "col_with_underscores",
808
+ }),
809
+ ];
810
+
811
+ const result = buildDiffColumnDefinitions(
812
+ createConfig({
813
+ columns,
814
+ headerProps: { primaryKeys: [] },
815
+ }),
816
+ );
817
+
818
+ expect(result.columns).toHaveLength(3);
819
+ });
820
+ });