@alumbwe/anvil 1.0.18 → 1.0.20

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 (494) hide show
  1. package/README.md +28 -30
  2. package/bin/anvil +2 -0
  3. package/package.json +71 -75
  4. package/src/agents/bundled-agents.generated.d.ts +14 -0
  5. package/src/agents/bundled-agents.generated.ts +3760 -0
  6. package/src/app.tsx +399 -0
  7. package/src/chat.tsx +1698 -0
  8. package/src/cli-args.ts +134 -0
  9. package/src/commands/__tests__/anvil-command-aliases.test.ts +56 -0
  10. package/src/commands/__tests__/bash-command.test.ts +445 -0
  11. package/src/commands/__tests__/command-args.test.ts +349 -0
  12. package/src/commands/__tests__/copy-conversation-clipboard.test.ts +108 -0
  13. package/src/commands/__tests__/copy-conversation.test.ts +226 -0
  14. package/src/commands/__tests__/diagnostics-command.test.ts +35 -0
  15. package/src/commands/__tests__/image.test.ts +99 -0
  16. package/src/commands/__tests__/init.test.ts +456 -0
  17. package/src/commands/__tests__/new-command-rotates-chat.test.ts +91 -0
  18. package/src/commands/__tests__/process-diagnostics.test.ts +54 -0
  19. package/src/commands/__tests__/prompt-builders.test.ts +28 -0
  20. package/src/commands/__tests__/router-input.test.ts +298 -0
  21. package/src/commands/ads.ts +44 -0
  22. package/src/commands/command-registry.ts +726 -0
  23. package/src/commands/copy-conversation.ts +392 -0
  24. package/src/commands/help.ts +13 -0
  25. package/src/commands/image.ts +20 -0
  26. package/src/commands/init.ts +121 -0
  27. package/src/commands/process-diagnostics.ts +120 -0
  28. package/src/commands/prompt-builders.ts +100 -0
  29. package/src/commands/publish.ts +203 -0
  30. package/src/commands/router-utils.ts +80 -0
  31. package/src/commands/router.ts +487 -0
  32. package/src/commands/usage.ts +26 -0
  33. package/src/components/__tests__/ad-banner.test.tsx +83 -0
  34. package/src/components/__tests__/anvil-landing-heading-row.test.tsx +91 -0
  35. package/src/components/__tests__/anvil-model-selector.test.tsx +519 -0
  36. package/src/components/__tests__/anvil-offer-invariants.test.ts +54 -0
  37. package/src/components/__tests__/anvil-takeover-prompt.test.tsx +212 -0
  38. package/src/components/__tests__/chat-input-bar.test.tsx +130 -0
  39. package/src/components/__tests__/grid-layout.integration.test.tsx +304 -0
  40. package/src/components/__tests__/grid-layout.test.tsx +1051 -0
  41. package/src/components/__tests__/message-block.completion.test.tsx +104 -0
  42. package/src/components/__tests__/message-block.streaming.test.tsx +78 -0
  43. package/src/components/__tests__/message-with-agents.test.tsx +579 -0
  44. package/src/components/__tests__/multiline-input.test.tsx +1132 -0
  45. package/src/components/__tests__/queue-panel.test.tsx +398 -0
  46. package/src/components/__tests__/selectable-list.test.ts +232 -0
  47. package/src/components/__tests__/status-bar.test.tsx +44 -0
  48. package/src/components/__tests__/status-indicator.test.tsx +204 -0
  49. package/src/components/__tests__/terminal-thinking-orb.test.tsx +111 -0
  50. package/src/components/__tests__/user-error-banner.test.tsx +102 -0
  51. package/src/components/ad-banner.tsx +323 -0
  52. package/src/components/agent-checklist.tsx +350 -0
  53. package/src/components/agent-mode-toggle.tsx +241 -0
  54. package/src/components/anvil-active-session-summary.tsx +63 -0
  55. package/src/components/anvil-landing-screen.tsx +865 -0
  56. package/src/components/anvil-mark.tsx +52 -0
  57. package/src/components/anvil-model-selector.tsx +1087 -0
  58. package/src/components/anvil-referral-banner.tsx +604 -0
  59. package/src/components/anvil-superseded-screen.tsx +62 -0
  60. package/src/components/ask-user/__tests__/multiple-choice-form.test.ts +432 -0
  61. package/src/components/ask-user/__tests__/validation.test.ts +213 -0
  62. package/src/components/ask-user/components/accordion-question.tsx +153 -0
  63. package/src/components/ask-user/components/custom-answer-input.tsx +66 -0
  64. package/src/components/ask-user/components/options-list.tsx +133 -0
  65. package/src/components/ask-user/components/question-header.tsx +80 -0
  66. package/src/components/ask-user/components/question-option.tsx +89 -0
  67. package/src/components/ask-user/constants.ts +38 -0
  68. package/src/components/ask-user/index.tsx +631 -0
  69. package/src/components/ask-user/utils/validation.ts +85 -0
  70. package/src/components/attachment-card.tsx +65 -0
  71. package/src/components/blocks/agent-block-grid.tsx +58 -0
  72. package/src/components/blocks/agent-branch-item.tsx +311 -0
  73. package/src/components/blocks/agent-branch-wrapper.tsx +493 -0
  74. package/src/components/blocks/agent-list-branch.tsx +77 -0
  75. package/src/components/blocks/ask-user-branch.tsx +81 -0
  76. package/src/components/blocks/block-helpers.ts +11 -0
  77. package/src/components/blocks/blocks-renderer.tsx +289 -0
  78. package/src/components/blocks/content-with-markdown.tsx +33 -0
  79. package/src/components/blocks/image-block.tsx +128 -0
  80. package/src/components/blocks/implementor-row.tsx +429 -0
  81. package/src/components/blocks/single-block.tsx +201 -0
  82. package/src/components/blocks/thinking-block.tsx +67 -0
  83. package/src/components/blocks/tool-block-group.tsx +57 -0
  84. package/src/components/blocks/tool-branch.tsx +206 -0
  85. package/src/components/blocks/user-content-copy.tsx +157 -0
  86. package/src/components/bottom-banner.tsx +136 -0
  87. package/src/components/build-mode-buttons.tsx +110 -0
  88. package/src/components/button.tsx +66 -0
  89. package/src/components/chat-header.tsx +77 -0
  90. package/src/components/chat-history-screen.tsx +413 -0
  91. package/src/components/chat-input-bar.tsx +523 -0
  92. package/src/components/clickable-title-box.tsx +66 -0
  93. package/src/components/clickable.tsx +119 -0
  94. package/src/components/collapse-button.tsx +34 -0
  95. package/src/components/copy-button.tsx +203 -0
  96. package/src/components/elapsed-timer.tsx +55 -0
  97. package/src/components/error-boundary.tsx +55 -0
  98. package/src/components/feedback-container.tsx +181 -0
  99. package/src/components/feedback-icon-button.tsx +89 -0
  100. package/src/components/feedback-input-mode.tsx +344 -0
  101. package/src/components/file-attachment-card.tsx +98 -0
  102. package/src/components/grid-layout.tsx +80 -0
  103. package/src/components/help-banner.tsx +127 -0
  104. package/src/components/highlighted-text.tsx +52 -0
  105. package/src/components/image-card.tsx +167 -0
  106. package/src/components/image-thumbnail.tsx +114 -0
  107. package/src/components/input-cursor.tsx +77 -0
  108. package/src/components/input-mode-banner.tsx +57 -0
  109. package/src/components/load-previous-button.tsx +48 -0
  110. package/src/components/login-modal.tsx +475 -0
  111. package/src/components/message-block.tsx +346 -0
  112. package/src/components/message-footer.tsx +258 -0
  113. package/src/components/message-with-agents.tsx +506 -0
  114. package/src/components/mode-divider.tsx +43 -0
  115. package/src/components/multiline-input.tsx +1241 -0
  116. package/src/components/out-of-credits-banner.tsx +160 -0
  117. package/src/components/pending-attachments-banner.tsx +116 -0
  118. package/src/components/pending-bash-message.tsx +59 -0
  119. package/src/components/progress-bar.tsx +81 -0
  120. package/src/components/project-picker-screen.tsx +485 -0
  121. package/src/components/publish-confirmation.tsx +493 -0
  122. package/src/components/publish-container.tsx +687 -0
  123. package/src/components/queue-panel.tsx +310 -0
  124. package/src/components/raised-pill.tsx +95 -0
  125. package/src/components/renderers/plan-box.tsx +59 -0
  126. package/src/components/review-screen.tsx +112 -0
  127. package/src/components/scroll-to-bottom-button.tsx +34 -0
  128. package/src/components/segmented-control.tsx +187 -0
  129. package/src/components/selectable-list.tsx +248 -0
  130. package/src/components/selected-chips.tsx +80 -0
  131. package/src/components/separator.tsx +40 -0
  132. package/src/components/session-ended-banner.tsx +226 -0
  133. package/src/components/shimmer-text.tsx +248 -0
  134. package/src/components/status-bar.tsx +313 -0
  135. package/src/components/subscription-limit-banner.tsx +206 -0
  136. package/src/components/suggested-prompts.tsx +184 -0
  137. package/src/components/suggestion-menu.tsx +215 -0
  138. package/src/components/terminal-command-display.tsx +151 -0
  139. package/src/components/terminal-link.tsx +97 -0
  140. package/src/components/terminal-thinking-orb.tsx +95 -0
  141. package/src/components/text-attachment-card.tsx +77 -0
  142. package/src/components/thinking.tsx +109 -0
  143. package/src/components/tools/__tests__/apply-patch.test.tsx +84 -0
  144. package/src/components/tools/__tests__/code-search.test.tsx +45 -0
  145. package/src/components/tools/__tests__/gravity-index.test.ts +76 -0
  146. package/src/components/tools/__tests__/render-ui.test.tsx +92 -0
  147. package/src/components/tools/__tests__/run-terminal-command.test.ts +233 -0
  148. package/src/components/tools/apply-patch.tsx +95 -0
  149. package/src/components/tools/code-search.tsx +45 -0
  150. package/src/components/tools/composio.tsx +152 -0
  151. package/src/components/tools/diff-viewer.tsx +76 -0
  152. package/src/components/tools/glob.tsx +61 -0
  153. package/src/components/tools/gravity-index.tsx +77 -0
  154. package/src/components/tools/list-directory.tsx +61 -0
  155. package/src/components/tools/read-docs.tsx +37 -0
  156. package/src/components/tools/read-files.tsx +91 -0
  157. package/src/components/tools/read-subtree.tsx +44 -0
  158. package/src/components/tools/read-url.tsx +33 -0
  159. package/src/components/tools/registry.ts +126 -0
  160. package/src/components/tools/render-ui.tsx +122 -0
  161. package/src/components/tools/run-terminal-command.tsx +79 -0
  162. package/src/components/tools/skill.tsx +29 -0
  163. package/src/components/tools/str-replace.tsx +77 -0
  164. package/src/components/tools/suggest-followups.tsx +369 -0
  165. package/src/components/tools/task-completed.tsx +16 -0
  166. package/src/components/tools/tool-call-item.tsx +273 -0
  167. package/src/components/tools/types.ts +55 -0
  168. package/src/components/tools/web-search.tsx +33 -0
  169. package/src/components/tools/write-file.tsx +16 -0
  170. package/src/components/tools/write-todos.tsx +95 -0
  171. package/src/components/top-banner.tsx +178 -0
  172. package/src/components/usage-banner.tsx +244 -0
  173. package/src/components/user-error-banner.tsx +56 -0
  174. package/src/components/validation-error-popover.tsx +192 -0
  175. package/src/contexts/__tests__/chat-runtime-context.test.tsx +149 -0
  176. package/src/contexts/chat-runtime-context.tsx +240 -0
  177. package/src/data/slash-commands.test.ts +24 -0
  178. package/src/data/slash-commands.ts +249 -0
  179. package/src/entry.ts +12 -0
  180. package/src/hooks/__tests__/holds-live-anvil-slot.test.ts +49 -0
  181. package/src/hooks/__tests__/session-fetch-signal.test.ts +63 -0
  182. package/src/hooks/__tests__/use-activity-query.test.ts +1000 -0
  183. package/src/hooks/__tests__/use-ask-user-bridge.test.ts +176 -0
  184. package/src/hooks/__tests__/use-auth-query.test.ts +21 -0
  185. package/src/hooks/__tests__/use-chat-input-remount.test.tsx +66 -0
  186. package/src/hooks/__tests__/use-clipboard.test.tsx +73 -0
  187. package/src/hooks/__tests__/use-connection-status.test.ts +112 -0
  188. package/src/hooks/__tests__/use-directory-browser.test.ts +203 -0
  189. package/src/hooks/__tests__/use-gravity-ad.test.ts +73 -0
  190. package/src/hooks/__tests__/use-grid-layout.test.ts +349 -0
  191. package/src/hooks/__tests__/use-input-history.test.ts +699 -0
  192. package/src/hooks/__tests__/use-message-queue-editing.test.tsx +209 -0
  193. package/src/hooks/__tests__/use-message-queue.test.tsx +71 -0
  194. package/src/hooks/__tests__/use-path-tab-completion.test.ts +315 -0
  195. package/src/hooks/__tests__/use-queue-controls.test.ts +68 -0
  196. package/src/hooks/__tests__/use-queue-ui.test.tsx +83 -0
  197. package/src/hooks/__tests__/use-searchable-list.test.ts +359 -0
  198. package/src/hooks/__tests__/use-send-message-timer.test.ts +146 -0
  199. package/src/hooks/__tests__/use-suggestion-engine-mention.test.ts +361 -0
  200. package/src/hooks/__tests__/use-suggestion-engine.test.ts +485 -0
  201. package/src/hooks/__tests__/use-terminal-focus.test.ts +66 -0
  202. package/src/hooks/__tests__/use-terminal-layout.test.ts +675 -0
  203. package/src/hooks/__tests__/use-timeout.test.ts +330 -0
  204. package/src/hooks/__tests__/use-usage-query.test.ts +502 -0
  205. package/src/hooks/__tests__/use-user-details-query.test.ts +195 -0
  206. package/src/hooks/helpers/__tests__/send-message.test.ts +1918 -0
  207. package/src/hooks/helpers/send-message.ts +654 -0
  208. package/src/hooks/stream-state.ts +83 -0
  209. package/src/hooks/use-activity-query.ts +668 -0
  210. package/src/hooks/use-agent-validation.ts +74 -0
  211. package/src/hooks/use-anvil-ctrl-c-exit.ts +23 -0
  212. package/src/hooks/use-anvil-session-progress.ts +34 -0
  213. package/src/hooks/use-anvil-session.ts +806 -0
  214. package/src/hooks/use-anvil-streak-query.ts +61 -0
  215. package/src/hooks/use-ask-user-bridge.ts +92 -0
  216. package/src/hooks/use-auth-query.ts +262 -0
  217. package/src/hooks/use-auth-state.ts +152 -0
  218. package/src/hooks/use-chat-input.ts +105 -0
  219. package/src/hooks/use-chat-keyboard.ts +321 -0
  220. package/src/hooks/use-chat-messages.ts +254 -0
  221. package/src/hooks/use-chat-state.ts +165 -0
  222. package/src/hooks/use-chat-streaming.ts +180 -0
  223. package/src/hooks/use-chat-ui.ts +131 -0
  224. package/src/hooks/use-clipboard.ts +151 -0
  225. package/src/hooks/use-connection-status.ts +142 -0
  226. package/src/hooks/use-directory-browser.ts +88 -0
  227. package/src/hooks/use-elapsed-time.ts +116 -0
  228. package/src/hooks/use-event.ts +34 -0
  229. package/src/hooks/use-exit-handler.ts +66 -0
  230. package/src/hooks/use-fetch-login-url.ts +65 -0
  231. package/src/hooks/use-fingerprint.ts +61 -0
  232. package/src/hooks/use-gravity-ad.ts +656 -0
  233. package/src/hooks/use-grid-layout.ts +73 -0
  234. package/src/hooks/use-input-history.ts +173 -0
  235. package/src/hooks/use-login-keyboard-handlers.ts +75 -0
  236. package/src/hooks/use-login-polling.ts +114 -0
  237. package/src/hooks/use-logo.tsx +161 -0
  238. package/src/hooks/use-message-queue.ts +387 -0
  239. package/src/hooks/use-now.ts +20 -0
  240. package/src/hooks/use-path-tab-completion.ts +88 -0
  241. package/src/hooks/use-publish-mutation.ts +60 -0
  242. package/src/hooks/use-queue-controls.ts +68 -0
  243. package/src/hooks/use-queue-ui.ts +74 -0
  244. package/src/hooks/use-scroll-management.ts +184 -0
  245. package/src/hooks/use-searchable-list.ts +98 -0
  246. package/src/hooks/use-send-message.ts +773 -0
  247. package/src/hooks/use-sheen-animation.tsx +88 -0
  248. package/src/hooks/use-subscription-query.ts +71 -0
  249. package/src/hooks/use-suggestion-engine.ts +783 -0
  250. package/src/hooks/use-terminal-breakpoints.ts +77 -0
  251. package/src/hooks/use-terminal-dimensions.ts +46 -0
  252. package/src/hooks/use-terminal-focus.ts +29 -0
  253. package/src/hooks/use-terminal-layout.ts +189 -0
  254. package/src/hooks/use-theme.tsx +140 -0
  255. package/src/hooks/use-timeout.ts +85 -0
  256. package/src/hooks/use-update-preference.ts +66 -0
  257. package/src/hooks/use-usage-monitor.ts +55 -0
  258. package/src/hooks/use-usage-query.ts +124 -0
  259. package/src/hooks/use-user-details-query.ts +93 -0
  260. package/src/hooks/use-why-did-you-update.ts +177 -0
  261. package/src/index.tsx +473 -0
  262. package/src/init/__tests__/init-direnv.test.ts +526 -0
  263. package/src/init/init-app.ts +34 -0
  264. package/src/init/init-direnv.ts +133 -0
  265. package/src/login/constants.ts +60 -0
  266. package/src/login/login-flow.ts +204 -0
  267. package/src/login/plain-login.ts +108 -0
  268. package/src/login/utils.ts +183 -0
  269. package/src/native/ripgrep.ts +80 -0
  270. package/src/polyfills/bun-strip-ansi.ts +12 -0
  271. package/src/pre-init/tree-sitter-wasm.ts +96 -0
  272. package/src/project-files.ts +102 -0
  273. package/src/setup/key-setup.ts +295 -0
  274. package/src/setup/load-env.ts +106 -0
  275. package/src/state/__tests__/chat-store-focus.test.ts +22 -0
  276. package/src/state/__tests__/feedback-store.test.ts +257 -0
  277. package/src/state/anvil-model-store.ts +42 -0
  278. package/src/state/anvil-session-store.ts +53 -0
  279. package/src/state/chat-history-store.ts +30 -0
  280. package/src/state/chat-store.ts +544 -0
  281. package/src/state/feedback-store.ts +160 -0
  282. package/src/state/login-store.ts +150 -0
  283. package/src/state/message-block-store.ts +149 -0
  284. package/src/state/publish-store.ts +146 -0
  285. package/src/state/queue-panel-store.ts +26 -0
  286. package/src/state/review-store.ts +24 -0
  287. package/src/types/anvil-session.ts +17 -0
  288. package/src/types/chat-state.ts +15 -0
  289. package/src/types/chat.ts +241 -0
  290. package/src/types/contracts/send-message.ts +12 -0
  291. package/src/types/env.ts +98 -0
  292. package/src/types/function-params.ts +28 -0
  293. package/src/types/react19-compat.d.ts +19 -0
  294. package/src/types/store.ts +111 -0
  295. package/src/types/theme-system.ts +144 -0
  296. package/src/types/utils.ts +3 -0
  297. package/src/utils/__tests__/active-run.test.ts +140 -0
  298. package/src/utils/__tests__/activity-tracker.test.ts +440 -0
  299. package/src/utils/__tests__/agent-display.test.ts +139 -0
  300. package/src/utils/__tests__/analytics-client.test.ts +262 -0
  301. package/src/utils/__tests__/anonymous-id.test.ts +74 -0
  302. package/src/utils/__tests__/anvil-api.test.ts +578 -0
  303. package/src/utils/__tests__/anvil-instance-owner.test.ts +69 -0
  304. package/src/utils/__tests__/anvil-model-navigation.test.ts +102 -0
  305. package/src/utils/__tests__/anvil-premium-reset.test.ts +79 -0
  306. package/src/utils/__tests__/anvil-referral-cache.test.ts +116 -0
  307. package/src/utils/__tests__/anvil-session-api.test.ts +215 -0
  308. package/src/utils/__tests__/anvil-session-display.test.ts +23 -0
  309. package/src/utils/__tests__/anvil-streak-line.test.ts +217 -0
  310. package/src/utils/__tests__/arrays.test.ts +264 -0
  311. package/src/utils/__tests__/bash-context-processor.test.ts +38 -0
  312. package/src/utils/__tests__/block-processor.test.ts +810 -0
  313. package/src/utils/__tests__/chat-history.test.ts +203 -0
  314. package/src/utils/__tests__/chat-input-key-intercept.test.ts +40 -0
  315. package/src/utils/__tests__/chat-meta.test.ts +130 -0
  316. package/src/utils/__tests__/clipboard-linux.test.ts +359 -0
  317. package/src/utils/__tests__/clipboard.test.ts +910 -0
  318. package/src/utils/__tests__/code-search-summary.test.ts +84 -0
  319. package/src/utils/__tests__/collapse-helpers.test.ts +1109 -0
  320. package/src/utils/__tests__/error-handling.test.ts +658 -0
  321. package/src/utils/__tests__/exit-cleanly.test.ts +110 -0
  322. package/src/utils/__tests__/feedback-helpers.test.ts +444 -0
  323. package/src/utils/__tests__/feedback-submission.test.ts +26 -0
  324. package/src/utils/__tests__/fetch-usage.test.ts +355 -0
  325. package/src/utils/__tests__/fingerprint.test.ts +144 -0
  326. package/src/utils/__tests__/fixtures/terminal-command-broker-child.ts +7 -0
  327. package/src/utils/__tests__/fixtures/terminal-command-broker-entry.ts +3 -0
  328. package/src/utils/__tests__/fixtures/terminal-command-broker-owner.ts +33 -0
  329. package/src/utils/__tests__/format-elapsed-time.test.ts +103 -0
  330. package/src/utils/__tests__/format-timeout.test.ts +87 -0
  331. package/src/utils/__tests__/image-dimensions.test.ts +249 -0
  332. package/src/utils/__tests__/image-processor.test.ts +209 -0
  333. package/src/utils/__tests__/implementor-helpers.test.ts +1458 -0
  334. package/src/utils/__tests__/keyboard-actions.test.ts +660 -0
  335. package/src/utils/__tests__/layout-helpers.test.ts +36 -0
  336. package/src/utils/__tests__/lazy-response-ads.test.ts +167 -0
  337. package/src/utils/__tests__/log-shipper.test.ts +53 -0
  338. package/src/utils/__tests__/markdown-renderer.test.tsx +421 -0
  339. package/src/utils/__tests__/message-block-helpers.test.ts +1263 -0
  340. package/src/utils/__tests__/message-updater.test.ts +645 -0
  341. package/src/utils/__tests__/osc-timeout-scenarios.test.ts +172 -0
  342. package/src/utils/__tests__/pending-attachments.test.ts +277 -0
  343. package/src/utils/__tests__/polling-backoff.test.ts +51 -0
  344. package/src/utils/__tests__/queue-panel-actions.test.ts +148 -0
  345. package/src/utils/__tests__/run-state-storage.test.ts +919 -0
  346. package/src/utils/__tests__/safe-json.test.ts +77 -0
  347. package/src/utils/__tests__/sdk-event-handlers.test.ts +685 -0
  348. package/src/utils/__tests__/send-message-helpers.test.ts +1898 -0
  349. package/src/utils/__tests__/send-message-timer.test.ts +64 -0
  350. package/src/utils/__tests__/settings.test.ts +99 -0
  351. package/src/utils/__tests__/strings.test.ts +192 -0
  352. package/src/utils/__tests__/terminal-color-detection.test.ts +425 -0
  353. package/src/utils/__tests__/terminal-command-broker.test.ts +528 -0
  354. package/src/utils/__tests__/terminal-enter-detection.test.ts +77 -0
  355. package/src/utils/__tests__/terminal-io.test.ts +137 -0
  356. package/src/utils/__tests__/terminal-protocol-controller.test.ts +119 -0
  357. package/src/utils/__tests__/text-layout.test.ts +82 -0
  358. package/src/utils/__tests__/theme-platform-detection.test.ts +125 -0
  359. package/src/utils/__tests__/think-tag-parser.test.ts +159 -0
  360. package/src/utils/__tests__/trace-writer.test.ts +223 -0
  361. package/src/utils/__tests__/trim-chat-logs.test.ts +78 -0
  362. package/src/utils/__tests__/usage-banner-state.test.ts +298 -0
  363. package/src/utils/__tests__/validation-error-formatting.test.ts +126 -0
  364. package/src/utils/__tests__/windows-terminal-health.test.ts +101 -0
  365. package/src/utils/__tests__/write-file-atomic.test.ts +127 -0
  366. package/src/utils/active-run.ts +131 -0
  367. package/src/utils/activity-tracker.ts +66 -0
  368. package/src/utils/agent-display.ts +87 -0
  369. package/src/utils/agent-helpers.ts +27 -0
  370. package/src/utils/agent-id-utils.ts +14 -0
  371. package/src/utils/ai-message-id.ts +12 -0
  372. package/src/utils/analytics.ts +361 -0
  373. package/src/utils/anonymous-id.ts +87 -0
  374. package/src/utils/anvil-agent-selection.ts +33 -0
  375. package/src/utils/anvil-api.ts +612 -0
  376. package/src/utils/anvil-client.ts +217 -0
  377. package/src/utils/anvil-instance-owner.ts +66 -0
  378. package/src/utils/anvil-model-navigation.ts +50 -0
  379. package/src/utils/anvil-premium-reset.ts +55 -0
  380. package/src/utils/anvil-referral-cache.ts +51 -0
  381. package/src/utils/anvil-session-api.ts +243 -0
  382. package/src/utils/anvil-session-display.ts +21 -0
  383. package/src/utils/anvil-streak-line.ts +93 -0
  384. package/src/utils/arrays.ts +117 -0
  385. package/src/utils/auth.ts +258 -0
  386. package/src/utils/bash-context-processor.ts +47 -0
  387. package/src/utils/bash-messages.ts +108 -0
  388. package/src/utils/block-margins.ts +35 -0
  389. package/src/utils/block-operations.ts +523 -0
  390. package/src/utils/block-processor.ts +213 -0
  391. package/src/utils/chat-history.ts +253 -0
  392. package/src/utils/chat-input-key-intercept.ts +52 -0
  393. package/src/utils/chat-meta.ts +90 -0
  394. package/src/utils/chat-scroll-accel.ts +151 -0
  395. package/src/utils/clipboard-image.ts +588 -0
  396. package/src/utils/clipboard.ts +397 -0
  397. package/src/utils/code-search-summary.ts +70 -0
  398. package/src/utils/collapse-helpers.ts +256 -0
  399. package/src/utils/config-dir.ts +24 -0
  400. package/src/utils/constants.ts +190 -0
  401. package/src/utils/create-event-handler-state.ts +73 -0
  402. package/src/utils/create-run-config.ts +121 -0
  403. package/src/utils/detect-shell.ts +116 -0
  404. package/src/utils/directory-browser.ts +72 -0
  405. package/src/utils/engagement.ts +55 -0
  406. package/src/utils/env.ts +92 -0
  407. package/src/utils/error-handling.ts +255 -0
  408. package/src/utils/error-messages.ts +62 -0
  409. package/src/utils/exit-cleanly.ts +86 -0
  410. package/src/utils/feedback-helpers.ts +103 -0
  411. package/src/utils/feedback-submission.ts +22 -0
  412. package/src/utils/fetch-usage.ts +76 -0
  413. package/src/utils/fingerprint.ts +245 -0
  414. package/src/utils/format-elapsed-time.ts +33 -0
  415. package/src/utils/format-session-units.ts +6 -0
  416. package/src/utils/format-timeout.ts +28 -0
  417. package/src/utils/format-validation-errors-for-message.ts +84 -0
  418. package/src/utils/git.ts +17 -0
  419. package/src/utils/helpers.ts +47 -0
  420. package/src/utils/image-display.ts +67 -0
  421. package/src/utils/image-handler.ts +325 -0
  422. package/src/utils/image-processor.ts +133 -0
  423. package/src/utils/image-thumbnail.ts +78 -0
  424. package/src/utils/implementor-helpers.ts +787 -0
  425. package/src/utils/input-modes.ts +174 -0
  426. package/src/utils/keyboard-actions.ts +392 -0
  427. package/src/utils/keypad-keys.ts +47 -0
  428. package/src/utils/layout-helpers.ts +33 -0
  429. package/src/utils/lazy-response-ads.ts +1 -0
  430. package/src/utils/local-agent-registry.ts +474 -0
  431. package/src/utils/log-shipper.ts +126 -0
  432. package/src/utils/logger.ts +327 -0
  433. package/src/utils/markdown-renderer.tsx +1090 -0
  434. package/src/utils/math.ts +3 -0
  435. package/src/utils/message-block-helpers.ts +684 -0
  436. package/src/utils/message-history.ts +143 -0
  437. package/src/utils/message-tree-utils.ts +67 -0
  438. package/src/utils/message-updater.ts +279 -0
  439. package/src/utils/open-file.ts +146 -0
  440. package/src/utils/open-url.ts +63 -0
  441. package/src/utils/path-completion.ts +111 -0
  442. package/src/utils/path-helpers.ts +38 -0
  443. package/src/utils/pending-attachments.ts +360 -0
  444. package/src/utils/polling-backoff.ts +59 -0
  445. package/src/utils/project-picker.ts +12 -0
  446. package/src/utils/queue-panel-actions.ts +70 -0
  447. package/src/utils/recent-projects.ts +156 -0
  448. package/src/utils/renderer-cleanup.ts +233 -0
  449. package/src/utils/response-ad-positions.ts +1 -0
  450. package/src/utils/run-state-storage.ts +603 -0
  451. package/src/utils/safe-json.ts +153 -0
  452. package/src/utils/sdk-event-handlers.ts +571 -0
  453. package/src/utils/send-message-helpers.ts +210 -0
  454. package/src/utils/send-message-timer.ts +110 -0
  455. package/src/utils/settings.ts +226 -0
  456. package/src/utils/skill-registry.ts +94 -0
  457. package/src/utils/spawn-agent-matcher.ts +55 -0
  458. package/src/utils/status-indicator-state.ts +107 -0
  459. package/src/utils/stream-chunk-processor.ts +57 -0
  460. package/src/utils/strings.ts +271 -0
  461. package/src/utils/subscription.ts +31 -0
  462. package/src/utils/syntax-highlighter.tsx +19 -0
  463. package/src/utils/terminal-color-detection.ts +474 -0
  464. package/src/utils/terminal-command-broker.ts +467 -0
  465. package/src/utils/terminal-enter-detection.ts +63 -0
  466. package/src/utils/terminal-images.ts +229 -0
  467. package/src/utils/terminal-io.ts +85 -0
  468. package/src/utils/terminal-protocol-controller.ts +173 -0
  469. package/src/utils/terminal-reset-sequences.ts +33 -0
  470. package/src/utils/terminal-title.ts +84 -0
  471. package/src/utils/terminal-watchdog.ts +366 -0
  472. package/src/utils/text-layout.ts +149 -0
  473. package/src/utils/theme-config.ts +141 -0
  474. package/src/utils/theme-system.ts +1206 -0
  475. package/src/utils/think-tag-parser.ts +95 -0
  476. package/src/utils/time-format.ts +21 -0
  477. package/src/utils/trace-writer.ts +162 -0
  478. package/src/utils/ui-constants.ts +69 -0
  479. package/src/utils/update-checker.ts +110 -0
  480. package/src/utils/usage-banner-state.ts +146 -0
  481. package/src/utils/validation-error-formatting.ts +86 -0
  482. package/src/utils/validation-error-helpers.ts +19 -0
  483. package/src/utils/windows-terminal-health.ts +124 -0
  484. package/src/utils/word-wrap-utils.ts +53 -0
  485. package/src/utils/write-file-atomic.ts +54 -0
  486. package/src/utils/yield-to-event-loop.ts +9 -0
  487. package/bin/anvil.cjs +0 -40
  488. package/dist/bundled.js +0 -123450
  489. package/dist/bundled.js.map +0 -827
  490. package/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
  491. package/dist/vendor/ripgrep/arm64-linux/rg +0 -0
  492. package/dist/vendor/ripgrep/x64-darwin/rg +0 -0
  493. package/dist/vendor/ripgrep/x64-linux/rg +0 -0
  494. package/dist/vendor/ripgrep/x64-win32/rg.exe +0 -0
@@ -0,0 +1,1051 @@
1
+ import { describe, test, expect } from 'bun:test'
2
+ import React from 'react'
3
+ import { renderToStaticMarkup } from 'react-dom/server'
4
+
5
+ import { GridLayout } from '../grid-layout'
6
+
7
+ interface TestItem {
8
+ id: string
9
+ name: string
10
+ }
11
+
12
+ const createTestItem = (id: string, name: string): TestItem => ({ id, name })
13
+
14
+ const defaultGetItemKey = (item: TestItem): string => item.id
15
+
16
+ const defaultRenderItem = (
17
+ item: TestItem,
18
+ _idx: number,
19
+ _columnWidth: number,
20
+ ): React.ReactNode => <text key={item.id}>{item.name}</text>
21
+
22
+ describe('GridLayout', () => {
23
+ describe('empty state', () => {
24
+ test('returns null for empty items array', () => {
25
+ const markup = renderToStaticMarkup(
26
+ <GridLayout
27
+ items={[]}
28
+ availableWidth={120}
29
+ getItemKey={defaultGetItemKey}
30
+ renderItem={defaultRenderItem}
31
+ />,
32
+ )
33
+
34
+ expect(markup).toBe('')
35
+ })
36
+ })
37
+
38
+ describe('single item rendering', () => {
39
+ test('renders a single item', () => {
40
+ const items = [createTestItem('item-1', 'First Item')]
41
+
42
+ const markup = renderToStaticMarkup(
43
+ <GridLayout
44
+ items={items}
45
+ availableWidth={120}
46
+ getItemKey={defaultGetItemKey}
47
+ renderItem={defaultRenderItem}
48
+ />,
49
+ )
50
+
51
+ expect(markup).toContain('First Item')
52
+ })
53
+
54
+ test('uses single column layout for one item', () => {
55
+ const items = [createTestItem('item-1', 'Only Item')]
56
+
57
+ const markup = renderToStaticMarkup(
58
+ <GridLayout
59
+ items={items}
60
+ availableWidth={200}
61
+ getItemKey={defaultGetItemKey}
62
+ renderItem={defaultRenderItem}
63
+ />,
64
+ )
65
+
66
+ expect(markup).toContain('Only Item')
67
+ })
68
+ })
69
+
70
+ describe('multiple items rendering', () => {
71
+ test('renders all items', () => {
72
+ const items = [
73
+ createTestItem('item-1', 'Item One'),
74
+ createTestItem('item-2', 'Item Two'),
75
+ createTestItem('item-3', 'Item Three'),
76
+ ]
77
+
78
+ const markup = renderToStaticMarkup(
79
+ <GridLayout
80
+ items={items}
81
+ availableWidth={180}
82
+ getItemKey={defaultGetItemKey}
83
+ renderItem={defaultRenderItem}
84
+ />,
85
+ )
86
+
87
+ expect(markup).toContain('Item One')
88
+ expect(markup).toContain('Item Two')
89
+ expect(markup).toContain('Item Three')
90
+ })
91
+
92
+ test('renders items in correct order', () => {
93
+ const items = [
94
+ createTestItem('a', 'Alpha'),
95
+ createTestItem('b', 'Beta'),
96
+ createTestItem('c', 'Gamma'),
97
+ ]
98
+
99
+ const markup = renderToStaticMarkup(
100
+ <GridLayout
101
+ items={items}
102
+ availableWidth={50}
103
+ getItemKey={defaultGetItemKey}
104
+ renderItem={defaultRenderItem}
105
+ />,
106
+ )
107
+
108
+ const alphaPos = markup.indexOf('Alpha')
109
+ const betaPos = markup.indexOf('Beta')
110
+ const gammaPos = markup.indexOf('Gamma')
111
+
112
+ expect(alphaPos).toBeLessThan(betaPos)
113
+ expect(betaPos).toBeLessThan(gammaPos)
114
+ })
115
+ })
116
+
117
+ describe('getItemKey function', () => {
118
+ test('uses getItemKey for React keys', () => {
119
+ const items = [
120
+ createTestItem('unique-key-1', 'Item 1'),
121
+ createTestItem('unique-key-2', 'Item 2'),
122
+ ]
123
+
124
+ const markup = renderToStaticMarkup(
125
+ <GridLayout
126
+ items={items}
127
+ availableWidth={120}
128
+ getItemKey={(item) => `custom-${item.id}`}
129
+ renderItem={defaultRenderItem}
130
+ />,
131
+ )
132
+
133
+ expect(markup).toContain('Item 1')
134
+ expect(markup).toContain('Item 2')
135
+ })
136
+
137
+ test('handles numeric keys', () => {
138
+ interface NumericItem {
139
+ index: number
140
+ label: string
141
+ }
142
+
143
+ const items: NumericItem[] = [
144
+ { index: 0, label: 'Zero' },
145
+ { index: 1, label: 'One' },
146
+ ]
147
+
148
+ const markup = renderToStaticMarkup(
149
+ <GridLayout
150
+ items={items}
151
+ availableWidth={120}
152
+ getItemKey={(item) => String(item.index)}
153
+ renderItem={(item) => <text>{item.label}</text>}
154
+ />,
155
+ )
156
+
157
+ expect(markup).toContain('Zero')
158
+ expect(markup).toContain('One')
159
+ })
160
+ })
161
+
162
+ describe('renderItem function', () => {
163
+ test('passes correct item to renderItem', () => {
164
+ const items = [createTestItem('test-id', 'Test Name')]
165
+ const renderedItems: TestItem[] = []
166
+
167
+ renderToStaticMarkup(
168
+ <GridLayout
169
+ items={items}
170
+ availableWidth={120}
171
+ getItemKey={defaultGetItemKey}
172
+ renderItem={(item, _idx, _width) => {
173
+ renderedItems.push(item)
174
+ return <text>{item.name}</text>
175
+ }}
176
+ />,
177
+ )
178
+
179
+ expect(renderedItems).toHaveLength(1)
180
+ expect(renderedItems[0]).toEqual({ id: 'test-id', name: 'Test Name' })
181
+ })
182
+
183
+ test('passes correct index to renderItem', () => {
184
+ const items = [
185
+ createTestItem('a', 'A'),
186
+ createTestItem('b', 'B'),
187
+ createTestItem('c', 'C'),
188
+ ]
189
+ const indices: number[] = []
190
+
191
+ renderToStaticMarkup(
192
+ <GridLayout
193
+ items={items}
194
+ availableWidth={50}
195
+ getItemKey={defaultGetItemKey}
196
+ renderItem={(item, idx, _width) => {
197
+ indices.push(idx)
198
+ return <text>{item.name}</text>
199
+ }}
200
+ />,
201
+ )
202
+
203
+ expect(indices).toEqual([0, 1, 2])
204
+ })
205
+
206
+ test('passes columnWidth to renderItem for single column', () => {
207
+ const items = [createTestItem('a', 'A')]
208
+ const widths: number[] = []
209
+
210
+ renderToStaticMarkup(
211
+ <GridLayout
212
+ items={items}
213
+ availableWidth={120}
214
+ getItemKey={defaultGetItemKey}
215
+ renderItem={(item, _idx, width) => {
216
+ widths.push(width)
217
+ return <text>{item.name}</text>
218
+ }}
219
+ />,
220
+ )
221
+
222
+ expect(widths[0]).toBe(120)
223
+ })
224
+
225
+ test('passes calculated columnWidth to renderItem for multi-column', () => {
226
+ const items = [
227
+ createTestItem('a', 'A'),
228
+ createTestItem('b', 'B'),
229
+ ]
230
+ const widths: number[] = []
231
+
232
+ renderToStaticMarkup(
233
+ <GridLayout
234
+ items={items}
235
+ availableWidth={121}
236
+ getItemKey={defaultGetItemKey}
237
+ renderItem={(item, _idx, width) => {
238
+ widths.push(width)
239
+ return <text>{item.name}</text>
240
+ }}
241
+ />,
242
+ )
243
+
244
+ // 2 columns: (121 - 1 gap) / 2 = 60
245
+ expect(widths[0]).toBe(60)
246
+ expect(widths[1]).toBe(60)
247
+ })
248
+ })
249
+
250
+ describe('footer prop', () => {
251
+ test('renders footer when provided', () => {
252
+ const items = [createTestItem('item-1', 'Item')]
253
+
254
+ const markup = renderToStaticMarkup(
255
+ <GridLayout
256
+ items={items}
257
+ availableWidth={120}
258
+ getItemKey={defaultGetItemKey}
259
+ renderItem={defaultRenderItem}
260
+ footer={<text>Footer Content</text>}
261
+ />,
262
+ )
263
+
264
+ expect(markup).toContain('Footer Content')
265
+ })
266
+
267
+ test('renders footer after items in single column', () => {
268
+ const items = [createTestItem('item-1', 'Main Item')]
269
+
270
+ const markup = renderToStaticMarkup(
271
+ <GridLayout
272
+ items={items}
273
+ availableWidth={50}
274
+ getItemKey={defaultGetItemKey}
275
+ renderItem={defaultRenderItem}
276
+ footer={<text>The Footer</text>}
277
+ />,
278
+ )
279
+
280
+ const itemPos = markup.indexOf('Main Item')
281
+ const footerPos = markup.indexOf('The Footer')
282
+
283
+ expect(itemPos).toBeLessThan(footerPos)
284
+ })
285
+
286
+ test('renders footer after items in multi-column', () => {
287
+ const items = [
288
+ createTestItem('a', 'Item A'),
289
+ createTestItem('b', 'Item B'),
290
+ ]
291
+
292
+ const markup = renderToStaticMarkup(
293
+ <GridLayout
294
+ items={items}
295
+ availableWidth={120}
296
+ getItemKey={defaultGetItemKey}
297
+ renderItem={defaultRenderItem}
298
+ footer={<text>Multi-col Footer</text>}
299
+ />,
300
+ )
301
+
302
+ expect(markup).toContain('Item A')
303
+ expect(markup).toContain('Item B')
304
+ expect(markup).toContain('Multi-col Footer')
305
+ })
306
+
307
+ test('does not render footer when not provided', () => {
308
+ const items = [createTestItem('item-1', 'Item')]
309
+
310
+ const markup = renderToStaticMarkup(
311
+ <GridLayout
312
+ items={items}
313
+ availableWidth={120}
314
+ getItemKey={defaultGetItemKey}
315
+ renderItem={defaultRenderItem}
316
+ />,
317
+ )
318
+
319
+ expect(markup).not.toContain('Footer')
320
+ })
321
+
322
+ test('renders complex footer elements', () => {
323
+ const items = [createTestItem('item-1', 'Item')]
324
+
325
+ const markup = renderToStaticMarkup(
326
+ <GridLayout
327
+ items={items}
328
+ availableWidth={120}
329
+ getItemKey={defaultGetItemKey}
330
+ renderItem={defaultRenderItem}
331
+ footer={
332
+ <box>
333
+ <text>Status:</text>
334
+ <text>Complete</text>
335
+ </box>
336
+ }
337
+ />,
338
+ )
339
+
340
+ expect(markup).toContain('Status:')
341
+ expect(markup).toContain('Complete')
342
+ })
343
+ })
344
+
345
+ describe('marginTop prop', () => {
346
+ test('applies default marginTop of 0', () => {
347
+ const items = [createTestItem('item-1', 'Item')]
348
+
349
+ const markup = renderToStaticMarkup(
350
+ <GridLayout
351
+ items={items}
352
+ availableWidth={120}
353
+ getItemKey={defaultGetItemKey}
354
+ renderItem={defaultRenderItem}
355
+ />,
356
+ )
357
+
358
+ expect(markup).toBeDefined()
359
+ })
360
+
361
+ test('applies custom marginTop', () => {
362
+ const items = [createTestItem('item-1', 'Item')]
363
+
364
+ const markup = renderToStaticMarkup(
365
+ <GridLayout
366
+ items={items}
367
+ availableWidth={120}
368
+ getItemKey={defaultGetItemKey}
369
+ renderItem={defaultRenderItem}
370
+ marginTop={2}
371
+ />,
372
+ )
373
+
374
+ expect(markup).toContain('Item')
375
+ })
376
+ })
377
+
378
+ describe('column layout based on width', () => {
379
+ test('narrow width (< 100) uses single column', () => {
380
+ const items = [
381
+ createTestItem('a', 'Alpha'),
382
+ createTestItem('b', 'Beta'),
383
+ createTestItem('c', 'Gamma'),
384
+ ]
385
+
386
+ const markup = renderToStaticMarkup(
387
+ <GridLayout
388
+ items={items}
389
+ availableWidth={80}
390
+ getItemKey={defaultGetItemKey}
391
+ renderItem={defaultRenderItem}
392
+ />,
393
+ )
394
+
395
+ expect(markup).toContain('Alpha')
396
+ expect(markup).toContain('Beta')
397
+ expect(markup).toContain('Gamma')
398
+ })
399
+
400
+ test('medium width (100-149) uses up to 2 columns', () => {
401
+ const items = [
402
+ createTestItem('a', 'Alpha'),
403
+ createTestItem('b', 'Beta'),
404
+ ]
405
+
406
+ const markup = renderToStaticMarkup(
407
+ <GridLayout
408
+ items={items}
409
+ availableWidth={120}
410
+ getItemKey={defaultGetItemKey}
411
+ renderItem={defaultRenderItem}
412
+ />,
413
+ )
414
+
415
+ expect(markup).toContain('Alpha')
416
+ expect(markup).toContain('Beta')
417
+ })
418
+
419
+ test('large width (150-199) uses up to 3 columns', () => {
420
+ const items = [
421
+ createTestItem('a', 'Alpha'),
422
+ createTestItem('b', 'Beta'),
423
+ createTestItem('c', 'Gamma'),
424
+ ]
425
+
426
+ const markup = renderToStaticMarkup(
427
+ <GridLayout
428
+ items={items}
429
+ availableWidth={180}
430
+ getItemKey={defaultGetItemKey}
431
+ renderItem={defaultRenderItem}
432
+ />,
433
+ )
434
+
435
+ expect(markup).toContain('Alpha')
436
+ expect(markup).toContain('Beta')
437
+ expect(markup).toContain('Gamma')
438
+ })
439
+
440
+ test('extra large width (>= 200) uses up to 4 columns', () => {
441
+ const items = [
442
+ createTestItem('a', 'Alpha'),
443
+ createTestItem('b', 'Beta'),
444
+ createTestItem('c', 'Gamma'),
445
+ createTestItem('d', 'Delta'),
446
+ ]
447
+
448
+ const markup = renderToStaticMarkup(
449
+ <GridLayout
450
+ items={items}
451
+ availableWidth={250}
452
+ getItemKey={defaultGetItemKey}
453
+ renderItem={defaultRenderItem}
454
+ />,
455
+ )
456
+
457
+ expect(markup).toContain('Alpha')
458
+ expect(markup).toContain('Beta')
459
+ expect(markup).toContain('Gamma')
460
+ expect(markup).toContain('Delta')
461
+ })
462
+ })
463
+
464
+ describe('generic type support', () => {
465
+ test('works with string items', () => {
466
+ const items = ['one', 'two', 'three']
467
+
468
+ const markup = renderToStaticMarkup(
469
+ <GridLayout
470
+ items={items}
471
+ availableWidth={180}
472
+ getItemKey={(item) => item}
473
+ renderItem={(item) => <text>{item.toUpperCase()}</text>}
474
+ />,
475
+ )
476
+
477
+ expect(markup).toContain('ONE')
478
+ expect(markup).toContain('TWO')
479
+ expect(markup).toContain('THREE')
480
+ })
481
+
482
+ test('works with number items', () => {
483
+ const items = [1, 2, 3]
484
+
485
+ const markup = renderToStaticMarkup(
486
+ <GridLayout
487
+ items={items}
488
+ availableWidth={180}
489
+ getItemKey={(item) => String(item)}
490
+ renderItem={(item) => <text>Number: {item}</text>}
491
+ />,
492
+ )
493
+
494
+ expect(markup).toContain('Number: 1')
495
+ expect(markup).toContain('Number: 2')
496
+ expect(markup).toContain('Number: 3')
497
+ })
498
+
499
+ test('works with complex object items', () => {
500
+ interface ComplexItem {
501
+ id: string
502
+ data: {
503
+ title: string
504
+ count: number
505
+ }
506
+ }
507
+
508
+ const items: ComplexItem[] = [
509
+ { id: 'c1', data: { title: 'First', count: 10 } },
510
+ { id: 'c2', data: { title: 'Second', count: 20 } },
511
+ ]
512
+
513
+ const markup = renderToStaticMarkup(
514
+ <GridLayout
515
+ items={items}
516
+ availableWidth={120}
517
+ getItemKey={(item) => item.id}
518
+ renderItem={(item) => (
519
+ <text>
520
+ {item.data.title}: {item.data.count}
521
+ </text>
522
+ )}
523
+ />,
524
+ )
525
+
526
+ expect(markup).toContain('First: 10')
527
+ expect(markup).toContain('Second: 20')
528
+ })
529
+ })
530
+
531
+ describe('narrow terminal rendering', () => {
532
+ test('renders all items with very narrow width (15 chars)', () => {
533
+ const items = [
534
+ createTestItem('a', 'Item A'),
535
+ createTestItem('b', 'Item B'),
536
+ createTestItem('c', 'Item C'),
537
+ ]
538
+
539
+ const markup = renderToStaticMarkup(
540
+ <GridLayout
541
+ items={items}
542
+ availableWidth={15}
543
+ getItemKey={defaultGetItemKey}
544
+ renderItem={defaultRenderItem}
545
+ />,
546
+ )
547
+
548
+ expect(markup).toContain('Item A')
549
+ expect(markup).toContain('Item B')
550
+ expect(markup).toContain('Item C')
551
+ })
552
+
553
+ test('renders all items with narrow width (20 chars)', () => {
554
+ const items = [
555
+ createTestItem('a', 'First'),
556
+ createTestItem('b', 'Second'),
557
+ createTestItem('c', 'Third'),
558
+ createTestItem('d', 'Fourth'),
559
+ ]
560
+
561
+ const markup = renderToStaticMarkup(
562
+ <GridLayout
563
+ items={items}
564
+ availableWidth={20}
565
+ getItemKey={defaultGetItemKey}
566
+ renderItem={defaultRenderItem}
567
+ />,
568
+ )
569
+
570
+ expect(markup).toContain('First')
571
+ expect(markup).toContain('Second')
572
+ expect(markup).toContain('Third')
573
+ expect(markup).toContain('Fourth')
574
+ })
575
+
576
+ test('uses single column for narrow width with multiple items', () => {
577
+ const items = [
578
+ createTestItem('a', 'Alpha'),
579
+ createTestItem('b', 'Beta'),
580
+ createTestItem('c', 'Gamma'),
581
+ ]
582
+ const widths: number[] = []
583
+
584
+ renderToStaticMarkup(
585
+ <GridLayout
586
+ items={items}
587
+ availableWidth={18}
588
+ getItemKey={defaultGetItemKey}
589
+ renderItem={(item, _idx, width) => {
590
+ widths.push(width)
591
+ return <text>{item.name}</text>
592
+ }}
593
+ />,
594
+ )
595
+
596
+ // All items should receive the full availableWidth (single column)
597
+ expect(widths).toEqual([18, 18, 18])
598
+ })
599
+
600
+ test('renders items in correct order with narrow width', () => {
601
+ const items = [
602
+ createTestItem('a', 'One'),
603
+ createTestItem('b', 'Two'),
604
+ createTestItem('c', 'Three'),
605
+ createTestItem('d', 'Four'),
606
+ ]
607
+
608
+ const markup = renderToStaticMarkup(
609
+ <GridLayout
610
+ items={items}
611
+ availableWidth={15}
612
+ getItemKey={defaultGetItemKey}
613
+ renderItem={defaultRenderItem}
614
+ />,
615
+ )
616
+
617
+ const onePos = markup.indexOf('One')
618
+ const twoPos = markup.indexOf('Two')
619
+ const threePos = markup.indexOf('Three')
620
+ const fourPos = markup.indexOf('Four')
621
+
622
+ expect(onePos).toBeLessThan(twoPos)
623
+ expect(twoPos).toBeLessThan(threePos)
624
+ expect(threePos).toBeLessThan(fourPos)
625
+ })
626
+
627
+ test('handles boundary width (21 chars) - still single column due to threshold', () => {
628
+ const items = [
629
+ createTestItem('a', 'A'),
630
+ createTestItem('b', 'B'),
631
+ ]
632
+ const widths: number[] = []
633
+
634
+ renderToStaticMarkup(
635
+ <GridLayout
636
+ items={items}
637
+ availableWidth={21}
638
+ getItemKey={defaultGetItemKey}
639
+ renderItem={(item, _idx, width) => {
640
+ widths.push(width)
641
+ return <text>{item.name}</text>
642
+ }}
643
+ />,
644
+ )
645
+
646
+ // 21 passes the minWidthForTwoColumns check (21 >= 21), but
647
+ // maxColumns is still 1 because 21 < WIDTH_MD_THRESHOLD (100)
648
+ // So it uses single column with full availableWidth
649
+ expect(widths[0]).toBe(21)
650
+ expect(widths[1]).toBe(21)
651
+ })
652
+
653
+ test('forces single column when width is just below threshold (20 chars)', () => {
654
+ const items = [
655
+ createTestItem('a', 'A'),
656
+ createTestItem('b', 'B'),
657
+ ]
658
+ const widths: number[] = []
659
+
660
+ renderToStaticMarkup(
661
+ <GridLayout
662
+ items={items}
663
+ availableWidth={20}
664
+ getItemKey={defaultGetItemKey}
665
+ renderItem={(item, _idx, width) => {
666
+ widths.push(width)
667
+ return <text>{item.name}</text>
668
+ }}
669
+ />,
670
+ )
671
+
672
+ // 20 is below minWidthForTwoColumns (21), so single column
673
+ // columnWidth = availableWidth = 20
674
+ expect(widths[0]).toBe(20)
675
+ expect(widths[1]).toBe(20)
676
+ })
677
+ })
678
+
679
+ describe('column transition (2→1)', () => {
680
+ // These tests verify the fix for the resize bug where content would disappear
681
+ // when transitioning from 2 columns to 1 column during terminal resize.
682
+ // The fix uses a unified DOM structure for all column counts.
683
+
684
+ test('all items render when transitioning from 2-column to 1-column width', () => {
685
+ const items = [
686
+ createTestItem('a', 'Alpha'),
687
+ createTestItem('b', 'Beta'),
688
+ createTestItem('c', 'Gamma'),
689
+ ]
690
+
691
+ // First render at 2-column width (120 is in the 100-149 range = 2 columns max)
692
+ const twoColumnMarkup = renderToStaticMarkup(
693
+ <GridLayout
694
+ items={items}
695
+ availableWidth={120}
696
+ getItemKey={defaultGetItemKey}
697
+ renderItem={defaultRenderItem}
698
+ />,
699
+ )
700
+
701
+ // Then render at 1-column width (80 is below 100 = 1 column)
702
+ const oneColumnMarkup = renderToStaticMarkup(
703
+ <GridLayout
704
+ items={items}
705
+ availableWidth={80}
706
+ getItemKey={defaultGetItemKey}
707
+ renderItem={defaultRenderItem}
708
+ />,
709
+ )
710
+
711
+ // All items should be present in both renders
712
+ expect(twoColumnMarkup).toContain('Alpha')
713
+ expect(twoColumnMarkup).toContain('Beta')
714
+ expect(twoColumnMarkup).toContain('Gamma')
715
+
716
+ expect(oneColumnMarkup).toContain('Alpha')
717
+ expect(oneColumnMarkup).toContain('Beta')
718
+ expect(oneColumnMarkup).toContain('Gamma')
719
+ })
720
+
721
+ test('items maintain correct order during 2→1 transition', () => {
722
+ const items = [
723
+ createTestItem('a', 'First'),
724
+ createTestItem('b', 'Second'),
725
+ createTestItem('c', 'Third'),
726
+ createTestItem('d', 'Fourth'),
727
+ ]
728
+
729
+ // Render at 1-column width (simulating post-transition state)
730
+ const markup = renderToStaticMarkup(
731
+ <GridLayout
732
+ items={items}
733
+ availableWidth={80}
734
+ getItemKey={defaultGetItemKey}
735
+ renderItem={defaultRenderItem}
736
+ />,
737
+ )
738
+
739
+ const firstPos = markup.indexOf('First')
740
+ const secondPos = markup.indexOf('Second')
741
+ const thirdPos = markup.indexOf('Third')
742
+ const fourthPos = markup.indexOf('Fourth')
743
+
744
+ // Items should be in order in single-column mode
745
+ expect(firstPos).toBeLessThan(secondPos)
746
+ expect(secondPos).toBeLessThan(thirdPos)
747
+ expect(thirdPos).toBeLessThan(fourthPos)
748
+ })
749
+
750
+ test('same items rendered in both 2-column and 1-column layouts', () => {
751
+ const items = [
752
+ createTestItem('item-1', 'Apple'),
753
+ createTestItem('item-2', 'Banana'),
754
+ createTestItem('item-3', 'Cherry'),
755
+ ]
756
+
757
+ const twoColumnMarkup = renderToStaticMarkup(
758
+ <GridLayout
759
+ items={items}
760
+ availableWidth={120}
761
+ getItemKey={defaultGetItemKey}
762
+ renderItem={defaultRenderItem}
763
+ />,
764
+ )
765
+
766
+ const oneColumnMarkup = renderToStaticMarkup(
767
+ <GridLayout
768
+ items={items}
769
+ availableWidth={80}
770
+ getItemKey={defaultGetItemKey}
771
+ renderItem={defaultRenderItem}
772
+ />,
773
+ )
774
+
775
+ // Extract item names from both renders - they should be identical sets
776
+ const itemNames = ['Apple', 'Banana', 'Cherry']
777
+ for (const name of itemNames) {
778
+ expect(twoColumnMarkup).toContain(name)
779
+ expect(oneColumnMarkup).toContain(name)
780
+ }
781
+ })
782
+
783
+ test('transition works with 2 items', () => {
784
+ const items = [
785
+ createTestItem('a', 'One'),
786
+ createTestItem('b', 'Two'),
787
+ ]
788
+
789
+ // 2-column layout
790
+ const twoCol = renderToStaticMarkup(
791
+ <GridLayout
792
+ items={items}
793
+ availableWidth={120}
794
+ getItemKey={defaultGetItemKey}
795
+ renderItem={defaultRenderItem}
796
+ />,
797
+ )
798
+
799
+ // 1-column layout
800
+ const oneCol = renderToStaticMarkup(
801
+ <GridLayout
802
+ items={items}
803
+ availableWidth={80}
804
+ getItemKey={defaultGetItemKey}
805
+ renderItem={defaultRenderItem}
806
+ />,
807
+ )
808
+
809
+ expect(twoCol).toContain('One')
810
+ expect(twoCol).toContain('Two')
811
+ expect(oneCol).toContain('One')
812
+ expect(oneCol).toContain('Two')
813
+ })
814
+
815
+ test('transition works with 3 items', () => {
816
+ const items = [
817
+ createTestItem('a', 'Red'),
818
+ createTestItem('b', 'Green'),
819
+ createTestItem('c', 'Blue'),
820
+ ]
821
+
822
+ const twoCol = renderToStaticMarkup(
823
+ <GridLayout
824
+ items={items}
825
+ availableWidth={120}
826
+ getItemKey={defaultGetItemKey}
827
+ renderItem={defaultRenderItem}
828
+ />,
829
+ )
830
+
831
+ const oneCol = renderToStaticMarkup(
832
+ <GridLayout
833
+ items={items}
834
+ availableWidth={80}
835
+ getItemKey={defaultGetItemKey}
836
+ renderItem={defaultRenderItem}
837
+ />,
838
+ )
839
+
840
+ expect(twoCol).toContain('Red')
841
+ expect(twoCol).toContain('Green')
842
+ expect(twoCol).toContain('Blue')
843
+ expect(oneCol).toContain('Red')
844
+ expect(oneCol).toContain('Green')
845
+ expect(oneCol).toContain('Blue')
846
+ })
847
+
848
+ test('transition works with 4 items', () => {
849
+ const items = [
850
+ createTestItem('a', 'North'),
851
+ createTestItem('b', 'South'),
852
+ createTestItem('c', 'East'),
853
+ createTestItem('d', 'West'),
854
+ ]
855
+
856
+ const twoCol = renderToStaticMarkup(
857
+ <GridLayout
858
+ items={items}
859
+ availableWidth={120}
860
+ getItemKey={defaultGetItemKey}
861
+ renderItem={defaultRenderItem}
862
+ />,
863
+ )
864
+
865
+ const oneCol = renderToStaticMarkup(
866
+ <GridLayout
867
+ items={items}
868
+ availableWidth={80}
869
+ getItemKey={defaultGetItemKey}
870
+ renderItem={defaultRenderItem}
871
+ />,
872
+ )
873
+
874
+ expect(twoCol).toContain('North')
875
+ expect(twoCol).toContain('South')
876
+ expect(twoCol).toContain('East')
877
+ expect(twoCol).toContain('West')
878
+ expect(oneCol).toContain('North')
879
+ expect(oneCol).toContain('South')
880
+ expect(oneCol).toContain('East')
881
+ expect(oneCol).toContain('West')
882
+ })
883
+
884
+ test('columnWidth is passed correctly in both layouts', () => {
885
+ const items = [
886
+ createTestItem('a', 'A'),
887
+ createTestItem('b', 'B'),
888
+ ]
889
+
890
+ const twoColWidths: number[] = []
891
+ const oneColWidths: number[] = []
892
+
893
+ renderToStaticMarkup(
894
+ <GridLayout
895
+ items={items}
896
+ availableWidth={120}
897
+ getItemKey={defaultGetItemKey}
898
+ renderItem={(item, _idx, width) => {
899
+ twoColWidths.push(width)
900
+ return <text>{item.name}</text>
901
+ }}
902
+ />,
903
+ )
904
+
905
+ renderToStaticMarkup(
906
+ <GridLayout
907
+ items={items}
908
+ availableWidth={80}
909
+ getItemKey={defaultGetItemKey}
910
+ renderItem={(item, _idx, width) => {
911
+ oneColWidths.push(width)
912
+ return <text>{item.name}</text>
913
+ }}
914
+ />,
915
+ )
916
+
917
+ // 2-column: (120 - 1 gap) / 2 = 59.5 -> 59
918
+ expect(twoColWidths[0]).toBe(59)
919
+ expect(twoColWidths[1]).toBe(59)
920
+
921
+ // 1-column: full width
922
+ expect(oneColWidths[0]).toBe(80)
923
+ expect(oneColWidths[1]).toBe(80)
924
+ })
925
+
926
+ test('unified structure handles rapid width changes', () => {
927
+ const items = [
928
+ createTestItem('a', 'Item1'),
929
+ createTestItem('b', 'Item2'),
930
+ createTestItem('c', 'Item3'),
931
+ ]
932
+
933
+ // Simulate rapid resize: 2-col -> 1-col -> 2-col -> 1-col
934
+ const widths = [120, 80, 120, 80]
935
+
936
+ for (const width of widths) {
937
+ const markup = renderToStaticMarkup(
938
+ <GridLayout
939
+ items={items}
940
+ availableWidth={width}
941
+ getItemKey={defaultGetItemKey}
942
+ renderItem={defaultRenderItem}
943
+ />,
944
+ )
945
+
946
+ // All items should always be present regardless of width
947
+ expect(markup).toContain('Item1')
948
+ expect(markup).toContain('Item2')
949
+ expect(markup).toContain('Item3')
950
+ }
951
+ })
952
+ })
953
+
954
+ describe('edge cases', () => {
955
+ test('handles very narrow width', () => {
956
+ const items = [createTestItem('item-1', 'Narrow')]
957
+
958
+ const markup = renderToStaticMarkup(
959
+ <GridLayout
960
+ items={items}
961
+ availableWidth={10}
962
+ getItemKey={defaultGetItemKey}
963
+ renderItem={defaultRenderItem}
964
+ />,
965
+ )
966
+
967
+ expect(markup).toContain('Narrow')
968
+ })
969
+
970
+ test('handles many items', () => {
971
+ const items = Array.from({ length: 50 }, (_, i) =>
972
+ createTestItem(`item-${i}`, `Item ${i}`),
973
+ )
974
+
975
+ const markup = renderToStaticMarkup(
976
+ <GridLayout
977
+ items={items}
978
+ availableWidth={200}
979
+ getItemKey={defaultGetItemKey}
980
+ renderItem={defaultRenderItem}
981
+ />,
982
+ )
983
+
984
+ expect(markup).toContain('Item 0')
985
+ expect(markup).toContain('Item 49')
986
+ })
987
+
988
+ test('handles items with special characters in names', () => {
989
+ const items = [
990
+ createTestItem('special-1', '<script>alert("xss")</script>'),
991
+ createTestItem('special-2', 'Item & More'),
992
+ ]
993
+
994
+ const markup = renderToStaticMarkup(
995
+ <GridLayout
996
+ items={items}
997
+ availableWidth={120}
998
+ getItemKey={defaultGetItemKey}
999
+ renderItem={defaultRenderItem}
1000
+ />,
1001
+ )
1002
+
1003
+ // React escapes HTML entities
1004
+ expect(markup).toContain('&lt;script&gt;')
1005
+ expect(markup).toContain('&amp;')
1006
+ })
1007
+
1008
+ test('handles undefined footer gracefully', () => {
1009
+ const items = [createTestItem('item-1', 'Item')]
1010
+
1011
+ const markup = renderToStaticMarkup(
1012
+ <GridLayout
1013
+ items={items}
1014
+ availableWidth={120}
1015
+ getItemKey={defaultGetItemKey}
1016
+ renderItem={defaultRenderItem}
1017
+ footer={undefined}
1018
+ />,
1019
+ )
1020
+
1021
+ expect(markup).toContain('Item')
1022
+ })
1023
+ })
1024
+
1025
+ describe('memoization', () => {
1026
+ test('component is memoized', () => {
1027
+ // MasonryGrid is wrapped in memo(), verify it renders consistently
1028
+ const items = [createTestItem('memo-test', 'Memoized')]
1029
+
1030
+ const markup1 = renderToStaticMarkup(
1031
+ <GridLayout
1032
+ items={items}
1033
+ availableWidth={120}
1034
+ getItemKey={defaultGetItemKey}
1035
+ renderItem={defaultRenderItem}
1036
+ />,
1037
+ )
1038
+
1039
+ const markup2 = renderToStaticMarkup(
1040
+ <GridLayout
1041
+ items={items}
1042
+ availableWidth={120}
1043
+ getItemKey={defaultGetItemKey}
1044
+ renderItem={defaultRenderItem}
1045
+ />,
1046
+ )
1047
+
1048
+ expect(markup1).toBe(markup2)
1049
+ })
1050
+ })
1051
+ })