@tom2012/cc-web 2026.5.18-b → 2026.5.18-e

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 (272) hide show
  1. package/README.md +1 -1
  2. package/backend/dist/index.d.ts.map +1 -1
  3. package/backend/dist/index.js +9 -21
  4. package/backend/dist/index.js.map +1 -1
  5. package/backend/dist/routes/_flow-injector.d.ts +4 -0
  6. package/backend/dist/routes/_flow-injector.d.ts.map +1 -0
  7. package/backend/dist/routes/_flow-injector.js +17 -0
  8. package/backend/dist/routes/_flow-injector.js.map +1 -0
  9. package/backend/dist/routes/global-tracks.d.ts +2 -5
  10. package/backend/dist/routes/global-tracks.d.ts.map +1 -1
  11. package/backend/dist/routes/global-tracks.js +2 -28
  12. package/backend/dist/routes/global-tracks.js.map +1 -1
  13. package/backend/dist/routes/track-flows.d.ts +12 -0
  14. package/backend/dist/routes/track-flows.d.ts.map +1 -0
  15. package/backend/dist/routes/track-flows.js +225 -0
  16. package/backend/dist/routes/track-flows.js.map +1 -0
  17. package/backend/dist/routes/tracks.d.ts +3 -9
  18. package/backend/dist/routes/tracks.d.ts.map +1 -1
  19. package/backend/dist/routes/tracks.js +3 -153
  20. package/backend/dist/routes/tracks.js.map +1 -1
  21. package/backend/dist/terminal-manager-singleton.d.ts +9 -0
  22. package/backend/dist/terminal-manager-singleton.d.ts.map +1 -0
  23. package/backend/dist/terminal-manager-singleton.js +6 -0
  24. package/backend/dist/terminal-manager-singleton.js.map +1 -0
  25. package/backend/dist/track-flow/__tests__/if-expr-evaluator.test.d.ts +2 -0
  26. package/backend/dist/track-flow/__tests__/if-expr-evaluator.test.d.ts.map +1 -0
  27. package/backend/dist/track-flow/__tests__/if-expr-evaluator.test.js +65 -0
  28. package/backend/dist/track-flow/__tests__/if-expr-evaluator.test.js.map +1 -0
  29. package/backend/dist/track-flow/__tests__/if-expr-parser.test.d.ts +2 -0
  30. package/backend/dist/track-flow/__tests__/if-expr-parser.test.d.ts.map +1 -0
  31. package/backend/dist/track-flow/__tests__/if-expr-parser.test.js +76 -0
  32. package/backend/dist/track-flow/__tests__/if-expr-parser.test.js.map +1 -0
  33. package/backend/dist/track-flow/__tests__/prompt-translator.test.d.ts +2 -0
  34. package/backend/dist/track-flow/__tests__/prompt-translator.test.d.ts.map +1 -0
  35. package/backend/dist/track-flow/__tests__/prompt-translator.test.js +59 -0
  36. package/backend/dist/track-flow/__tests__/prompt-translator.test.js.map +1 -0
  37. package/backend/dist/track-flow/__tests__/run-registry.test.d.ts +2 -0
  38. package/backend/dist/track-flow/__tests__/run-registry.test.d.ts.map +1 -0
  39. package/backend/dist/track-flow/__tests__/run-registry.test.js +54 -0
  40. package/backend/dist/track-flow/__tests__/run-registry.test.js.map +1 -0
  41. package/backend/dist/track-flow/__tests__/train-json-sync.test.d.ts +2 -0
  42. package/backend/dist/track-flow/__tests__/train-json-sync.test.d.ts.map +1 -0
  43. package/backend/dist/track-flow/__tests__/train-json-sync.test.js +93 -0
  44. package/backend/dist/track-flow/__tests__/train-json-sync.test.js.map +1 -0
  45. package/backend/dist/track-flow/__tests__/verify-flow-v3.d.ts +2 -0
  46. package/backend/dist/track-flow/__tests__/verify-flow-v3.d.ts.map +1 -0
  47. package/backend/dist/track-flow/__tests__/verify-flow-v3.js +177 -0
  48. package/backend/dist/track-flow/__tests__/verify-flow-v3.js.map +1 -0
  49. package/backend/dist/track-flow/audit-log.d.ts +22 -0
  50. package/backend/dist/track-flow/audit-log.d.ts.map +1 -0
  51. package/backend/dist/track-flow/audit-log.js +56 -0
  52. package/backend/dist/track-flow/audit-log.js.map +1 -0
  53. package/backend/dist/track-flow/if-expr-evaluator.d.ts +14 -0
  54. package/backend/dist/track-flow/if-expr-evaluator.d.ts.map +1 -0
  55. package/backend/dist/track-flow/if-expr-evaluator.js +73 -0
  56. package/backend/dist/track-flow/if-expr-evaluator.js.map +1 -0
  57. package/backend/dist/track-flow/if-expr-parser.d.ts +34 -0
  58. package/backend/dist/track-flow/if-expr-parser.d.ts.map +1 -0
  59. package/backend/dist/track-flow/if-expr-parser.js +176 -0
  60. package/backend/dist/track-flow/if-expr-parser.js.map +1 -0
  61. package/backend/dist/track-flow/index.d.ts +10 -0
  62. package/backend/dist/track-flow/index.d.ts.map +1 -0
  63. package/backend/dist/track-flow/index.js +26 -0
  64. package/backend/dist/track-flow/index.js.map +1 -0
  65. package/backend/dist/track-flow/llm-dispatcher.d.ts +36 -0
  66. package/backend/dist/track-flow/llm-dispatcher.d.ts.map +1 -0
  67. package/backend/dist/track-flow/llm-dispatcher.js +145 -0
  68. package/backend/dist/track-flow/llm-dispatcher.js.map +1 -0
  69. package/backend/dist/track-flow/prompt-translator.d.ts +19 -0
  70. package/backend/dist/track-flow/prompt-translator.d.ts.map +1 -0
  71. package/backend/dist/track-flow/prompt-translator.js +60 -0
  72. package/backend/dist/track-flow/prompt-translator.js.map +1 -0
  73. package/backend/dist/track-flow/run-id.d.ts +2 -0
  74. package/backend/dist/track-flow/run-id.d.ts.map +1 -0
  75. package/backend/dist/track-flow/run-id.js +7 -0
  76. package/backend/dist/track-flow/run-id.js.map +1 -0
  77. package/backend/dist/track-flow/run-registry.d.ts +77 -0
  78. package/backend/dist/track-flow/run-registry.d.ts.map +1 -0
  79. package/backend/dist/track-flow/run-registry.js +148 -0
  80. package/backend/dist/track-flow/run-registry.js.map +1 -0
  81. package/backend/dist/track-flow/runtime.d.ts +59 -0
  82. package/backend/dist/track-flow/runtime.d.ts.map +1 -0
  83. package/backend/dist/track-flow/runtime.js +204 -0
  84. package/backend/dist/track-flow/runtime.js.map +1 -0
  85. package/backend/dist/track-flow/store.d.ts +20 -0
  86. package/backend/dist/track-flow/store.d.ts.map +1 -0
  87. package/backend/dist/track-flow/store.js +158 -0
  88. package/backend/dist/track-flow/store.js.map +1 -0
  89. package/backend/dist/track-flow/train-json-sync.d.ts +31 -0
  90. package/backend/dist/track-flow/train-json-sync.d.ts.map +1 -0
  91. package/backend/dist/track-flow/train-json-sync.js +130 -0
  92. package/backend/dist/track-flow/train-json-sync.js.map +1 -0
  93. package/backend/dist/track-flow-ws.d.ts +5 -0
  94. package/backend/dist/track-flow-ws.d.ts.map +1 -0
  95. package/backend/dist/track-flow-ws.js +14 -0
  96. package/backend/dist/track-flow-ws.js.map +1 -0
  97. package/backend/dist/tracks/ask-user-bridge.d.ts +1 -6
  98. package/backend/dist/tracks/ask-user-bridge.d.ts.map +1 -1
  99. package/backend/dist/tracks/ask-user-bridge.js +0 -22
  100. package/backend/dist/tracks/ask-user-bridge.js.map +1 -1
  101. package/backend/dist/tracks/index.d.ts +1 -5
  102. package/backend/dist/tracks/index.d.ts.map +1 -1
  103. package/backend/dist/tracks/index.js +1 -10
  104. package/backend/dist/tracks/index.js.map +1 -1
  105. package/backend/package-lock.json +2066 -124
  106. package/backend/package.json +6 -5
  107. package/frontend/dist/assets/{ChatOverlay-DPM_F615.js → ChatOverlay-BsozN13k.js} +1 -1
  108. package/frontend/dist/assets/{GraphPreview-CJhh33L8.js → GraphPreview-Bagqaatf.js} +2 -2
  109. package/frontend/dist/assets/{MobilePage-Cx9v8Udp.js → MobilePage-BTKA6Dxj.js} +3 -3
  110. package/frontend/dist/assets/{OfficePreview-h6zYBZFQ.js → OfficePreview-CMRAt1Qb.js} +2 -2
  111. package/frontend/dist/assets/{PdfPreview-DbYFye7c.js → PdfPreview-DM7Lq8lA.js} +1 -1
  112. package/frontend/dist/assets/ProjectPage-3rERYJYF.js +26 -0
  113. package/frontend/dist/assets/{TrackGraphEditor-Fd0xVSp_.css → ProjectPage-DFCEXprr.css} +32 -1
  114. package/frontend/dist/assets/{SettingsPage-BkApTPbw.js → SettingsPage-CA9PjfJR.js} +2 -2
  115. package/frontend/dist/assets/{SkillHubPage-BwfU-hel.js → SkillHubPage-DLt5DGX6.js} +3 -3
  116. package/frontend/dist/assets/{chevron-down-D4Vj-5wB.js → chevron-down-D7HR2Yyz.js} +1 -1
  117. package/frontend/dist/assets/{index-CKxFfdqR.js → index-fIUNz576.js} +1 -1
  118. package/frontend/dist/assets/{index-DUIOrPha.js → index-k0ydgbQO.js} +7 -7
  119. package/frontend/dist/assets/{index-C-2GBtXy.js → index-tE28G1ot.js} +1 -1
  120. package/frontend/dist/assets/index-tSU3-nNc.css +1 -0
  121. package/frontend/dist/assets/{jszip.min-Bn769Ot7.js → jszip.min-BDxK042T.js} +1 -1
  122. package/frontend/dist/assets/{select-CXSNG3yW.js → select-C6nWxQ7S.js} +2 -2
  123. package/frontend/dist/assets/{user-Chl3LWFq.js → user-DbW3r9c3.js} +1 -1
  124. package/frontend/dist/index.html +2 -2
  125. package/package.json +1 -1
  126. package/backend/vendor/@tom2012/train-core/dist/ast-cache.d.ts +0 -74
  127. package/backend/vendor/@tom2012/train-core/dist/ast-cache.d.ts.map +0 -1
  128. package/backend/vendor/@tom2012/train-core/dist/ast-cache.js +0 -157
  129. package/backend/vendor/@tom2012/train-core/dist/ast-cache.js.map +0 -1
  130. package/backend/vendor/@tom2012/train-core/dist/ast.d.ts +0 -350
  131. package/backend/vendor/@tom2012/train-core/dist/ast.d.ts.map +0 -1
  132. package/backend/vendor/@tom2012/train-core/dist/ast.js +0 -15
  133. package/backend/vendor/@tom2012/train-core/dist/ast.js.map +0 -1
  134. package/backend/vendor/@tom2012/train-core/dist/builder.d.ts +0 -21
  135. package/backend/vendor/@tom2012/train-core/dist/builder.d.ts.map +0 -1
  136. package/backend/vendor/@tom2012/train-core/dist/builder.js +0 -1254
  137. package/backend/vendor/@tom2012/train-core/dist/builder.js.map +0 -1
  138. package/backend/vendor/@tom2012/train-core/dist/builtins.d.ts +0 -17
  139. package/backend/vendor/@tom2012/train-core/dist/builtins.d.ts.map +0 -1
  140. package/backend/vendor/@tom2012/train-core/dist/builtins.js +0 -500
  141. package/backend/vendor/@tom2012/train-core/dist/builtins.js.map +0 -1
  142. package/backend/vendor/@tom2012/train-core/dist/index.d.ts +0 -54
  143. package/backend/vendor/@tom2012/train-core/dist/index.d.ts.map +0 -1
  144. package/backend/vendor/@tom2012/train-core/dist/index.js +0 -66
  145. package/backend/vendor/@tom2012/train-core/dist/index.js.map +0 -1
  146. package/backend/vendor/@tom2012/train-core/dist/interpreter.d.ts +0 -110
  147. package/backend/vendor/@tom2012/train-core/dist/interpreter.d.ts.map +0 -1
  148. package/backend/vendor/@tom2012/train-core/dist/interpreter.js +0 -943
  149. package/backend/vendor/@tom2012/train-core/dist/interpreter.js.map +0 -1
  150. package/backend/vendor/@tom2012/train-core/dist/lexer.d.ts +0 -88
  151. package/backend/vendor/@tom2012/train-core/dist/lexer.d.ts.map +0 -1
  152. package/backend/vendor/@tom2012/train-core/dist/lexer.js +0 -243
  153. package/backend/vendor/@tom2012/train-core/dist/lexer.js.map +0 -1
  154. package/backend/vendor/@tom2012/train-core/dist/module-loader.d.ts +0 -74
  155. package/backend/vendor/@tom2012/train-core/dist/module-loader.d.ts.map +0 -1
  156. package/backend/vendor/@tom2012/train-core/dist/module-loader.js +0 -149
  157. package/backend/vendor/@tom2012/train-core/dist/module-loader.js.map +0 -1
  158. package/backend/vendor/@tom2012/train-core/dist/parser.d.ts +0 -138
  159. package/backend/vendor/@tom2012/train-core/dist/parser.d.ts.map +0 -1
  160. package/backend/vendor/@tom2012/train-core/dist/parser.js +0 -861
  161. package/backend/vendor/@tom2012/train-core/dist/parser.js.map +0 -1
  162. package/backend/vendor/@tom2012/train-core/dist/prompt-composer.d.ts +0 -49
  163. package/backend/vendor/@tom2012/train-core/dist/prompt-composer.d.ts.map +0 -1
  164. package/backend/vendor/@tom2012/train-core/dist/prompt-composer.js +0 -159
  165. package/backend/vendor/@tom2012/train-core/dist/prompt-composer.js.map +0 -1
  166. package/backend/vendor/@tom2012/train-core/dist/runtime.d.ts +0 -146
  167. package/backend/vendor/@tom2012/train-core/dist/runtime.d.ts.map +0 -1
  168. package/backend/vendor/@tom2012/train-core/dist/runtime.js +0 -156
  169. package/backend/vendor/@tom2012/train-core/dist/runtime.js.map +0 -1
  170. package/backend/vendor/@tom2012/train-core/dist/type-descriptor.d.ts +0 -18
  171. package/backend/vendor/@tom2012/train-core/dist/type-descriptor.d.ts.map +0 -1
  172. package/backend/vendor/@tom2012/train-core/dist/type-descriptor.js +0 -94
  173. package/backend/vendor/@tom2012/train-core/dist/type-descriptor.js.map +0 -1
  174. package/backend/vendor/@tom2012/train-core/dist/validation.d.ts +0 -44
  175. package/backend/vendor/@tom2012/train-core/dist/validation.d.ts.map +0 -1
  176. package/backend/vendor/@tom2012/train-core/dist/validation.js +0 -271
  177. package/backend/vendor/@tom2012/train-core/dist/validation.js.map +0 -1
  178. package/backend/vendor/@tom2012/train-core/package.json +0 -35
  179. package/frontend/dist/assets/ProjectPage-9CEnUXvW.css +0 -32
  180. package/frontend/dist/assets/ProjectPage-DaPmvQ-H.js +0 -26
  181. package/frontend/dist/assets/TrackEditor-BbM0eHTD.js +0 -14
  182. package/frontend/dist/assets/TrackGraphEditor-DzEqAGFN.js +0 -2
  183. package/frontend/dist/assets/abap-LPLW346S.js +0 -7
  184. package/frontend/dist/assets/apex-Dk-jUCUV.js +0 -7
  185. package/frontend/dist/assets/azcli-DPUMmPlX.js +0 -7
  186. package/frontend/dist/assets/bat-C1Qbg1bV.js +0 -7
  187. package/frontend/dist/assets/bicep-D-e-VSJi.js +0 -7
  188. package/frontend/dist/assets/cameligo-CjUqTgqL.js +0 -7
  189. package/frontend/dist/assets/clojure-BWsu6Kju.js +0 -7
  190. package/frontend/dist/assets/codicon-DCmgc-ay.ttf +0 -0
  191. package/frontend/dist/assets/coffee-DeC36AK3.js +0 -7
  192. package/frontend/dist/assets/cpp-DcZnmBWT.js +0 -7
  193. package/frontend/dist/assets/csharp-DqBXBMf0.js +0 -7
  194. package/frontend/dist/assets/csp-CkO7y8ul.js +0 -7
  195. package/frontend/dist/assets/css-OAcfVtED.js +0 -7
  196. package/frontend/dist/assets/cssMode-5whH06Yl.js +0 -7
  197. package/frontend/dist/assets/cypher-40UGrUjD.js +0 -7
  198. package/frontend/dist/assets/dart-DmixyLor.js +0 -7
  199. package/frontend/dist/assets/dockerfile-CayO4nTA.js +0 -7
  200. package/frontend/dist/assets/ecl-DRrKCuVc.js +0 -7
  201. package/frontend/dist/assets/editor-B5EY1bb8.css +0 -1
  202. package/frontend/dist/assets/editor.main-CnjJg6pv.js +0 -37
  203. package/frontend/dist/assets/elixir-J3qpp9mX.js +0 -7
  204. package/frontend/dist/assets/flow9-DzW2c4Im.js +0 -7
  205. package/frontend/dist/assets/freemarker2-CUgILTtX.js +0 -7
  206. package/frontend/dist/assets/fsharp-D00tn_6c.js +0 -7
  207. package/frontend/dist/assets/go-NnNmgWK_.js +0 -7
  208. package/frontend/dist/assets/graphql-C9_--VLF.js +0 -7
  209. package/frontend/dist/assets/handlebars-C2avKkbK.js +0 -7
  210. package/frontend/dist/assets/hcl-BhbOULbp.js +0 -7
  211. package/frontend/dist/assets/html-ZYUiGgvr.js +0 -7
  212. package/frontend/dist/assets/htmlMode-CeliqUBd.js +0 -7
  213. package/frontend/dist/assets/index-COjNnvQB.css +0 -1
  214. package/frontend/dist/assets/index-DjmvYdMM.js +0 -1
  215. package/frontend/dist/assets/ini-zR-_X5iG.js +0 -7
  216. package/frontend/dist/assets/java-CSTjsyoZ.js +0 -7
  217. package/frontend/dist/assets/javascript-0VRCllAK.js +0 -7
  218. package/frontend/dist/assets/jsonMode-Dwqu43-Y.js +0 -7
  219. package/frontend/dist/assets/julia-DioMOKVu.js +0 -7
  220. package/frontend/dist/assets/kotlin-Dsb0PKmW.js +0 -7
  221. package/frontend/dist/assets/less-CZYLoAVD.js +0 -7
  222. package/frontend/dist/assets/lexon-d5JUiwNk.js +0 -7
  223. package/frontend/dist/assets/liquid-E2ejTVvo.js +0 -7
  224. package/frontend/dist/assets/lua-1Al72GG8.js +0 -7
  225. package/frontend/dist/assets/m3-hx1xCPC3.js +0 -7
  226. package/frontend/dist/assets/markdown-DPGrH1xZ.js +0 -7
  227. package/frontend/dist/assets/mdx-CqJmnu86.js +0 -7
  228. package/frontend/dist/assets/mips-CYbZjkIm.js +0 -7
  229. package/frontend/dist/assets/msdax-DAioKM5A.js +0 -7
  230. package/frontend/dist/assets/mysql-7e9GUebS.js +0 -7
  231. package/frontend/dist/assets/objective-c-BGf8QNjz.js +0 -7
  232. package/frontend/dist/assets/pascal-hEDRz3un.js +0 -7
  233. package/frontend/dist/assets/pascaligo-gqEhN6pG.js +0 -7
  234. package/frontend/dist/assets/perl-CN8Ht9Vk.js +0 -7
  235. package/frontend/dist/assets/pgsql-CRCqHQBx.js +0 -7
  236. package/frontend/dist/assets/php-DTZrlAwe.js +0 -7
  237. package/frontend/dist/assets/pla-CRmh4UcC.js +0 -7
  238. package/frontend/dist/assets/postiats-Car2G7g8.js +0 -7
  239. package/frontend/dist/assets/powerquery-BJKl8V3o.js +0 -7
  240. package/frontend/dist/assets/powershell-Du7a_J7r.js +0 -7
  241. package/frontend/dist/assets/protobuf-ChneWI0H.js +0 -7
  242. package/frontend/dist/assets/pug-BH6LSJaf.js +0 -7
  243. package/frontend/dist/assets/python-BYNiBUNZ.js +0 -7
  244. package/frontend/dist/assets/qsharp-CU-Hxpxi.js +0 -7
  245. package/frontend/dist/assets/r-Bw-W15zh.js +0 -7
  246. package/frontend/dist/assets/razor-2YR0XVnP.js +0 -7
  247. package/frontend/dist/assets/redis-bY-X9-ol.js +0 -7
  248. package/frontend/dist/assets/redshift-CMu3ubbS.js +0 -7
  249. package/frontend/dist/assets/restructuredtext-KNkiWGNN.js +0 -7
  250. package/frontend/dist/assets/ruby-dQWMhU86.js +0 -7
  251. package/frontend/dist/assets/rust-BAcHhnEU.js +0 -7
  252. package/frontend/dist/assets/sb-Bidr5w2z.js +0 -7
  253. package/frontend/dist/assets/scala-imTtxsGY.js +0 -7
  254. package/frontend/dist/assets/scheme-BY-WHKiB.js +0 -7
  255. package/frontend/dist/assets/scss-NDoRP52C.js +0 -7
  256. package/frontend/dist/assets/shell-DrIjotnh.js +0 -7
  257. package/frontend/dist/assets/solidity-DTahNycF.js +0 -7
  258. package/frontend/dist/assets/sophia-DtyrjGkZ.js +0 -7
  259. package/frontend/dist/assets/sparql-CFuS5E3z.js +0 -7
  260. package/frontend/dist/assets/sql-BRxcnbRv.js +0 -7
  261. package/frontend/dist/assets/st-Dz4uh7MK.js +0 -7
  262. package/frontend/dist/assets/swift-Digsrw1G.js +0 -11
  263. package/frontend/dist/assets/systemverilog-7TDrkMau.js +0 -7
  264. package/frontend/dist/assets/tcl-BtaFcnDi.js +0 -7
  265. package/frontend/dist/assets/tsMode-DrjOLXjA.js +0 -7
  266. package/frontend/dist/assets/twig-Deid_oBs.js +0 -7
  267. package/frontend/dist/assets/typescript--8YtfOFf.js +0 -7
  268. package/frontend/dist/assets/typespec-zUaxhbG8.js +0 -7
  269. package/frontend/dist/assets/vb-DK0rKJzo.js +0 -7
  270. package/frontend/dist/assets/wgsl-B8fNVlOQ.js +0 -7
  271. package/frontend/dist/assets/xml-CGj_sBRG.js +0 -7
  272. package/frontend/dist/assets/yaml-of0AgMN8.js +0 -7
@@ -0,0 +1,26 @@
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/GraphPreview-Bagqaatf.js","assets/index-k0ydgbQO.js","assets/index-tSU3-nNc.css","assets/purify.es-CgRAQgUo.js","assets/ChatOverlay-BsozN13k.js","assets/chevron-down-D7HR2Yyz.js","assets/index-fIUNz576.js","assets/ChatOverlay-wklAmtGL.css","assets/select-C6nWxQ7S.js","assets/user-DbW3r9c3.js","assets/OfficePreview-CMRAt1Qb.js","assets/PdfPreview-DM7Lq8lA.js","assets/PdfPreview-Bu5q60D-.css"])))=>i.map(i=>d[i]);
2
+ var e,t,s,i,r,n;import{c as o,u as a,r as l,a as c,g as h,b as d,w as u,t as f,j as p,d as m,E as g,P as _,M as v,e as x,f as y,X as b,h as w,i as S,S as C,R as k,_ as N,s as E,k as j,l as M,D,T as R,m as P,F as L,n as T,o as I,C as B,p as O,A,q as z,v as $,x as H,B as W,y as F,z as K,I as V,G as U,H as q,J as Y,K as X,L as G,N as Z,O as J,Q,U as ee,V as te,W as se,Y as ie,Z as re,$ as ne,a0 as oe,a1 as ae,a2 as le,a3 as ce,a4 as he,a5 as de,a6 as ue,a7 as fe,a8 as pe,a9 as me,aa as ge,ab as _e,ac as ve,ad as xe,ae as ye,af as be,ag as we,ah as Se,ai as Ce,aj as ke,ak as Ne,al as Ee,am as je,an as Me,ao as De,ap as Re,aq as Pe,ar as Le,as as Te,at as Ie,au as Be,av as Oe,aw as Ae,ax as ze,ay as $e,az as He,aA as We,aB as Fe,aC as Ke,aD as Ve,aE as Ue,aF as qe,aG as Ye,aH as Xe,aI as Ge,aJ as Ze,aK as Je,aL as Qe,aM as et,aN as tt,aO as st,aP as it,aQ as rt,aR as nt,aS as ot,aT as at,aU as lt,aV as ct,aW as ht,aX as dt,aY as ut,aZ as ft,a_ as pt,a$ as mt,b0 as gt,b1 as _t,b2 as vt,b3 as xt,b4 as yt,b5 as bt}from"./index-k0ydgbQO.js";import{p as wt}from"./purify.es-CgRAQgUo.js";import{F as St,M as Ct,r as kt,a as Nt,b as Et,c as jt,h as Mt,o as Dt,d as Rt,e as Pt,I as Lt,C as Tt,f as It,g as Bt}from"./ChatOverlay-BsozN13k.js";import{S as Ot,U as At,T as zt,a as $t,b as Ht,c as Wt,R as Ft,A as Kt,d as Vt,e as Ut,f as qt,I as Yt,g as Xt,C as Gt,h as Zt,i as Jt,j as Qt,k as es,l as ts,m as ss,n as is}from"./select-C6nWxQ7S.js";import{C as rs}from"./chevron-down-D7HR2Yyz.js";import{u as ns,C as os,a as as}from"./index-fIUNz576.js";import{U as ls,S as cs}from"./user-DbW3r9c3.js";
3
+ /**
4
+ * @license lucide-react v0.309.0 - ISC
5
+ *
6
+ * This source code is licensed under the ISC license.
7
+ * See the LICENSE file in the root directory of this source tree.
8
+ */const hs=o("AlertCircle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]),ds=o("Bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]),us=o("CircleDot",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]),fs=o("ClipboardCopy",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2",key:"4jdomd"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4",key:"3hqy98"}],["path",{d:"M21 14H11",key:"1bme5i"}],["path",{d:"m15 10-4 4 4 4",key:"5dvupr"}]]),ps=o("Code",[["polyline",{points:"16 18 22 12 16 6",key:"z7tu5w"}],["polyline",{points:"8 6 2 12 8 18",key:"1eg1df"}]]),ms=o("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]),gs=o("Database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]),_s=o("FileSpreadsheet",[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z",key:"1nnpy2"}],["polyline",{points:"14 2 14 8 20 8",key:"1ew0cm"}],["path",{d:"M8 13h2",key:"yr2amv"}],["path",{d:"M8 17h2",key:"2yhykz"}],["path",{d:"M14 13h2",key:"un5t4a"}],["path",{d:"M14 17h2",key:"10kma7"}]]),vs=o("GitBranch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]),xs=o("GitCommitHorizontal",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]]),ys=o("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]),bs=o("ListRestart",[["path",{d:"M21 6H3",key:"1jwq7v"}],["path",{d:"M7 12H3",key:"13ou7f"}],["path",{d:"M7 18H3",key:"1sijw9"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14",key:"qth677"}],["path",{d:"M11 10v4h4",key:"172dkj"}]]),ws=o("MessageSquare",[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]]),Ss=o("MoreVertical",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]]),Cs=o("Network",[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]]),ks=o("PanelLeft",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]]),Ns=o("PanelRight",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]]),Es=o("Pause",[["rect",{width:"4",height:"16",x:"6",y:"4",key:"iffhe4"}],["rect",{width:"4",height:"16",x:"14",y:"4",key:"sjin7j"}]]),js=o("Play",[["polygon",{points:"5 3 19 12 5 21 5 3",key:"191637"}]]),Ms=o("Presentation",[["path",{d:"M2 3h20",key:"91anmk"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3",key:"2k9sn8"}],["path",{d:"m7 21 5-5 5 5",key:"bip4we"}]]),Ds=o("Repeat",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]]),Rs=o("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]),Ps=o("TrainTrack",[["path",{d:"M2 17 17 2",key:"18b09t"}],["path",{d:"m2 14 8 8",key:"1gv9hu"}],["path",{d:"m5 11 8 8",key:"189pqp"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"m11 5 8 8",key:"ummqn6"}],["path",{d:"m14 2 8 8",key:"1vk7dn"}],["path",{d:"M7 22 22 7",key:"15mb1i"}]]),Ls=o("Workflow",[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]]),Ts=o("ZoomIn",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]]),Is=o("ZoomOut",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]]),Bs=k.lazy(()=>N(()=>import("./GraphPreview-Bagqaatf.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9])).then(e=>({default:e.GraphPreview}))),Os=k.lazy(()=>N(()=>import("./OfficePreview-CMRAt1Qb.js"),__vite__mapDeps([10,1,2,3])).then(e=>({default:e.OfficePreview}))),As=k.lazy(()=>N(()=>import("./PdfPreview-DM7Lq8lA.js"),__vite__mapDeps([11,1,2,12])).then(e=>({default:e.PdfPreview}))),zs=new Set(["docx","xlsx","xls","pptx"]),$s=new Set(["pdf"]),Hs={js:"javascript",jsx:"jsx",ts:"typescript",tsx:"tsx",py:"python",rb:"ruby",go:"go",rs:"rust",java:"java",kt:"kotlin",swift:"swift",c:"c",cpp:"cpp",h:"c",cs:"csharp",php:"php",sh:"bash",bash:"bash",zsh:"bash",yaml:"yaml",yml:"yaml",json:"json",toml:"toml",html:"html",htm:"html",xml:"xml",svg:"xml",css:"css",scss:"scss",less:"less",sql:"sql",graphql:"graphql",gql:"graphql",dockerfile:"docker",makefile:"makefile",r:"r",lua:"lua",dart:"dart",zig:"zig"};
9
+ /**
10
+ * @license lucide-react v0.309.0 - ISC
11
+ *
12
+ * This source code is licensed under the ISC license.
13
+ * See the LICENSE file in the root directory of this source tree.
14
+ */const Ws=new Set(["png","jpg","jpeg","gif","webp","svg","bmp","ico","avif","tiff","tif"]);function Fs(e){return"md"===e?"Markdown":"html"===e||"htm"===e?"HTML":"高亮"}const Ks=[50,75,100,125,150,200,250,300],Vs=100;function Us({filePath:e,onClose:t,onMinimize:s}){const i=a(),r=e.endsWith("/.notebook/graph.yaml"),n=r?e.replace(/\/.notebook\/graph\.yaml$/,""):"",[o,k]=l.useState(null),[N,j]=l.useState(null),[M,D]=l.useState(()=>r?"graph":"rendered"),[R,P]=l.useState(!1),[L,T]=l.useState(Vs),[I,B]=l.useState(""),[O,A]=l.useState(!1),[z,$]=l.useState(!1),H=l.useRef(null),[W,F]=l.useState(!0),{resolved:K}=c(),V=e.split("/").pop()??e,U=l.useMemo(()=>function(e){const t=e.split("/").pop()??"",s=t.toLowerCase();if("dockerfile"===s)return"dockerfile";if("makefile"===s)return"makefile";const i=t.lastIndexOf(".");return i>=0?t.slice(i+1).toLowerCase():""}(e),[e]),q=Ws.has(U),Y=zs.has(U),X=$s.has(U),G=function(e){return"md"===e||"html"===e||"htm"===e||e in Hs}(U),Z=Hs[U]||U,J=l.useMemo(()=>{if(!q)return"";const t=w(e),s=h(),i=`${t}&t=${Date.now()}`;return s?`${i}&token=${encodeURIComponent(s)}`:i},[e,q]);l.useEffect(()=>{if(F(!0),k(null),j(null),T(function(e){const t=S(C.fileZoom,{},!0)[e];return Ks.includes(t)?t:Vs}(e)),$(!1),q||Y||X)return k({path:e,binary:!1,tooLarge:!1,size:0,content:null}),void D("rendered");D(e.endsWith("/.notebook/graph.yaml")?"graph":"rendered"),d(e).then(e=>{k(e),B(e.content??"")}).catch(e=>j(e instanceof Error?e.message:"Failed to load file"))},[e,q,Y,X]);const Q=l.useCallback(async()=>{A(!0);try{await u(e,I),k(e=>e?{...e,content:I,size:new Blob([I]).size}:e),$(!1)}catch(t){f.error(t instanceof Error?t.message:"保存失败")}finally{A(!1)}},[e,I]);l.useEffect(()=>{const e=e=>{(e.metaKey||e.ctrlKey)&&"s"===e.key&&"edit"===M&&(e.preventDefault(),Q())};return window.addEventListener("keydown",e),()=>window.removeEventListener("keydown",e)},[M,Q]),l.useEffect(()=>{const e=async e=>{if("Escape"===e.key&&W){if(z){if(!(await i({description:"有未保存的修改,确定关闭?",confirmLabel:"放弃修改",destructive:!0})))return}t()}};return window.addEventListener("keydown",e),()=>window.removeEventListener("keydown",e)},[W,t,z,i]);const ee=async()=>{if(z){if(!(await i({description:"有未保存的修改,确定退出编辑?",confirmLabel:"放弃修改",destructive:!0})))return}D(r?"graph":G?"rendered":"plain"),$(!1)},te=t=>{T(t),function(e,t){const s=S(C.fileZoom,{},!0);t===Vs?delete s[e]:s[e]=t,E(C.fileZoom,s,!0)}(e,t)},se=(null==o?void 0:o.content)??"",ie="dark"===K?Dt:Rt,re=L/100*12,ne=o&&!o.binary&&!o.tooLarge&&!X,oe=l.useDeferredValue(I),ae=l.useMemo(()=>{var e,t;if(!o||o.binary||o.tooLarge)return null;if(q||Y||X)return null;const s="edit"===M?oe:se;if(null==s)return null;return{bytes:new Blob([s]).size,words:((null==(e=s.match(/[\u4e00-\u9fff\u3400-\u4dbf]/g))?void 0:e.length)??0)+((null==(t=s.replace(/[\u4e00-\u9fff\u3400-\u4dbf]/g," ").match(/[a-zA-Z0-9]+/g))?void 0:t.length)??0),lines:""===s?0:s.split("\n").length}},[o,q,Y,M,oe,se]);return p.jsx("div",{className:m("fixed inset-0 z-50 flex items-center justify-center transition-all duration-200",W?"bg-black/60 backdrop-blur-sm pointer-events-auto":"bg-transparent pointer-events-none"),onClick:e=>{e.target===e.currentTarget&&F(!1)},children:p.jsxs("div",{className:m("relative flex flex-col bg-background border border-border shadow-sm transition-all duration-200 pointer-events-auto",R?"w-screen h-screen rounded-none":"w-[72vw] max-w-4xl h-[80vh] rounded-xl",!W&&!R&&"opacity-50"),onClick:()=>F(!0),onFocus:e=>{e.stopPropagation(),F(!0)},children:[p.jsxs("div",{className:"flex items-center gap-2 px-4 h-10 border-b border-border flex-shrink-0",children:[p.jsx(St,{className:"h-3.5 w-3.5 text-muted-foreground flex-shrink-0"}),p.jsxs("span",{className:"flex-1 text-sm text-foreground font-medium truncate",title:e,children:[V,z&&p.jsx("span",{className:"text-muted-foreground ml-1",children:"*"}),ae&&p.jsxs("span",{className:"text-muted-foreground font-normal ml-2 text-xs tabular-nums",children:[(le=ae.bytes,le<1024?`${le} B`:le<1048576?`${(le/1024).toFixed(1)} KB`:`${(le/1024/1024).toFixed(2)} MB`)," · ",ae.words.toLocaleString()," 词 · ",ae.lines.toLocaleString()," 行"]})]}),ne&&!q&&!Y&&p.jsxs("div",{className:"flex items-center rounded-md border border-border bg-muted/50 p-0.5",children:[G&&p.jsxs(p.Fragment,{children:[p.jsxs("button",{onClick:()=>"edit"===M?ee():D("plain"),className:m("p-1 rounded-md transition-colors flex items-center gap-1 text-xs","plain"===M?"bg-background text-foreground shadow-sm":"text-muted-foreground hover:text-foreground"),title:"纯文本",children:[p.jsx(ps,{className:"h-3 w-3"}),p.jsx("span",{className:"hidden sm:inline",children:"源码"})]}),p.jsxs("button",{onClick:()=>"edit"===M?ee():D("rendered"),className:m("p-1 rounded-md transition-colors flex items-center gap-1 text-xs","rendered"===M?"bg-background text-foreground shadow-sm":"text-muted-foreground hover:text-foreground"),title:Fs(U),children:[p.jsx(g,{className:"h-3 w-3"}),p.jsx("span",{className:"hidden sm:inline",children:Fs(U)})]})]}),r&&p.jsxs("button",{onClick:()=>"edit"===M?ee():D("graph"),className:m("p-1 rounded-md transition-colors flex items-center gap-1 text-xs","graph"===M?"bg-background text-foreground shadow-sm":"text-muted-foreground hover:text-foreground"),title:"图谱",children:[p.jsx(Cs,{className:"h-3 w-3"}),p.jsx("span",{className:"hidden sm:inline",children:"图谱"})]}),p.jsxs("button",{onClick:()=>"edit"===M?ee():(B((null==o?void 0:o.content)??""),$(!1),D("edit"),void setTimeout(()=>{var e;return null==(e=H.current)?void 0:e.focus()},0)),className:m("p-1 rounded-md transition-colors flex items-center gap-1 text-xs","edit"===M?"bg-background text-foreground shadow-sm":"text-muted-foreground hover:text-foreground"),title:"编辑",children:[p.jsx(_,{className:"h-3 w-3"}),p.jsx("span",{className:"hidden sm:inline",children:"编辑"})]})]}),"edit"===M&&p.jsxs("button",{onClick:()=>{Q()},disabled:O||!z,className:m("flex items-center gap-1 text-xs px-2 py-1 rounded transition-colors",z?"bg-blue-600 hover:bg-blue-500 text-white":"bg-muted text-muted-foreground"),title:"保存 (⌘S)",children:[p.jsx(Ot,{className:"h-3 w-3"}),O?"保存中...":"保存"]}),(ne||q||X)&&"edit"!==M&&"graph"!==M&&p.jsxs("div",{className:"flex items-center rounded-md border border-border bg-muted/50 p-0.5 gap-0.5",children:[p.jsx("button",{onClick:()=>{const e=[...Ks].reverse().find(e=>e<L);e&&te(e)},disabled:L<=Ks[0],className:"p-1 rounded-md text-muted-foreground hover:text-foreground transition-colors disabled:opacity-30",title:"缩小",children:p.jsx(Is,{className:"h-3 w-3"})}),p.jsxs("button",{onClick:()=>te(Vs),className:"px-1 text-xs text-muted-foreground hover:text-foreground transition-colors min-w-[36px] text-center",title:"重置缩放",children:[L,"%"]}),p.jsx("button",{onClick:()=>{const e=Ks.find(e=>e>L);e&&te(e)},disabled:L>=Ks[Ks.length-1],className:"p-1 rounded-md text-muted-foreground hover:text-foreground transition-colors disabled:opacity-30",title:"放大",children:p.jsx(Ts,{className:"h-3 w-3"})})]}),s&&p.jsx("button",{className:"p-1 rounded text-muted-foreground hover:text-foreground transition-colors",onClick:s,title:"最小化到 dock",children:p.jsx(v,{className:"h-3.5 w-3.5"})}),p.jsx("button",{className:"p-1 rounded text-muted-foreground hover:text-foreground transition-colors",onClick:()=>P(e=>!e),title:R?"退出全屏":"全屏",children:R?p.jsx(x,{className:"h-3.5 w-3.5"}):p.jsx(y,{className:"h-3.5 w-3.5"})}),p.jsx("button",{className:"p-0.5 rounded text-muted-foreground hover:text-foreground transition-colors",onClick:async()=>{if(z){if(!(await i({description:"有未保存的修改,确定关闭?",confirmLabel:"放弃修改",destructive:!0})))return}t()},children:p.jsx(b,{className:"h-4 w-4"})})]}),p.jsxs("div",{className:m("flex-1 min-h-0","graph"===M?"overflow-hidden":"overflow-auto"),children:["graph"===M&&p.jsx(l.Suspense,{fallback:p.jsx("p",{className:"text-sm text-muted-foreground p-4",children:"Loading…"}),children:p.jsx(Bs,{folderPath:n})}),"graph"!==M&&!o&&!N&&p.jsx("p",{className:"text-sm text-muted-foreground p-4",children:"Loading…"}),"graph"!==M&&N&&p.jsx("p",{className:"text-sm text-red-400 p-4",children:N}),"graph"!==M&&q&&o&&p.jsx("div",{className:"flex items-center justify-center p-4 h-full",children:p.jsx("img",{src:J,alt:V,className:"max-w-full max-h-full object-contain rounded-md",style:{transform:`scale(${L/100})`,transformOrigin:"center center"},draggable:!1})}),"graph"!==M&&Y&&o&&p.jsx(l.Suspense,{fallback:p.jsx("p",{className:"text-sm text-muted-foreground p-4",children:"Loading…"}),children:p.jsx(Os,{filePath:e,ext:U,zoom:L})}),"graph"!==M&&X&&o&&p.jsx(l.Suspense,{fallback:p.jsx("p",{className:"text-sm text-muted-foreground p-4",children:"Loading…"}),children:p.jsx(As,{filePath:e,zoom:L})}),"graph"!==M&&!q&&!Y&&!X&&o&&o.binary&&p.jsxs("div",{className:"flex flex-col items-center gap-2 py-12 text-muted-foreground p-4",children:[p.jsx(St,{className:"h-8 w-8"}),p.jsx("p",{className:"text-sm",children:"Binary file — cannot preview"}),p.jsxs("p",{className:"text-xs text-muted-foreground",children:[(o.size/1024).toFixed(1)," KB"]})]}),"graph"!==M&&!Y&&o&&o.tooLarge&&p.jsxs("div",{className:"flex flex-col items-center gap-2 py-12 text-muted-foreground p-4",children:[p.jsx(St,{className:"h-8 w-8"}),p.jsx("p",{className:"text-sm",children:"File too large to preview"}),p.jsxs("p",{className:"text-xs text-muted-foreground",children:[(o.size/1024/1024).toFixed(2)," MB (limit 5 MB)"]})]}),"graph"!==M&&ne&&null!==se&&p.jsxs(p.Fragment,{children:["edit"===M&&p.jsx("textarea",{ref:H,value:I,onChange:e=>{B(e.target.value),$(!0)},className:"w-full h-full bg-transparent text-foreground font-mono outline-none resize-none p-4 leading-relaxed",style:{fontSize:`${re}px`,minHeight:"100%"},spellCheck:!1}),"edit"!==M&&p.jsxs("div",{className:"p-4",style:{fontSize:`${re}px`},children:["plain"===M&&p.jsx("pre",{className:"font-mono text-foreground whitespace-pre-wrap break-words leading-relaxed",style:{fontSize:"inherit"},children:se}),"rendered"===M&&"md"===U&&p.jsx("div",{className:"prose dark:prose-invert max-w-none prose-pre:bg-muted prose-pre:border prose-pre:border-border prose-code:text-foreground",style:{fontSize:"inherit"},children:p.jsx(Ct,{remarkPlugins:[Nt,Et],rehypePlugins:[kt],urlTransform:(e,t,s)=>"src"===t&&"img"===s.tagName?e:Pt(e),components:{code({className:e,children:t,...s}){const i=/language-(\w+)/.exec(e||"");return!i&&!e?p.jsx("code",{className:e,...s,children:t}):p.jsx(Mt,{style:ie,language:(null==i?void 0:i[1])||"text",PreTag:"div",customStyle:{fontSize:"inherit",borderRadius:"6px",margin:0},children:String(t).replace(/\n$/,"")})},img:({src:t,alt:s,...i})=>p.jsx("img",{...i,src:jt(e,t,h()),alt:s??"",loading:"lazy",style:{maxWidth:"100%",height:"auto"}})},children:se})}),"rendered"===M&&("html"===U||"htm"===U)&&p.jsx("iframe",{srcDoc:wt.sanitize(se,{WHOLE_DOCUMENT:!0,ADD_TAGS:["style","link"]}),className:"w-full h-full border-0 rounded bg-white",sandbox:"",title:V,style:{minHeight:"60vh",transform:`scale(${L/100})`,transformOrigin:"top left",width:1e4/L+"%",height:1e4/L+"%"}}),"rendered"===M&&"md"!==U&&"html"!==U&&"htm"!==U&&Z&&p.jsx(Mt,{style:ie,language:Z,showLineNumbers:!0,lineNumberStyle:{color:"dark"===K?"#555":"#aaa",fontSize:"inherit"},customStyle:{fontSize:"inherit",borderRadius:"6px",margin:0,background:"transparent"},children:se}),"rendered"===M&&!G&&p.jsx("pre",{className:"font-mono text-foreground whitespace-pre-wrap break-words leading-relaxed",style:{fontSize:"inherit"},children:se})]})]})]})]})});var le}async function qs(e){var t;if("undefined"!=typeof navigator&&(null==(t=navigator.clipboard)?void 0:t.writeText))try{return await navigator.clipboard.writeText(e),!0}catch{}try{const t=document.createElement("textarea");t.value=e,t.style.position="fixed",t.style.left="-9999px",t.style.top="0",t.setAttribute("readonly",""),document.body.appendChild(t),t.select(),t.setSelectionRange(0,e.length);const s=document.execCommand("copy");return document.body.removeChild(t),s}catch{return!1}}const Ys=new Set(["png","jpg","jpeg","gif","webp","svg","bmp","ico","avif","tiff","tif"]);function Xs(e){const t=e.lastIndexOf(".");return t>=0&&Ys.has(e.slice(t+1).toLowerCase())}function Gs({projectPath:e,projectId:t}){var s;const[i,r]=l.useState(new Map),[n,o]=l.useState(new Set([e])),[c,d]=l.useState(new Set),u=j(e=>e.get(t).activePreviewPath),g=j(e=>e.get(t).filePreviews),_=j(e=>e.openFilePreview),v=j(e=>e.closeFilePreview),x=j(e=>e.minimizeFilePreview),y=!!(null==(s=g.find(e=>e.path===u))?void 0:s.minimized),[b,S]=l.useState(null),[C,k]=l.useState(!1),[N,E]=l.useState(null),[$,H]=l.useState(!1),W=a(),F=l.useRef(null),K=l.useRef(null),V=l.useRef(null),U=function(e={}){const t=e.duration??500,s=e.moveTolerance??10,i=l.useRef(null),r=l.useRef(null),n=l.useRef(!1),o=l.useCallback(()=>{i.current&&(clearTimeout(i.current),i.current=null),r.current=null},[]);return{bind:l.useCallback(e=>({onTouchStart:s=>{if(1!==s.touches.length)return;const o=s.touches[0];r.current={x:o.clientX,y:o.clientY},n.current=!1,i.current&&clearTimeout(i.current),i.current=setTimeout(()=>{if(n.current=!0,"undefined"!=typeof navigator&&"vibrate"in navigator)try{navigator.vibrate(15)}catch{}e(o.clientX,o.clientY)},t)},onTouchMove:e=>{if(!r.current||!i.current)return;const t=e.touches[0],n=t.clientX-r.current.x,a=t.clientY-r.current.y;Math.hypot(n,a)>s&&o()},onTouchEnd:o,onTouchCancel:o}),[t,s,o]),wasTriggered:n}}();l.useEffect(()=>{if(!b)return;const e=()=>S(null);return window.addEventListener("click",e),window.addEventListener("scroll",e,!0),()=>{window.removeEventListener("click",e),window.removeEventListener("scroll",e,!0)}},[b]);const q=async(t,s)=>{var i;if(0===t.length)return;const r=s??e,n=t.reduce((e,t)=>e+t.size,0);k(!0),E({loaded:0,total:n});try{const s=await I(r,t,(e,t)=>{E({loaded:e,total:t})});r!==e&&o(e=>new Set(e).add(r)),X(r);const n=s.uploaded.length,a=(null==(i=s.skipped)?void 0:i.length)??0,l=s.errors.length;l>0?f.error(`上传完成:${n} 成功,${l} 失败${a?`,${a} 跳过`:""}`):a>0?f.info(`已上传 ${n} 个文件,${a} 个同名文件被跳过`):f.success(`已上传 ${n} 个文件`)}catch(a){console.error("[FileTree] Upload failed:",a),f.error(`上传失败: ${a.message}`)}finally{k(!1),E(null)}},Y=e=>e>=1073741824?(e/1073741824).toFixed(2)+" GB":e>=1048576?(e/1048576).toFixed(1)+" MB":e>=1024?(e/1024).toFixed(0)+" KB":e+" B",X=l.useCallback(async e=>{d(t=>{if(t.has(e))return t;const s=new Set(t);return s.add(e),s});try{const t=await M(e);r(s=>new Map(s).set(e,t.entries))}catch(t){console.error("[FileTree] Failed to load:",e,t),r(t=>new Map(t).set(e,[]))}finally{d(t=>{const s=new Set(t);return s.delete(e),s})}},[]);l.useEffect(()=>{r(new Map),o(new Set([e])),d(new Set),X(e)},[e,X]);const G=l.useCallback(e=>{o(t=>{const s=new Set(t);return s.has(e)?s.delete(e):(s.add(e),i.has(e)||X(e)),s})},[i,X]),Z=l.useCallback(()=>{r(new Map),o(new Set([e])),d(new Set),X(e)},[e,X]),J=(e,s)=>e.map(e=>{const r=n.has(e.path),o=c.has(e.path),a=i.get(e.path),l=e.name.startsWith(".");return p.jsxs("div",{children:[p.jsxs("div",{className:m("flex items-center gap-1 py-[3px] rounded cursor-pointer","hover:bg-muted-foreground/10",l&&"opacity-50"),style:{paddingLeft:14*s+6+"px",paddingRight:"6px",WebkitTouchCallout:"none"},onClick:s=>{if(U.wasTriggered.current)return U.wasTriggered.current=!1,void s.stopPropagation();"dir"===e.type?G(e.path):_(t,e.path)},onContextMenu:t=>{t.preventDefault(),S({x:t.clientX,y:t.clientY,filePath:e.path,fileName:e.name,type:e.type})},...U.bind((t,s)=>{S({x:t,y:s,filePath:e.path,fileName:e.name,type:e.type})}),children:[p.jsx("span",{className:"w-3 flex-shrink-0 text-muted-foreground",children:"dir"===e.type&&(o?p.jsx(P,{className:"h-2.5 w-2.5 animate-spin"}):r?p.jsx(rs,{className:"h-2.5 w-2.5"}):p.jsx(B,{className:"h-2.5 w-2.5"}))}),"dir"===e.type?r?p.jsx(L,{className:"h-3.5 w-3.5 text-blue-400 flex-shrink-0"}):p.jsx(O,{className:"h-3.5 w-3.5 text-blue-400 flex-shrink-0"}):Xs(e.name)?p.jsx(Lt,{className:"h-3.5 w-3.5 text-green-400 flex-shrink-0"}):p.jsx(St,{className:"h-3.5 w-3.5 text-muted-foreground flex-shrink-0"}),p.jsx("span",{className:m("text-xs truncate leading-none","dir"===e.type?"text-foreground":"text-muted-foreground"),title:e.path,children:e.name})]}),p.jsx(A,{initial:!1,children:"dir"===e.type&&r&&p.jsxs(z.div,{initial:{height:0,opacity:0},animate:{height:"auto",opacity:1},exit:{height:0,opacity:0},transition:{duration:.15,ease:"easeInOut"},className:"overflow-hidden",children:[!a&&!o&&p.jsx("div",{className:"text-xs text-muted-foreground/50 py-0.5",style:{paddingLeft:14*(s+1)+6+16+"px"},children:"—"}),0===(null==a?void 0:a.length)&&p.jsx("div",{className:"text-xs text-muted-foreground/50 py-0.5",style:{paddingLeft:14*(s+1)+6+16+"px"},children:"empty"}),a&&a.length>0&&J(a,s+1)]})})]},e.path)}),Q=i.get(e),ee=c.has(e),te=e.split("/").filter(Boolean).pop()??e;return p.jsxs(p.Fragment,{children:[u&&!y&&p.jsx(Us,{filePath:u,onClose:()=>v(t,u),onMinimize:()=>x(t,u)},u),b&&p.jsxs("div",{ref:F,className:"fixed z-50 min-w-[140px] bg-popover border border-border rounded-md shadow-md py-1",style:{left:b.x,top:b.y},onClick:e=>e.stopPropagation(),children:[p.jsxs("button",{className:"flex items-center gap-2 w-full px-3 py-1.5 text-xs hover:bg-accent hover:text-accent-foreground text-left",onClick:()=>{qs(b.filePath.startsWith(e+"/")?b.filePath.slice(e.length+1):b.filePath).then(e=>{e?f.success("已复制相对路径"):f.error("复制失败")}),S(null)},children:[p.jsx(ms,{className:"h-3.5 w-3.5"}),"复制相对路径"]}),p.jsxs("button",{className:"flex items-center gap-2 w-full px-3 py-1.5 text-xs hover:bg-accent hover:text-accent-foreground text-left",onClick:()=>{qs(b.filePath).then(e=>{e?f.success("已复制绝对路径"):f.error("复制失败")}),S(null)},children:[p.jsx(fs,{className:"h-3.5 w-3.5"}),"复制绝对路径"]}),"file"===b.type&&p.jsxs(p.Fragment,{children:[p.jsx("div",{className:"my-1 border-t border-border"}),p.jsxs("button",{className:"flex items-center gap-2 w-full px-3 py-1.5 text-xs hover:bg-accent hover:text-accent-foreground text-left",onClick:()=>{(async(e,t)=>{let s=w(e);const i=h();i&&(s+=`${s.includes("?")?"&":"?"}token=${encodeURIComponent(i)}`);const r=`${s}${s.includes("?")?"&":"?"}dl=1`;try{const e=await fetch(r,{method:"HEAD"});if(!e.ok)return void f.error(`下载失败 (${e.status})`)}catch{return void f.error("下载失败:网络错误")}const n=document.createElement("a");n.href=r,n.download=t,document.body.appendChild(n),n.click(),document.body.removeChild(n)})(b.filePath,b.fileName),S(null)},children:[p.jsx(D,{className:"h-3.5 w-3.5"}),"下载"]})]}),"dir"===b.type&&p.jsxs(p.Fragment,{children:[p.jsx("div",{className:"my-1 border-t border-border"}),p.jsxs("button",{className:"flex items-center gap-2 w-full px-3 py-1.5 text-xs hover:bg-accent hover:text-accent-foreground text-left",disabled:C,onClick:()=>{var e;V.current=b.filePath,S(null),null==(e=K.current)||e.click()},children:[p.jsx(At,{className:"h-3.5 w-3.5"}),"上传文件到此文件夹"]})]}),p.jsx("div",{className:"my-1 border-t border-border"}),p.jsxs("button",{className:"flex items-center gap-2 w-full px-3 py-1.5 text-xs hover:bg-destructive/80 hover:text-destructive-foreground text-left",onClick:()=>{(async(t,s,r)=>{const n="dir"===r?`文件夹 "${s}" 及其所有内容`:`文件 "${s}"`;if(await W({title:"确认删除",description:`确认删除${n}?此操作不可撤销。`,destructive:!0,confirmLabel:"删除"}))try{await T(t),f.success(`已删除: ${s}`);const r=t.substring(0,t.lastIndexOf("/"));r&&i.has(r)?X(r):X(e)}catch(o){f.error(`删除失败: ${o.message}`)}})(b.filePath,b.fileName,b.type),S(null)},children:[p.jsx(R,{className:"h-3.5 w-3.5"}),"删除"]})]}),p.jsxs("div",{className:"h-full flex flex-col text-foreground select-none",children:[p.jsxs("div",{className:"flex items-center justify-between px-3 h-9 border-b border-border flex-shrink-0",children:[p.jsx("span",{className:"text-xs font-medium text-muted-foreground uppercase tracking-wider",children:"Files"}),p.jsxs("div",{className:"flex items-center gap-0.5",children:[p.jsx("input",{ref:K,type:"file",multiple:!0,className:"hidden",onChange:e=>{const t=Array.from(e.target.files??[]),s=V.current;V.current=null,t.length>0&&q(t,s??void 0),e.target.value=""}}),p.jsx("button",{className:"text-muted-foreground hover:text-foreground p-0.5 rounded transition-colors",onClick:()=>{var e;V.current=null,null==(e=K.current)||e.click()},disabled:C,title:"上传文件",children:p.jsx(At,{className:m("h-3 w-3",C&&"animate-pulse")})}),p.jsx("button",{className:"text-muted-foreground hover:text-foreground p-0.5 rounded transition-colors",onClick:Z,title:"Refresh file tree",children:p.jsx(P,{className:m("h-3 w-3",ee&&"animate-spin")})})]})]}),p.jsxs("div",{className:"flex items-center gap-1.5 px-3 py-2 border-b border-border flex-shrink-0",children:[p.jsx(L,{className:"h-3.5 w-3.5 text-blue-400 flex-shrink-0"}),p.jsx("span",{className:"text-xs text-foreground font-medium truncate",title:e,children:te})]}),p.jsxs("div",{className:m("flex-1 overflow-y-auto py-1 min-h-0 transition-colors",$&&"bg-accent/30 ring-1 ring-inset ring-accent"),onDragOver:e=>{e.preventDefault(),H(!0)},onDragEnter:e=>{e.preventDefault(),H(!0)},onDragLeave:()=>H(!1),onDrop:e=>{e.preventDefault(),H(!1);const t=Array.from(e.dataTransfer.files);t.length>0&&q(t)},children:[C&&N&&p.jsxs("div",{className:"px-3 py-2 border-b border-border space-y-1",children:[p.jsxs("div",{className:"flex items-center justify-between text-[10px] text-muted-foreground",children:[p.jsxs("span",{children:["上传中 ",Math.floor(N.loaded/Math.max(N.total,1)*100),"%"]}),p.jsxs("span",{className:"font-mono",children:[Y(N.loaded)," / ",Y(N.total)]})]}),p.jsx("div",{className:"h-1 bg-muted rounded-full overflow-hidden",children:p.jsx("div",{className:"h-full bg-primary transition-[width] duration-150",style:{width:N.loaded/Math.max(N.total,1)*100+"%"}})})]}),$&&!C&&p.jsx("div",{className:"text-xs text-muted-foreground px-4 py-1",children:"松开以上传文件"}),ee&&!Q?p.jsx("div",{className:"text-xs text-muted-foreground px-4 py-3",children:"Loading…"}):Q&&0!==Q.length?J(Q,0):p.jsx("div",{className:"text-xs text-muted-foreground px-4 py-3",children:"Empty folder"})]})]})]})}function Zs(e){const t=new Date(e),s=Date.now()-t.getTime();return s<36e5?`${Math.floor(s/6e4)}分钟前`:s<864e5?`${Math.floor(s/36e5)}小时前`:s<6048e5?`${Math.floor(s/864e5)}天前`:t.toLocaleDateString()}function Js({projectId:e}){const[t,s]=l.useState(null),[i,r]=l.useState(!0),[n,o]=l.useState(null),[a,c]=l.useState(null),[h,d]=l.useState(""),[u,g]=l.useState(!1),[_,v]=l.useState([]),[x,y]=l.useState(0),[b,w]=l.useState(!0),[S,C]=l.useState(!1),k=l.useCallback(async()=>{r(!0);try{s(await $(e))}catch{s(null)}finally{r(!1)}},[e]),N=l.useCallback(async(t=!1)=>{C(!0);try{const s=t?_.length:0,i=await H(e,30,s);v(e=>t?[...e,...i.commits]:i.commits),y(i.total)}catch{}finally{C(!1)}},[e,_.length]);l.useEffect(()=>{k(),N()},[e]);const E=async t=>{try{const{diff:s}=await U(e,t);o(s||"(no diff)"),c(t??"all changes")}catch{f.error("获取 diff 失败")}},j=async t=>{try{await q(e,[t]),f.success(`已暂存 ${t}`),await k()}catch{f.error("git add 失败")}},M=async()=>{if(h.trim()){g(!0);try{await Y(e,h),f.success("提交成功"),d(""),await k()}catch(t){f.error(t instanceof Error?t.message:"提交失败")}finally{g(!1)}}};if(!t&&i)return p.jsxs("div",{className:"flex flex-col items-center gap-2 py-8 text-muted-foreground/50 text-xs",children:[p.jsx(vs,{className:"h-5 w-5"}),p.jsx("p",{children:"加载中…"})]});if(!t||!t.isRepo)return p.jsxs("div",{className:"flex flex-col items-center gap-2 py-8 text-muted-foreground/50 text-xs",children:[p.jsx(vs,{className:"h-5 w-5"}),p.jsx("p",{children:t?"非 Git 仓库":"加载失败"}),p.jsx(W,{variant:"ghost",size:"sm",className:"h-6 text-xs",onClick:()=>{k()},children:"重试"})]});const D=[...t.modified??[],...t.deleted??[]],R=t.staged??[],L=t.untracked??[];return p.jsxs("div",{className:"flex flex-col h-full overflow-y-auto p-2 space-y-2 text-xs",children:[p.jsxs("div",{className:"flex items-center justify-between",children:[p.jsxs("div",{className:"flex items-center gap-1 text-muted-foreground font-medium",children:[p.jsx(vs,{className:"h-3 w-3"}),p.jsx("span",{children:t.branch}),(t.ahead??0)>0&&p.jsxs("span",{className:"text-blue-400",children:["↑",t.ahead]}),(t.behind??0)>0&&p.jsxs("span",{className:"text-yellow-400",children:["↓",t.behind]})]}),p.jsx(W,{variant:"ghost",size:"icon",className:"h-5 w-5",onClick:()=>{k()},disabled:i,children:p.jsx(P,{className:m("h-3 w-3",i&&"animate-spin")})})]}),R.length>0&&p.jsxs("div",{children:[p.jsxs("div",{className:"text-muted-foreground mb-1 font-medium",children:["已暂存 (",R.length,")"]}),R.map(e=>p.jsxs("div",{className:"flex items-center gap-1 py-0.5 px-1 rounded hover:bg-muted-foreground/10",children:[p.jsx(F,{className:"h-2.5 w-2.5 text-green-500 flex-shrink-0"}),p.jsx("button",{className:"flex-1 text-left truncate text-green-400",onClick:()=>{E(e)},children:e})]},e))]}),D.length>0&&p.jsxs("div",{children:[p.jsxs("div",{className:"text-muted-foreground mb-1 font-medium",children:["未暂存 (",D.length,")"]}),D.map(e=>p.jsxs("div",{className:"flex items-center gap-1 py-0.5 px-1 rounded hover:bg-muted-foreground/10",children:[p.jsx("button",{className:"flex-shrink-0 h-4 w-4 flex items-center justify-center rounded hover:bg-green-500/20 text-muted-foreground hover:text-green-400",title:"git add",onClick:()=>{j(e)},children:p.jsx(K,{className:"h-2.5 w-2.5"})}),p.jsx("button",{className:"flex-1 text-left truncate text-yellow-400",onClick:()=>{E(e)},children:e})]},e))]}),L.length>0&&p.jsxs("div",{children:[p.jsxs("div",{className:"text-muted-foreground mb-1 font-medium",children:["未跟踪 (",L.length,")"]}),L.map(e=>p.jsxs("div",{className:"flex items-center gap-1 py-0.5 px-1 rounded hover:bg-muted-foreground/10",children:[p.jsx("button",{className:"flex-shrink-0 h-4 w-4 flex items-center justify-center rounded hover:bg-green-500/20 text-muted-foreground hover:text-green-400",title:"git add",onClick:()=>{j(e)},children:p.jsx(K,{className:"h-2.5 w-2.5"})}),p.jsx("span",{className:"flex-1 truncate text-muted-foreground",children:e})]},e))]}),0===D.length&&0===R.length&&0===L.length&&p.jsx("p",{className:"text-muted-foreground/50 text-center py-4",children:"工作区干净"}),R.length>0&&p.jsxs("div",{className:"space-y-1.5 pt-1 border-t border-border",children:[p.jsx(V,{placeholder:"提交消息…",value:h,onChange:e=>d(e.target.value),onKeyDown:e=>{"Enter"!==e.key||e.shiftKey||M()},className:"h-7 text-xs"}),p.jsx(W,{size:"sm",className:"w-full h-7 text-xs",onClick:()=>{M()},disabled:!h.trim()||u,children:u?"提交中…":`提交 (${R.length} 文件)`})]}),(null==t?void 0:t.isRepo)&&p.jsxs("div",{className:"border-t border-border pt-2",children:[p.jsxs("button",{className:"flex items-center gap-1 text-muted-foreground font-medium mb-1 w-full text-left",onClick:()=>w(e=>!e),children:[p.jsx(rs,{className:m("h-3 w-3 transition-transform",!b&&"-rotate-90")}),p.jsx(xs,{className:"h-3 w-3"}),p.jsxs("span",{children:["提交历史 (",x,")"]})]}),b&&p.jsxs("div",{className:"space-y-0.5",children:[_.map((e,t)=>{const s=e.parents.length>1;return p.jsxs("div",{className:"flex gap-1.5 items-start group",children:[p.jsxs("div",{className:"flex flex-col items-center flex-shrink-0 w-3",children:[p.jsx("div",{className:m("w-2 h-2 rounded-full flex-shrink-0 mt-1",0===t?"bg-blue-400":s?"bg-purple-400":"bg-muted-foreground/40")}),t<_.length-1&&p.jsx("div",{className:"w-px flex-1 bg-border min-h-[12px]"})]}),p.jsxs("div",{className:"flex-1 min-w-0 pb-1",children:[p.jsxs("div",{className:"flex items-baseline gap-1",children:[p.jsx("span",{className:"font-mono text-muted-foreground/60 text-[10px] flex-shrink-0",children:e.hashShort}),p.jsx("span",{className:"truncate leading-tight",children:e.message.split("\n")[0]})]}),p.jsxs("div",{className:"flex items-center gap-1.5 text-[10px] text-muted-foreground/50 mt-0.5",children:[p.jsx("span",{children:e.author}),p.jsx("span",{children:Zs(e.date)}),e.branches.length>0&&e.branches.slice(0,2).map(e=>p.jsx("span",{className:"px-1 py-px rounded bg-blue-500/10 text-blue-400 text-[9px]",children:e.replace("remotes/origin/","↑")},e))]})]})]},e.hash)}),_.length<x&&p.jsx("button",{className:"w-full text-center text-[10px] text-muted-foreground hover:text-foreground py-1",onClick:()=>{N(!0)},disabled:S,children:S?"加载中...":`加载更多 (${_.length}/${x})`})]})]}),null!==n&&p.jsxs("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:()=>o(null),children:[p.jsx("div",{className:"absolute inset-0 bg-black/60 backdrop-blur-sm"}),p.jsxs("div",{className:"relative z-10 w-[700px] max-w-[95vw] max-h-[80vh] flex flex-col bg-background border border-border rounded-xl shadow-sm",onClick:e=>e.stopPropagation(),children:[p.jsxs("div",{className:"flex items-center justify-between px-4 h-10 border-b border-border text-sm font-medium flex-shrink-0",children:[p.jsx("span",{className:"truncate text-muted-foreground",children:a}),p.jsx("button",{className:"text-muted-foreground hover:text-foreground",onClick:()=>o(null),children:"✕"})]}),p.jsx("pre",{className:"flex-1 overflow-auto p-3 text-[11px] font-mono whitespace-pre leading-relaxed",children:n.split("\n").map((e,t)=>p.jsx("span",{className:m("block",e.startsWith("+")&&!e.startsWith("+++")&&"text-green-400 bg-green-400/5",e.startsWith("-")&&!e.startsWith("---")&&"text-red-400 bg-red-400/5",e.startsWith("@@")&&"text-blue-400"),children:e},t))})]})]})]})}function Qs(e){if(!e)return"-";const t=e-Date.now(),s=Math.abs(t),i=t<0,r=Math.round(s/1e3);if(r<60)return i?`${r} 秒前`:`${r} 秒后`;const n=Math.round(r/60);if(n<60)return i?`${n} 分钟前`:`${n} 分钟后`;const o=Math.round(n/60);if(o<24)return i?`${o} 小时前`:`${o} 小时后`;const a=Math.round(o/24);return i?`${a} 天前`:`${a} 天后`}function ei(e){if(!e)return"";return new Date(e).toLocaleString(void 0,{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})}function ti({projectId:e}){const[t,s]=l.useState(null),[i,r]=l.useState(!0),[n,o]=l.useState(null),[,a]=l.useState(0),c=l.useRef(!0),h=l.useRef(0),d=l.useCallback(async()=>{const t=++h.current;r(!0),o(null);try{const{tasks:i}=await X(e);if(!c.current||t!==h.current)return;s(i)}catch(R_){if(!c.current||t!==h.current)return;o(R_.message),s([])}finally{c.current&&t===h.current&&r(!1)}},[e]);return l.useEffect(()=>{c.current=!0,d();const e=setInterval(()=>{d()},3e4),t=setInterval(()=>a(e=>e+1),1e3);return()=>{c.current=!1,clearInterval(e),clearInterval(t)}},[d]),p.jsxs("div",{className:"h-full flex flex-col bg-muted text-foreground overflow-hidden",children:[p.jsxs("div",{className:"flex-shrink-0 px-3 py-2 flex items-center justify-between border-b border-border",children:[p.jsxs("div",{className:"flex items-center gap-2 text-xs font-medium text-muted-foreground",children:[p.jsx(Tt,{className:"size-4"}),p.jsx("span",{children:"已排程任务"})]}),p.jsx(W,{variant:"ghost",size:"sm",className:"h-7 w-7 p-0",onClick:()=>{d()},title:"刷新","aria-label":"刷新",children:p.jsx(P,{className:m("size-3.5",i&&"animate-spin")})})]}),p.jsxs("div",{className:"flex-1 min-h-0 overflow-y-auto p-2 space-y-1.5",children:[p.jsxs("div",{className:"rounded-md bg-muted-foreground/5 px-2 py-1.5 text-[11px] text-muted-foreground flex items-start gap-1.5",children:[p.jsx(ys,{className:"size-3 mt-0.5 shrink-0"}),p.jsxs("span",{className:"leading-snug",children:["best-effort 重建:从 session JSONL 反推「Claude 创建过的 schedule」,",p.jsx("strong",{className:"text-foreground/80",children:"不是"}),"权威活动列表。已触发 / 已删除 无法直接观测。"]})]}),n&&p.jsx("div",{className:"rounded-md border border-destructive/30 bg-destructive/10 text-destructive p-2 text-xs",children:n}),!n&&t&&0===t.length&&!i&&p.jsxs("div",{className:"px-2 py-6 text-center text-xs text-muted-foreground",children:[p.jsx("p",{children:"本项目最近 7 天没有创建过 schedule。"}),p.jsx("p",{className:"mt-2 leading-relaxed",children:"一次性 ScheduleWakeup 触发时间过了的会被隐藏(认为已触发); CronCreate 仅显示 7 天内创建的(与 Claude 自动过期窗口对齐)。"})]}),t&&t.map(e=>{const t=e.nextFireAt?Date.parse(e.nextFireAt):null,s="CronCreate"===e.type&&(e.recurring||/[,*\/-]/.test(e.cron??"")),i="ScheduleWakeup"===e.type&&null!==e.delaySeconds?function(e){if(e<60)return`${e} 秒后`;const t=Math.round(e/60);return t<60?`${t} 分钟后`:Math.round(t/60*10)/10+" 小时后"}(e.delaySeconds):e.cron??"?";return p.jsx("div",{className:"rounded-md border border-border bg-background px-2.5 py-2 text-xs",children:p.jsxs("div",{className:"flex items-start gap-2",children:[p.jsx("div",{className:"shrink-0 mt-0.5 text-muted-foreground",children:s?p.jsx(Ds,{className:"size-3.5"}):p.jsx(G,{className:"size-3.5"})}),p.jsxs("div",{className:"flex-1 min-w-0",children:[p.jsxs("div",{className:"flex flex-wrap items-center gap-1 mb-1",children:[p.jsx("span",{className:"text-[10px] font-mono px-1.5 rounded bg-muted-foreground/10 text-muted-foreground",children:"ScheduleWakeup"===e.type?"SW":"CC"}),e.durable&&p.jsx("span",{className:"text-[10px] px-1.5 rounded bg-primary/10 text-primary",children:"durable"}),p.jsx("code",{className:"text-[10px] bg-muted-foreground/10 px-1 rounded font-mono",children:i})]}),p.jsx("div",{className:"font-medium text-foreground line-clamp-2 leading-snug",children:e.prompt.trim()||"(无 prompt)"}),e.reason&&p.jsxs("div",{className:"mt-0.5 text-muted-foreground line-clamp-1 italic text-[11px]",children:["reason: ",e.reason]}),p.jsxs("div",{className:"mt-1 flex flex-wrap items-center gap-x-3 gap-y-0.5 text-[11px] text-muted-foreground",children:[null!==t&&p.jsxs("span",{title:ei(t),children:["下次: ",p.jsx("span",{className:"text-foreground/90",children:Qs(t)})]}),p.jsxs("span",{title:ei(e.createdAt),children:["创建: ",Qs(e.createdAt)]}),p.jsx("span",{className:"font-mono text-muted-foreground/70",children:e.sessionId.slice(0,8)})]})]})]})},`${e.sessionId}:${e.id}`)}),i&&!t&&p.jsx("div",{className:"space-y-1.5",children:[0,1].map(e=>p.jsx("div",{className:"rounded-md border border-border bg-background px-2.5 py-2 h-16 animate-pulse"},e))})]})]})}function si(e){return e<1024?`${e} B`:e<1048576?`${(e/1024).toFixed(1)} KB`:e<1073741824?`${(e/1024/1024).toFixed(1)} MB`:`${(e/1024/1024/1024).toFixed(2)} GB`}function ii(e){if(!e)return"-";const t=e-Date.now(),s=Math.abs(t),i=t<0,r=Math.round(s/1e3);if(r<60)return i?`${r} 秒前`:`${r} 秒后`;const n=Math.round(r/60);if(n<60)return i?`${n} 分钟前`:`${n} 分钟后`;const o=Math.round(n/60);if(o<24)return i?`${o} 小时前`:`${o} 小时后`;const a=Math.round(o/24);return i?`${a} 天前`:`${a} 天后`}function ri(e){return new Date(e).toLocaleString(void 0,{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})}function ni({projectId:e}){const[t,s]=l.useState(null),[i,r]=l.useState(!0),[n,o]=l.useState(!1),[a,c]=l.useState(null),[,h]=l.useState(0),d=l.useRef(!0),u=l.useCallback(async()=>{c(null);try{const t=await Z(e);if(!d.current)return;s(t)}catch(R_){if(!d.current)return;c(R_.message)}finally{d.current&&r(!1)}},[e]),g=l.useCallback(async()=>{o(!0);try{const t=await J(e);if(!d.current)return;const s=[];t.copied>0&&s.push(`新增/更新 ${t.copied}`),t.deleted>0&&s.push(`删除 ${t.deleted}`),t.skipped>0&&s.push(`跳过 ${t.skipped}`),f.success(`同步完成:${s.join("·")||"无变化"}`),await u()}catch(R_){f.error(`同步失败:${R_.message}`)}finally{d.current&&o(!1)}},[e,u]);l.useEffect(()=>{d.current=!0,u();const e=setInterval(()=>{u()},3e4),t=setInterval(()=>h(e=>e+1),5e3);return()=>{d.current=!1,clearInterval(e),clearInterval(t)}},[u]);const _=(null==t?void 0:t.files.reduce((e,t)=>e+t.bytes,0))??0;return p.jsxs("div",{className:"h-full flex flex-col bg-muted text-foreground overflow-hidden",children:[p.jsxs("div",{className:"flex-shrink-0 px-3 py-2 flex items-center justify-between border-b border-border",children:[p.jsxs("div",{className:"flex items-center gap-2 text-xs font-medium text-muted-foreground",children:[p.jsx(Q,{className:"size-4"}),p.jsx("span",{children:"聊天记录备份"})]}),p.jsx(W,{variant:"ghost",size:"sm",className:"h-7 w-7 p-0",onClick:()=>{u()},title:"刷新","aria-label":"刷新",disabled:i,children:p.jsx(P,{className:m("size-3.5",i&&"animate-spin")})})]}),p.jsx("div",{className:"flex-shrink-0 px-3 py-2 border-b border-border bg-background/40",children:p.jsxs("div",{className:"flex items-center justify-between gap-2",children:[p.jsxs("div",{className:"text-[11px] text-muted-foreground min-w-0",children:[p.jsxs("div",{children:["最后同步:"," ",p.jsx("span",{className:"text-foreground/90",title:(null==t?void 0:t.meta)?ri(t.meta.lastBackupAt):void 0,children:(null==t?void 0:t.meta)?ii(t.meta.lastBackupAt):"从未同步"})]}),t&&p.jsxs("div",{className:"mt-0.5 text-muted-foreground/80",children:[t.files.length," 个文件 · ",si(_)]})]}),p.jsx(W,{size:"sm",className:"h-7 px-2.5 text-xs",onClick:()=>{g()},disabled:n||!(null==t?void 0:t.supported),children:n?"同步中…":"立即同步"})]})}),p.jsxs("div",{className:"flex-1 min-h-0 overflow-y-auto p-2 space-y-1",children:[a&&p.jsxs("div",{className:"rounded-md border border-destructive/30 bg-destructive/10 text-destructive p-2 text-xs flex items-start gap-2",children:[p.jsx(hs,{className:"size-3.5 shrink-0 mt-0.5"}),p.jsx("span",{children:a})]}),t&&!t.supported&&p.jsx("div",{className:"px-2 py-6 text-center text-xs text-muted-foreground",children:p.jsxs("p",{children:["此项目使用 ",p.jsx("code",{className:"text-[10px] bg-muted-foreground/10 px-1 rounded",children:"terminal"})," 模式,无聊天记录需备份。"]})}),(null==t?void 0:t.supported)&&0===t.files.length&&!i&&!a&&p.jsxs("div",{className:"px-2 py-6 text-center text-xs text-muted-foreground",children:[p.jsx("p",{children:"暂无已备份的聊天记录"}),p.jsx("p",{className:"mt-2 leading-relaxed text-muted-foreground/80",children:'定时每 5 分钟同步一次,也可点击右上方"立即同步"手动触发。'}),p.jsxs("p",{className:"mt-1 text-muted-foreground/70",children:["备份路径: ",p.jsx("code",{className:"text-[10px] bg-muted-foreground/10 px-1 rounded break-all",children:t.backupDir})]})]}),null==t?void 0:t.files.map(e=>p.jsxs("div",{className:"rounded-md border border-border bg-background px-2.5 py-1.5 text-xs flex items-center gap-2 hover:bg-accent/50 transition-colors",children:[p.jsx(St,{className:"size-3.5 shrink-0 text-muted-foreground"}),p.jsxs("div",{className:"flex-1 min-w-0",children:[p.jsx("div",{className:"font-mono text-[11px] text-foreground truncate",title:e.name,children:e.name}),p.jsxs("div",{className:"text-muted-foreground/80 text-[10px] flex items-center gap-2",children:[p.jsx("span",{title:ri(e.mtime),children:ii(e.mtime)}),p.jsx("span",{className:"text-muted-foreground/40",children:"·"}),p.jsx("span",{children:si(e.bytes)})]})]})]},e.name)),i&&!t&&p.jsx("div",{className:"space-y-1",children:[0,1].map(e=>p.jsx("div",{className:"rounded-md border border-border bg-background h-10 animate-pulse"},e))})]})]})}function oi({projectPath:e,projectId:t,cliTool:s}){const[i,r]=ee(C.leftPanelTab,"files"),n="claude"===s,o="terminal"!==s;let a;return a="git"===i?"git":"scheduled"===i&&n?"scheduled":"backup"===i&&o?"backup":"files",p.jsxs(zt,{value:a,onValueChange:e=>r(e),orientation:"vertical",className:"h-full flex bg-muted text-foreground overflow-hidden",children:[p.jsxs($t,{className:m("flex flex-col items-center justify-start shrink-0","h-full w-9 border-r border-border rounded-none p-1 gap-1"),children:[p.jsx(Ht,{value:"files",title:"Files","aria-label":"Files",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(L,{className:"h-3.5 w-3.5"})}),p.jsx(Ht,{value:"git",title:"Git","aria-label":"Git",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(vs,{className:"h-3.5 w-3.5"})}),n&&p.jsx(Ht,{value:"scheduled",title:"已排程任务","aria-label":"Scheduled tasks",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(Tt,{className:"h-3.5 w-3.5"})}),o&&p.jsx(Ht,{value:"backup",title:"聊天记录备份","aria-label":"Sessions backup",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(Q,{className:"h-3.5 w-3.5"})})]}),p.jsxs("div",{className:"flex-1 min-w-0 flex flex-col border-l border-border",children:[p.jsx(Wt,{value:"files",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(Gs,{projectPath:e,projectId:t})}),p.jsx(Wt,{value:"git",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(Js,{projectId:t})}),n&&p.jsx(Wt,{value:"scheduled",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(ti,{projectId:t})}),o&&p.jsx(Wt,{value:"backup",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(ni,{projectId:t})})]})]})}function ai(e){const t=li(e),s=l.forwardRef((e,s)=>{const{children:i,...r}=e,n=l.Children.toArray(i),o=n.find(hi);if(o){const e=o.props.children,i=n.map(t=>t===o?l.Children.count(e)>1?l.Children.only(null):l.isValidElement(e)?e.props.children:null:t);return p.jsx(t,{...r,ref:s,children:l.isValidElement(e)?l.cloneElement(e,void 0,i):null})}return p.jsx(t,{...r,ref:s,children:i})});return s.displayName=`${e}.Slot`,s}function li(e){const t=l.forwardRef((e,t)=>{const{children:s,...i}=e;if(l.isValidElement(s)){const e=function(e){var t,s;let i=null==(t=Object.getOwnPropertyDescriptor(e.props,"ref"))?void 0:t.get,r=i&&"isReactWarning"in i&&i.isReactWarning;if(r)return e.ref;if(i=null==(s=Object.getOwnPropertyDescriptor(e,"ref"))?void 0:s.get,r=i&&"isReactWarning"in i&&i.isReactWarning,r)return e.props.ref;return e.props.ref||e.ref}(s),r=function(e,t){const s={...t};for(const i in t){const r=e[i],n=t[i];/^on[A-Z]/.test(i)?r&&n?s[i]=(...e)=>{const t=n(...e);return r(...e),t}:r&&(s[i]=r):"style"===i?s[i]={...r,...n}:"className"===i&&(s[i]=[r,n].filter(Boolean).join(" "))}return{...e,...s}}(i,s.props);return s.type!==l.Fragment&&(r.ref=t?te(t,e):e),l.cloneElement(s,r)}return l.Children.count(s)>1?l.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var ci=Symbol("radix.slottable");function hi(e){return l.isValidElement(e)&&"function"==typeof e.type&&"__radixId"in e.type&&e.type.__radixId===ci}var di=["Enter"," "],ui=["ArrowUp","PageDown","End"],fi=["ArrowDown","PageUp","Home",...ui],pi={ltr:[...di,"ArrowRight"],rtl:[...di,"ArrowLeft"]},mi={ltr:["ArrowLeft"],rtl:["ArrowRight"]},gi="Menu",[_i,vi,xi]=qt(gi),[yi,bi]=ie(gi,[xi,Vt,Ut]),wi=Vt(),Si=Ut(),[Ci,ki]=yi(gi),[Ni,Ei]=yi(gi),ji=e=>{const{__scopeMenu:t,open:s=!1,children:i,dir:r,onOpenChange:n,modal:o=!0}=e,a=wi(t),[c,h]=l.useState(null),d=l.useRef(!1),u=se(n),f=ns(r);return l.useEffect(()=>{const e=()=>{d.current=!0,document.addEventListener("pointerdown",t,{capture:!0,once:!0}),document.addEventListener("pointermove",t,{capture:!0,once:!0})},t=()=>d.current=!1;return document.addEventListener("keydown",e,{capture:!0}),()=>{document.removeEventListener("keydown",e,{capture:!0}),document.removeEventListener("pointerdown",t,{capture:!0}),document.removeEventListener("pointermove",t,{capture:!0})}},[]),p.jsx(Ft,{...a,children:p.jsx(Ci,{scope:t,open:s,onOpenChange:u,content:c,onContentChange:h,children:p.jsx(Ni,{scope:t,onClose:l.useCallback(()=>u(!1),[u]),isUsingKeyboardRef:d,dir:f,modal:o,children:i})})})};ji.displayName=gi;var Mi=l.forwardRef((e,t)=>{const{__scopeMenu:s,...i}=e,r=wi(s);return p.jsx(Kt,{...r,...i,ref:t})});Mi.displayName="MenuAnchor";var Di="MenuPortal",[Ri,Pi]=yi(Di,{forceMount:void 0}),Li=e=>{const{__scopeMenu:t,forceMount:s,children:i,container:r}=e,n=ki(Di,t);return p.jsx(Ri,{scope:t,forceMount:s,children:p.jsx(re,{present:s||n.open,children:p.jsx(ne,{asChild:!0,container:r,children:i})})})};Li.displayName=Di;var Ti="MenuContent",[Ii,Bi]=yi(Ti),Oi=l.forwardRef((e,t)=>{const s=Pi(Ti,e.__scopeMenu),{forceMount:i=s.forceMount,...r}=e,n=ki(Ti,e.__scopeMenu),o=Ei(Ti,e.__scopeMenu);return p.jsx(_i.Provider,{scope:e.__scopeMenu,children:p.jsx(re,{present:i||n.open,children:p.jsx(_i.Slot,{scope:e.__scopeMenu,children:o.modal?p.jsx(Ai,{...r,ref:t}):p.jsx(zi,{...r,ref:t})})})})}),Ai=l.forwardRef((e,t)=>{const s=ki(Ti,e.__scopeMenu),i=l.useRef(null),r=oe(t,i);return l.useEffect(()=>{const e=i.current;if(e)return ce(e)},[]),p.jsx(Hi,{...e,ref:r,trapFocus:s.open,disableOutsidePointerEvents:s.open,disableOutsideScroll:!0,onFocusOutside:ae(e.onFocusOutside,e=>e.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>s.onOpenChange(!1)})}),zi=l.forwardRef((e,t)=>{const s=ki(Ti,e.__scopeMenu);return p.jsx(Hi,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>s.onOpenChange(!1)})}),$i=ai("MenuContent.ScrollLock"),Hi=l.forwardRef((e,t)=>{const{__scopeMenu:s,loop:i=!1,trapFocus:r,onOpenAutoFocus:n,onCloseAutoFocus:o,disableOutsidePointerEvents:a,onEntryFocus:c,onEscapeKeyDown:h,onPointerDownOutside:d,onFocusOutside:u,onInteractOutside:f,onDismiss:m,disableOutsideScroll:g,..._}=e,v=ki(Ti,s),x=Ei(Ti,s),y=wi(s),b=Si(s),w=vi(s),[S,C]=l.useState(null),k=l.useRef(null),N=oe(t,k,v.onContentChange),E=l.useRef(0),j=l.useRef(""),M=l.useRef(0),D=l.useRef(null),R=l.useRef("right"),P=l.useRef(0),L=g?ue:l.Fragment,T=g?{as:$i,allowPinchZoom:!0}:void 0,I=e=>{var t,s;const i=j.current+e,r=w().filter(e=>!e.disabled),n=document.activeElement,o=null==(t=r.find(e=>e.ref.current===n))?void 0:t.textValue,a=function(e,t,s){const i=t.length>1&&Array.from(t).every(e=>e===t[0]),r=i?t[0]:t,n=s?e.indexOf(s):-1;let o=(a=e,l=Math.max(n,0),a.map((e,t)=>a[(l+t)%a.length]));var a,l;1===r.length&&(o=o.filter(e=>e!==s));const c=o.find(e=>e.toLowerCase().startsWith(r.toLowerCase()));return c!==s?c:void 0}(r.map(e=>e.textValue),i,o),l=null==(s=r.find(e=>e.textValue===a))?void 0:s.ref.current;!function e(t){j.current=t,window.clearTimeout(E.current),""!==t&&(E.current=window.setTimeout(()=>e(""),1e3))}(i),l&&setTimeout(()=>l.focus())};l.useEffect(()=>()=>window.clearTimeout(E.current),[]),de();const B=l.useCallback(e=>{var t,s;return R.current===(null==(t=D.current)?void 0:t.side)&&function(e,t){if(!t)return!1;const s={x:e.clientX,y:e.clientY};return function(e,t){const{x:s,y:i}=e;let r=!1;for(let n=0,o=t.length-1;n<t.length;o=n++){const e=t[n],a=t[o],l=e.x,c=e.y,h=a.x,d=a.y;c>i!=d>i&&s<(h-l)*(i-c)/(d-c)+l&&(r=!r)}return r}(s,t)}(e,null==(s=D.current)?void 0:s.area)},[]);return p.jsx(Ii,{scope:s,searchRef:j,onItemEnter:l.useCallback(e=>{B(e)&&e.preventDefault()},[B]),onItemLeave:l.useCallback(e=>{var t;B(e)||(null==(t=k.current)||t.focus(),C(null))},[B]),onTriggerLeave:l.useCallback(e=>{B(e)&&e.preventDefault()},[B]),pointerGraceTimerRef:M,onPointerGraceIntentChange:l.useCallback(e=>{D.current=e},[]),children:p.jsx(L,{...T,children:p.jsx(fe,{asChild:!0,trapped:r,onMountAutoFocus:ae(n,e=>{var t;e.preventDefault(),null==(t=k.current)||t.focus({preventScroll:!0})}),onUnmountAutoFocus:o,children:p.jsx(pe,{asChild:!0,disableOutsidePointerEvents:a,onEscapeKeyDown:h,onPointerDownOutside:d,onFocusOutside:u,onInteractOutside:f,onDismiss:m,children:p.jsx(Xt,{asChild:!0,...b,dir:x.dir,orientation:"vertical",loop:i,currentTabStopId:S,onCurrentTabStopIdChange:C,onEntryFocus:ae(c,e=>{x.isUsingKeyboardRef.current||e.preventDefault()}),preventScrollOnEntryFocus:!0,children:p.jsx(Gt,{role:"menu","aria-orientation":"vertical","data-state":fr(v.open),"data-radix-menu-content":"",dir:x.dir,...y,..._,ref:N,style:{outline:"none",..._.style},onKeyDown:ae(_.onKeyDown,e=>{const t=e.target.closest("[data-radix-menu-content]")===e.currentTarget,s=e.ctrlKey||e.altKey||e.metaKey,i=1===e.key.length;t&&("Tab"===e.key&&e.preventDefault(),!s&&i&&I(e.key));const r=k.current;if(e.target!==r)return;if(!fi.includes(e.key))return;e.preventDefault();const n=w().filter(e=>!e.disabled).map(e=>e.ref.current);ui.includes(e.key)&&n.reverse(),function(e){const t=document.activeElement;for(const s of e){if(s===t)return;if(s.focus(),document.activeElement!==t)return}}(n)}),onBlur:ae(e.onBlur,e=>{e.currentTarget.contains(e.target)||(window.clearTimeout(E.current),j.current="")}),onPointerMove:ae(e.onPointerMove,gr(e=>{const t=e.target,s=P.current!==e.clientX;if(e.currentTarget.contains(t)&&s){const t=e.clientX>P.current?"right":"left";R.current=t,P.current=e.clientX}}))})})})})})})});Oi.displayName=Ti;var Wi=l.forwardRef((e,t)=>{const{__scopeMenu:s,...i}=e;return p.jsx(le.div,{role:"group",...i,ref:t})});Wi.displayName="MenuGroup";var Fi=l.forwardRef((e,t)=>{const{__scopeMenu:s,...i}=e;return p.jsx(le.div,{...i,ref:t})});Fi.displayName="MenuLabel";var Ki="MenuItem",Vi="menu.itemSelect",Ui=l.forwardRef((e,t)=>{const{disabled:s=!1,onSelect:i,...r}=e,n=l.useRef(null),o=Ei(Ki,e.__scopeMenu),a=Bi(Ki,e.__scopeMenu),c=oe(t,n),h=l.useRef(!1);return p.jsx(qi,{...r,ref:c,disabled:s,onClick:ae(e.onClick,()=>{const e=n.current;if(!s&&e){const t=new CustomEvent(Vi,{bubbles:!0,cancelable:!0});e.addEventListener(Vi,e=>null==i?void 0:i(e),{once:!0}),he(e,t),t.defaultPrevented?h.current=!1:o.onClose()}}),onPointerDown:t=>{var s;null==(s=e.onPointerDown)||s.call(e,t),h.current=!0},onPointerUp:ae(e.onPointerUp,e=>{var t;h.current||null==(t=e.currentTarget)||t.click()}),onKeyDown:ae(e.onKeyDown,e=>{const t=""!==a.searchRef.current;s||t&&" "===e.key||di.includes(e.key)&&(e.currentTarget.click(),e.preventDefault())})})});Ui.displayName=Ki;var qi=l.forwardRef((e,t)=>{const{__scopeMenu:s,disabled:i=!1,textValue:r,...n}=e,o=Bi(Ki,s),a=Si(s),c=l.useRef(null),h=oe(t,c),[d,u]=l.useState(!1),[f,m]=l.useState("");return l.useEffect(()=>{const e=c.current;e&&m((e.textContent??"").trim())},[n.children]),p.jsx(_i.ItemSlot,{scope:s,disabled:i,textValue:r??f,children:p.jsx(Yt,{asChild:!0,...a,focusable:!i,children:p.jsx(le.div,{role:"menuitem","data-highlighted":d?"":void 0,"aria-disabled":i||void 0,"data-disabled":i?"":void 0,...n,ref:h,onPointerMove:ae(e.onPointerMove,gr(e=>{if(i)o.onItemLeave(e);else if(o.onItemEnter(e),!e.defaultPrevented){e.currentTarget.focus({preventScroll:!0})}})),onPointerLeave:ae(e.onPointerLeave,gr(e=>o.onItemLeave(e))),onFocus:ae(e.onFocus,()=>u(!0)),onBlur:ae(e.onBlur,()=>u(!1))})})})}),Yi=l.forwardRef((e,t)=>{const{checked:s=!1,onCheckedChange:i,...r}=e;return p.jsx(sr,{scope:e.__scopeMenu,checked:s,children:p.jsx(Ui,{role:"menuitemcheckbox","aria-checked":pr(s)?"mixed":s,...r,ref:t,"data-state":mr(s),onSelect:ae(r.onSelect,()=>null==i?void 0:i(!!pr(s)||!s),{checkForDefaultPrevented:!1})})})});Yi.displayName="MenuCheckboxItem";var Xi="MenuRadioGroup",[Gi,Zi]=yi(Xi,{value:void 0,onValueChange:()=>{}}),Ji=l.forwardRef((e,t)=>{const{value:s,onValueChange:i,...r}=e,n=se(i);return p.jsx(Gi,{scope:e.__scopeMenu,value:s,onValueChange:n,children:p.jsx(Wi,{...r,ref:t})})});Ji.displayName=Xi;var Qi="MenuRadioItem",er=l.forwardRef((e,t)=>{const{value:s,...i}=e,r=Zi(Qi,e.__scopeMenu),n=s===r.value;return p.jsx(sr,{scope:e.__scopeMenu,checked:n,children:p.jsx(Ui,{role:"menuitemradio","aria-checked":n,...i,ref:t,"data-state":mr(n),onSelect:ae(i.onSelect,()=>{var e;return null==(e=r.onValueChange)?void 0:e.call(r,s)},{checkForDefaultPrevented:!1})})})});er.displayName=Qi;var tr="MenuItemIndicator",[sr,ir]=yi(tr,{checked:!1}),rr=l.forwardRef((e,t)=>{const{__scopeMenu:s,forceMount:i,...r}=e,n=ir(tr,s);return p.jsx(re,{present:i||pr(n.checked)||!0===n.checked,children:p.jsx(le.span,{...r,ref:t,"data-state":mr(n.checked)})})});rr.displayName=tr;var nr=l.forwardRef((e,t)=>{const{__scopeMenu:s,...i}=e;return p.jsx(le.div,{role:"separator","aria-orientation":"horizontal",...i,ref:t})});nr.displayName="MenuSeparator";var or=l.forwardRef((e,t)=>{const{__scopeMenu:s,...i}=e,r=wi(s);return p.jsx(Zt,{...r,...i,ref:t})});or.displayName="MenuArrow";var[ar,lr]=yi("MenuSub"),cr="MenuSubTrigger",hr=l.forwardRef((e,t)=>{const s=ki(cr,e.__scopeMenu),i=Ei(cr,e.__scopeMenu),r=lr(cr,e.__scopeMenu),n=Bi(cr,e.__scopeMenu),o=l.useRef(null),{pointerGraceTimerRef:a,onPointerGraceIntentChange:c}=n,h={__scopeMenu:e.__scopeMenu},d=l.useCallback(()=>{o.current&&window.clearTimeout(o.current),o.current=null},[]);return l.useEffect(()=>d,[d]),l.useEffect(()=>{const e=a.current;return()=>{window.clearTimeout(e),c(null)}},[a,c]),p.jsx(Mi,{asChild:!0,...h,children:p.jsx(qi,{id:r.triggerId,"aria-haspopup":"menu","aria-expanded":s.open,"aria-controls":r.contentId,"data-state":fr(s.open),...e,ref:te(t,r.onTriggerChange),onClick:t=>{var i;null==(i=e.onClick)||i.call(e,t),e.disabled||t.defaultPrevented||(t.currentTarget.focus(),s.open||s.onOpenChange(!0))},onPointerMove:ae(e.onPointerMove,gr(t=>{n.onItemEnter(t),t.defaultPrevented||e.disabled||s.open||o.current||(n.onPointerGraceIntentChange(null),o.current=window.setTimeout(()=>{s.onOpenChange(!0),d()},100))})),onPointerLeave:ae(e.onPointerLeave,gr(e=>{var t,i;d();const r=null==(t=s.content)?void 0:t.getBoundingClientRect();if(r){const t=null==(i=s.content)?void 0:i.dataset.side,o="right"===t,l=o?-5:5,c=r[o?"left":"right"],h=r[o?"right":"left"];n.onPointerGraceIntentChange({area:[{x:e.clientX+l,y:e.clientY},{x:c,y:r.top},{x:h,y:r.top},{x:h,y:r.bottom},{x:c,y:r.bottom}],side:t}),window.clearTimeout(a.current),a.current=window.setTimeout(()=>n.onPointerGraceIntentChange(null),300)}else{if(n.onTriggerLeave(e),e.defaultPrevented)return;n.onPointerGraceIntentChange(null)}})),onKeyDown:ae(e.onKeyDown,t=>{var r;const o=""!==n.searchRef.current;e.disabled||o&&" "===t.key||pi[i.dir].includes(t.key)&&(s.onOpenChange(!0),null==(r=s.content)||r.focus(),t.preventDefault())})})})});hr.displayName=cr;var dr="MenuSubContent",ur=l.forwardRef((e,t)=>{const s=Pi(Ti,e.__scopeMenu),{forceMount:i=s.forceMount,...r}=e,n=ki(Ti,e.__scopeMenu),o=Ei(Ti,e.__scopeMenu),a=lr(dr,e.__scopeMenu),c=l.useRef(null),h=oe(t,c);return p.jsx(_i.Provider,{scope:e.__scopeMenu,children:p.jsx(re,{present:i||n.open,children:p.jsx(_i.Slot,{scope:e.__scopeMenu,children:p.jsx(Hi,{id:a.contentId,"aria-labelledby":a.triggerId,...r,ref:h,align:"start",side:"rtl"===o.dir?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:e=>{var t;o.isUsingKeyboardRef.current&&(null==(t=c.current)||t.focus()),e.preventDefault()},onCloseAutoFocus:e=>e.preventDefault(),onFocusOutside:ae(e.onFocusOutside,e=>{e.target!==a.trigger&&n.onOpenChange(!1)}),onEscapeKeyDown:ae(e.onEscapeKeyDown,e=>{o.onClose(),e.preventDefault()}),onKeyDown:ae(e.onKeyDown,e=>{var t;const s=e.currentTarget.contains(e.target),i=mi[o.dir].includes(e.key);s&&i&&(n.onOpenChange(!1),null==(t=a.trigger)||t.focus(),e.preventDefault())})})})})})});function fr(e){return e?"open":"closed"}function pr(e){return"indeterminate"===e}function mr(e){return pr(e)?"indeterminate":e?"checked":"unchecked"}function gr(e){return t=>"mouse"===t.pointerType?e(t):void 0}ur.displayName=dr;var _r=ji,vr=Mi,xr=Li,yr=Oi,br=Wi,wr=Fi,Sr=Ui,Cr=Yi,kr=Ji,Nr=er,Er=rr,jr=nr,Mr=or,Dr=hr,Rr=ur,Pr="ContextMenu",[Lr]=ie(Pr,[bi]),Tr=bi(),[Ir,Br]=Lr(Pr),Or=e=>{const{__scopeContextMenu:t,children:s,onOpenChange:i,dir:r,modal:n=!0}=e,[o,a]=l.useState(!1),c=Tr(t),h=se(i),d=l.useCallback(e=>{a(e),h(e)},[h]);return p.jsx(Ir,{scope:t,open:o,onOpenChange:d,modal:n,children:p.jsx(_r,{...c,dir:r,open:o,onOpenChange:d,modal:n,children:s})})};Or.displayName=Pr;var Ar="ContextMenuTrigger",zr=l.forwardRef((e,t)=>{const{__scopeContextMenu:s,disabled:i=!1,...r}=e,n=Br(Ar,s),o=Tr(s),a=l.useRef({x:0,y:0}),c=l.useRef({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...a.current})}),h=l.useRef(0),d=l.useCallback(()=>window.clearTimeout(h.current),[]),u=e=>{a.current={x:e.clientX,y:e.clientY},n.onOpenChange(!0)};return l.useEffect(()=>d,[d]),l.useEffect(()=>{i&&d()},[i,d]),p.jsxs(p.Fragment,{children:[p.jsx(vr,{...o,virtualRef:c}),p.jsx(le.span,{"data-state":n.open?"open":"closed","data-disabled":i?"":void 0,...r,ref:t,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:i?e.onContextMenu:ae(e.onContextMenu,e=>{d(),u(e),e.preventDefault()}),onPointerDown:i?e.onPointerDown:ae(e.onPointerDown,Vr(e=>{d(),h.current=window.setTimeout(()=>u(e),700)})),onPointerMove:i?e.onPointerMove:ae(e.onPointerMove,Vr(d)),onPointerCancel:i?e.onPointerCancel:ae(e.onPointerCancel,Vr(d)),onPointerUp:i?e.onPointerUp:ae(e.onPointerUp,Vr(d))})]})});zr.displayName=Ar;var $r=e=>{const{__scopeContextMenu:t,...s}=e,i=Tr(t);return p.jsx(xr,{...i,...s})};$r.displayName="ContextMenuPortal";var Hr="ContextMenuContent",Wr=l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Br(Hr,s),n=Tr(s),o=l.useRef(!1);return p.jsx(yr,{...n,...i,ref:t,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:t=>{var s;null==(s=e.onCloseAutoFocus)||s.call(e,t),!t.defaultPrevented&&o.current&&t.preventDefault(),o.current=!1},onInteractOutside:t=>{var s;null==(s=e.onInteractOutside)||s.call(e,t),t.defaultPrevented||r.modal||(o.current=!0)},style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});Wr.displayName=Hr;l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(br,{...r,...i,ref:t})}).displayName="ContextMenuGroup";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(wr,{...r,...i,ref:t})}).displayName="ContextMenuLabel";var Fr=l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Sr,{...r,...i,ref:t})});Fr.displayName="ContextMenuItem";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Cr,{...r,...i,ref:t})}).displayName="ContextMenuCheckboxItem";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(kr,{...r,...i,ref:t})}).displayName="ContextMenuRadioGroup";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Nr,{...r,...i,ref:t})}).displayName="ContextMenuRadioItem";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Er,{...r,...i,ref:t})}).displayName="ContextMenuItemIndicator";var Kr=l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(jr,{...r,...i,ref:t})});Kr.displayName="ContextMenuSeparator";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Mr,{...r,...i,ref:t})}).displayName="ContextMenuArrow";l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Dr,{...r,...i,ref:t})}).displayName="ContextMenuSubTrigger";function Vr(e){return t=>"mouse"!==t.pointerType?e(t):void 0}l.forwardRef((e,t)=>{const{__scopeContextMenu:s,...i}=e,r=Tr(s);return p.jsx(Rr,{...r,...i,ref:t,style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}})}).displayName="ContextMenuSubContent";var Ur=$r,qr=Wr,Yr=Fr,Xr=Kr;const Gr=Or,Zr=zr,Jr=l.forwardRef(({className:e,...t},s)=>p.jsx(Ur,{children:p.jsx(qr,{ref:s,className:m("z-50 min-w-[10rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md","data-[state=open]:animate-in data-[state=closed]:animate-out","data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0","data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95",e),...t})}));Jr.displayName=qr.displayName;const Qr=l.forwardRef(({className:e,destructive:t,...s},i)=>p.jsx(Yr,{ref:i,className:m("relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none","focus:bg-accent focus:text-accent-foreground","data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t&&"text-red-500 focus:text-red-500 focus:bg-red-500/10",e),...s}));Qr.displayName=Yr.displayName;const en=l.forwardRef(({className:e,...t},s)=>p.jsx(Xr,{ref:s,className:m("-mx-1 my-1 h-px bg-border",e),...t}));function tn({kind:e,label:t,preview:s,inserted:i,unclicked:r,onLeftClick:n,onEdit:o,onDelete:a,onShare:c,onRefresh:h,footer:d,readOnly:u,noContextMenu:f,cornerHint:g,instructionsFile:v="CLAUDE.md"}){const x=l.useRef(null),y=m("agent-prompt"===e?i?"border-green-500/50 bg-green-500/10 hover:bg-green-500/15":"border-dashed border-border hover:border-border/80 hover:bg-muted-foreground/10 dark:hover:bg-muted-foreground/20":r?"border-blue-500/30 bg-blue-500/15 hover:bg-blue-500/20 dark:bg-blue-500/15 dark:hover:bg-blue-500/25":"border-transparent bg-background dark:bg-muted-foreground/10 hover:bg-muted-foreground/10 dark:hover:bg-muted-foreground/20 hover:border-muted-foreground/30"),b="agent-prompt"===e,w=!f||h?" · 右键更多":"",S="quick-prompt"===e?`点击发送${w}`:(i?`点击从 ${v} 移除`:`点击插入 ${v}`)+w,C=p.jsxs("div",{ref:x,className:m("group relative rounded-md border text-xs transition-colors cursor-pointer select-none",y),onClick:n,title:S,children:[b&&p.jsx("span",{"aria-hidden":!0,className:m("absolute top-1.5 left-1.5 h-2 w-2 rounded-full transition-colors",i?"bg-green-500 ring-1 ring-green-500/40":"border border-muted-foreground/40 bg-transparent")}),p.jsxs("div",{className:m("py-1.5",f&&g?"pr-10":f?"pr-2":"pr-7",b?"pl-5":"pl-3"),children:[p.jsx("div",{className:"font-medium truncate",children:t}),s&&s!==t&&p.jsx("div",{className:"mt-0.5 text-muted-foreground/80 truncate font-mono",children:s}),d]}),f&&g&&p.jsx("span",{"aria-hidden":!0,className:"absolute top-1.5 right-2 text-[10px] leading-none font-mono tabular-nums text-muted-foreground/60 pointer-events-none",children:g}),!f&&p.jsx("button",{onClick:e=>{e.stopPropagation(),e.preventDefault();const t=x.current;if(!t)return;const s=t.getBoundingClientRect(),i=new MouseEvent("contextmenu",{bubbles:!0,cancelable:!0,clientX:s.right-8,clientY:s.top+s.height/2,button:2});t.dispatchEvent(i)},className:m("absolute top-1 right-1 p-0.5 rounded transition-opacity","md:opacity-0 md:group-hover:opacity-100 md:focus-visible:opacity-100","hover:bg-muted-foreground/10 focus-visible:bg-muted-foreground/10","text-muted-foreground hover:text-foreground"),title:"更多","aria-label":"更多操作",children:p.jsx(Ss,{className:"h-3.5 w-3.5"})})]});return!(!h&&(f||!o&&!a&&!c))?p.jsxs(Gr,{children:[p.jsx(Zr,{asChild:!0,children:C}),p.jsxs(Jr,{children:[h&&p.jsxs(Qr,{onSelect:h,children:[p.jsx(P,{className:"h-3.5 w-3.5"}),"更新"]}),!f&&!u&&o&&a&&p.jsxs(p.Fragment,{children:[h&&p.jsx(en,{}),p.jsxs(Qr,{onSelect:o,children:[p.jsx(_,{className:"h-3.5 w-3.5"}),"编辑"]}),p.jsxs(Qr,{destructive:!0,onSelect:a,children:[p.jsx(R,{className:"h-3.5 w-3.5"}),"删除"]}),c&&p.jsx(en,{})]}),!f&&c&&p.jsxs(Qr,{onSelect:c,children:[p.jsx(me,{className:"h-3.5 w-3.5"}),"共享到 ccweb-hub"]})]})]}):p.jsx("div",{onContextMenu:e=>e.preventDefault(),children:C})}function sn({open:e,onOpenChange:t,initialLabel:s,initialCommand:i,title:r,onSave:n}){const[o,a]=l.useState(s),[c,h]=l.useState(i),[d,u]=l.useState(!0);l.useEffect(()=>{e&&u(!0)},[e]),l.useEffect(()=>{e&&(a(s),h(i))},[e,s,i]);const f=()=>{const e=c.trim();e&&(n(o.trim()||e,e),t(!1))};return p.jsx(Se,{open:e,onOpenChange:t,modal:!1,children:p.jsxs(Ce,{noOverlay:!0,className:m("sm:max-w-2xl max-h-[85vh] flex flex-col transition-opacity",!d&&"opacity-50"),onInteractOutside:e=>{e.preventDefault(),u(!1)},onClick:()=>u(!0),children:[p.jsxs(ke,{children:[p.jsx(Ne,{children:r}),p.jsx(Ee,{children:"左键点击卡片会把此命令发送到 CLI。"})]}),p.jsxs("div",{className:"space-y-4 flex-1 min-h-0 flex flex-col",children:[p.jsxs("div",{className:"space-y-2",children:[p.jsx(je,{htmlFor:"qp-label",children:"标签"}),p.jsx(V,{id:"qp-label",placeholder:"显示名(可选,默认用命令文本)",value:o,onChange:e=>a(e.target.value),className:"text-base",autoFocus:!0})]}),p.jsxs("div",{className:"space-y-2 flex-1 flex flex-col min-h-0",children:[p.jsx(je,{htmlFor:"qp-command",children:"命令"}),p.jsx("textarea",{id:"qp-command",placeholder:"输入要发送的命令...",value:c,onChange:e=>h(e.target.value),className:m("flex-1 min-h-[200px] w-full rounded-md border border-input bg-background px-4 py-3","text-base leading-relaxed font-mono","ring-offset-background placeholder:text-muted-foreground","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2","resize-none"),onKeyDown:e=>{"Enter"===e.key&&(e.metaKey||e.ctrlKey)&&(e.preventDefault(),f())}})]})]}),p.jsxs(Me,{className:"flex items-center justify-between sm:justify-between",children:[p.jsx("span",{className:"text-xs text-muted-foreground",children:"⌘↩ 保存"}),p.jsxs("div",{className:"flex gap-2",children:[p.jsx(W,{variant:"outline",onClick:()=>t(!1),children:"取消"}),p.jsx(W,{onClick:f,disabled:!c.trim(),children:"保存"})]})]})]})})}function rn({title:e,count:t,onAdd:s,children:i}){return p.jsxs("div",{className:"px-2 py-2",children:[p.jsxs("div",{className:"flex items-center justify-between mb-1.5 px-1",children:[p.jsxs("div",{className:"flex items-center gap-1.5 text-xs font-medium text-muted-foreground",children:[p.jsx("span",{children:e}),p.jsxs("span",{className:"text-muted-foreground/60",children:["(",t,")"]})]}),p.jsx("button",{onClick:s,className:"p-0.5 rounded text-muted-foreground hover:text-foreground hover:bg-muted-foreground/10 transition-colors",title:"新建","aria-label":"新建",children:p.jsx(K,{className:"h-3 w-3"})})]}),i]})}function nn({projectId:e,onSend:t}){const s=a(),[i,r]=l.useState([]),[n,o]=l.useState([]),c=j(),h=c.get(e),[d,u]=l.useState({open:!1}),[f,m]=l.useState(h.shareHubOpen),[g,_]=l.useState(h.shareHubLabel),[v,x]=l.useState(h.shareHubCommand),y=l.useCallback(t=>{r(e=>{const s=e.findIndex(e=>e.id===t);if(s<0||e[s].used)return e;const i=[...e];return i[s]={...i[s],used:!0},i}),ge(e,t,!0).catch(e=>{console.error("Failed to mark shortcut used:",e)})},[e]);l.useEffect(()=>{_e(e).then(r).catch(()=>r([]))},[e]),l.useEffect(()=>{ve().then(o).catch(()=>o([]))},[]);const b=l.useCallback(e=>{const t=[],s=new Set;let i=e;const r=[];for(;i&&!s.has(i.id);)s.add(i.id),r.unshift(i),i=i.parentId?n.find(e=>e.id===i.parentId):void 0;for(const n of r)t.push(n.command);return t},[n]),w=l.useCallback(async e=>{const s=b(e);for(const i of s)try{await Promise.resolve(t(i+"\r"))}catch{return}},[b,t]),S=e=>u({open:!0,mode:"create",scope:e}),C=(t,s)=>{_(t),x(s),m(!0),c.setShareHub(e,!0,t,s)};return p.jsxs("div",{className:"h-full flex flex-col text-foreground overflow-hidden",children:[p.jsxs("div",{className:"px-3 pt-2.5 pb-2 border-b border-border/50 shrink-0",children:[p.jsx("span",{className:"text-xs font-medium text-muted-foreground",children:"Quick Prompts"}),p.jsx("p",{className:"mt-1 text-[11px] text-muted-foreground/70 leading-snug",children:"点击卡片发送命令到 CLI;新建的命令在首次点击前以浅蓝色标识"})]}),p.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0",children:[p.jsx(rn,{title:"项目",count:i.length,onAdd:()=>S("project"),children:0===i.length?p.jsx("div",{className:"px-1 py-3 text-xs text-muted-foreground/60",children:"暂无项目命令"}):p.jsx("div",{className:"space-y-1.5",children:i.map(i=>p.jsx(tn,{kind:"quick-prompt",label:i.label,preview:i.label!==i.command?i.command:"",unclicked:!i.used,onLeftClick:()=>(e=>{t(e.command+"\r"),y(e.id)})(i),onEdit:()=>(e=>u({open:!0,mode:"edit",scope:"project",id:e.id,label:e.label,command:e.command}))(i),onDelete:()=>{(async t=>{if(await s({title:"删除项目快捷 Prompt",description:`确认删除「${t.label}」?此操作不可撤销。`,destructive:!0,confirmLabel:"删除"}))try{await be(e,t.id),r(e=>e.filter(e=>e.id!==t.id))}catch(i){console.error("Failed to delete shortcut:",i)}})(i)},onShare:()=>C(i.label,i.command)},i.id))})}),p.jsx("div",{className:"h-px bg-border mx-2"}),p.jsx(rn,{title:"全局",count:n.length,onAdd:()=>S("global"),children:0===n.length?p.jsx("div",{className:"px-1 py-3 text-xs text-muted-foreground/60",children:"暂无全局命令"}):p.jsx("div",{className:"space-y-1.5",children:n.map(e=>{var t;const i=e.parentId?null==(t=n.find(t=>t.id===e.parentId))?void 0:t.label:void 0;return p.jsx(tn,{kind:"quick-prompt",label:e.label,preview:i?"":e.label!==e.command?e.command:"",onLeftClick:()=>w(e),onEdit:()=>(e=>u({open:!0,mode:"edit",scope:"global",id:e.id,label:e.label,command:e.command}))(e),onDelete:()=>{(async e=>{const t=n.filter(t=>t.parentId===e.id);if(await s({title:"删除全局快捷 Prompt",description:t.length>0?`「${e.label}」被 ${t.length} 个其他全局命令继承。删除后这些命令的继承会断链。确认删除?`:`确认删除「${e.label}」?此操作不可撤销。`,destructive:!0,confirmLabel:"删除"}))try{await we(e.id),o(t=>t.filter(t=>t.id!==e.id))}catch(i){console.error("Failed to delete global shortcut:",i)}})(e)},onShare:()=>C(e.label,e.command),footer:i?p.jsxs("div",{className:"flex items-center gap-1 mt-0.5",children:[p.jsx(xe,{className:"h-2.5 w-2.5 text-muted-foreground"}),p.jsxs("span",{className:"text-muted-foreground truncate",children:["继承: ",i,"(继承链仅可在 Dashboard 编辑)"]})]}):null},e.id)})})})]}),p.jsx(sn,{open:d.open,onOpenChange:e=>{e||u({open:!1})},initialLabel:d.open&&"edit"===d.mode?d.label:"",initialCommand:d.open&&"edit"===d.mode?d.command:"",title:d.open?"create"===d.mode?`新建${"global"===d.scope?"全局":"项目"}命令`:"编辑命令":"",onSave:(t,s)=>{(async(t,s)=>{if(d.open)try{if("create"===d.mode)if("global"===d.scope){const e=await De({label:t,command:s});o(t=>[...t,e])}else{const i=await Re(e,{label:t,command:s});r(e=>[...e,i])}else if("global"===d.scope){const e=n.find(e=>e.id===d.id),i=await Pe(d.id,{label:t,command:s,parentId:(null==e?void 0:e.parentId)??null});o(e=>e.map(e=>e.id===i.id?i:e))}else{const i=await Le(e,d.id,{label:t,command:s});r(e=>e.map(e=>e.id===i.id?i:e))}}catch(i){console.error("Failed to save shortcut:",i)}})(t,s)}}),p.jsx(ye,{open:f,onOpenChange:t=>{m(t),t||c.setShareHub(e,!1)},kind:"quick-prompt",label:g,content:v})]})}en.displayName=Xr.displayName;function on({open:e,onOpenChange:t,title:s,initialLabel:i,initialCommand:r,onSave:n,instructionsFile:o="CLAUDE.md"}){const[a,c]=l.useState(i),[h,d]=l.useState(r),[u,f]=l.useState(!0);l.useEffect(()=>{e&&(c(i),d(r),f(!0))},[e,i,r]);const g=a.trim(),_=h.trim(),v=g.length>100,x=_.length>8e3,y=_.length>0&&g.length>0&&!v&&!x,b=()=>{y&&(n(g,h),t(!1))};return p.jsx(Se,{open:e,onOpenChange:t,modal:!1,children:p.jsxs(Ce,{noOverlay:!0,className:m("sm:max-w-2xl max-h-[85vh] flex flex-col transition-opacity",!u&&"opacity-50"),onInteractOutside:e=>{e.preventDefault(),f(!1)},onClick:()=>f(!0),children:[p.jsxs(ke,{children:[p.jsx(Ne,{children:s}),p.jsxs(Ee,{children:["This prompt can be clicked once in the sidebar to insert into ",o,", and clicked again to remove (by exact text match)."]})]}),p.jsxs("div",{className:"space-y-4 flex-1 min-h-0 flex flex-col",children:[p.jsxs("div",{className:"space-y-2",children:[p.jsxs("div",{className:"flex items-center justify-between",children:[p.jsx(je,{htmlFor:"prompt-label",children:"Label"}),p.jsxs("span",{className:m("text-xs text-muted-foreground",v&&"text-red-500"),children:[g.length," / ",100]})]}),p.jsx(V,{id:"prompt-label",placeholder:"A short name for this prompt",value:a,onChange:e=>c(e.target.value),className:"text-base",autoFocus:!0})]}),p.jsxs("div",{className:"space-y-2 flex-1 flex flex-col min-h-0",children:[p.jsxs("div",{className:"flex items-center justify-between",children:[p.jsx(je,{htmlFor:"prompt-command",children:"Prompt"}),p.jsxs("span",{className:m("text-xs text-muted-foreground",x&&"text-red-500"),children:[_.length," / ",8e3]})]}),p.jsx("textarea",{id:"prompt-command",placeholder:`The exact text that will be appended to ${o}...`,value:h,onChange:e=>d(e.target.value),className:m("flex-1 min-h-[200px] w-full rounded-md border border-input bg-background px-4 py-3","text-sm leading-relaxed font-mono","ring-offset-background placeholder:text-muted-foreground","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2","resize-none"),onKeyDown:e=>{"Enter"===e.key&&(e.metaKey||e.ctrlKey)&&(e.preventDefault(),b())}})]})]}),p.jsxs(Me,{className:"flex items-center justify-between sm:justify-between",children:[p.jsx("span",{className:"text-xs text-muted-foreground",children:"⌘↩ to save"}),p.jsxs("div",{className:"flex gap-2",children:[p.jsx(W,{variant:"outline",onClick:()=>t(!1),children:"Cancel"}),p.jsx(W,{onClick:b,disabled:!y,children:"Save"})]})]})]})})}function an({projectId:e}){const t=a(),[s,i]=l.useState([]),[r,n]=l.useState([]),[o,c]=l.useState("CLAUDE.md"),[h,d]=l.useState(!0),[u,m]=l.useState({open:!1}),[g,_]=l.useState({open:!1,label:"",content:""}),v=l.useCallback(async()=>{try{const t=await Te(e);i(t.global),n(t.project),t.instructionsFilename&&c(t.instructionsFilename)}catch(t){f.error(`加载提示词失败: ${t.message}`)}finally{d(!1)}},[e]);l.useEffect(()=>{d(!0),v()},[v]);const x=l.useRef(new Set),y=l.useCallback(async(t,s)=>{if(x.current.has(s.id))return;x.current.add(s.id);const r=s.inserted?"remove":"insert",a=e=>e.map(e=>e.id===s.id?{...e,inserted:!e.inserted}:e);"global"===t?i(a):n(a);try{const t=await Ie(e,s.command,r);if("remove"===r&&!1===t.changed)return"not-found"===t.reason?f.error(`${o} 中找不到该提示词的精确文本,请自行编辑 ${o} 移除。`):f.warning(`该提示词当前不在 ${o} 中(可能被手动编辑过),已重新同步状态。`),void v();v()}catch(l){f.error(`操作失败: ${l.message}`),"global"===t?i(a):n(a)}finally{x.current.delete(s.id)}},[e,v,o]),b=l.useCallback(async(t,s,i,r,n)=>{try{if("create"===t)"global"===s?await Be({label:r,command:n}):await Oe(e,{label:r,command:n}),f.success("已添加");else{if(!i)return;"global"===s?await Ae(i,{label:r,command:n}):await ze(e,i,{label:r,command:n}),f.success("已更新")}v()}catch(o){f.error(`保存失败: ${o.message}`)}},[e,v]),w=l.useCallback(async(s,i)=>{const r=i.inserted?`此提示词目前已插入当前项目的 ${o}。\n\n删除后它会在 ${o} 中成为"孤儿文本"——仅删除提示词记录,不会自动从 ${o} 移除。\n\n确认删除?`:"确认删除此提示词?此操作不可撤销。";if(await t({title:"删除提示词",description:r,destructive:!0,confirmLabel:"删除"}))try{"global"===s?await $e(i.id):await He(e,i.id),f.success("已删除"),v()}catch(n){f.error(`删除失败: ${n.message}`)}},[e,v,t,o]),S=l.useCallback(e=>{_({open:!0,label:e.label,content:e.command})},[]);return p.jsxs("div",{className:"flex flex-col h-full overflow-y-auto",children:[p.jsxs("div",{className:"px-3 pt-2.5 pb-2 border-b border-border/50 shrink-0",children:[p.jsx("span",{className:"text-xs font-medium uppercase tracking-wider text-muted-foreground",children:"Agent Prompts"}),p.jsxs("p",{className:"mt-1 text-[11px] text-muted-foreground/70 leading-snug",children:["点击卡片插入 / 移出当前项目的 ",o,";左上角绿点表示已插入"]})]}),p.jsx(ln,{title:"项目",count:r.length,loading:h,prompts:r,emptyText:"暂无项目提示词",instructionsFile:o,onAdd:()=>m({open:!0,mode:"create",scope:"project"}),onToggle:e=>{y("project",e)},onEdit:e=>m({open:!0,mode:"edit",scope:"project",id:e.id,label:e.label,command:e.command}),onDelete:e=>{w("project",e)},onShare:S}),p.jsx("div",{className:"h-px bg-border mx-2"}),p.jsx(ln,{title:"全局",count:s.length,loading:h,prompts:s,emptyText:"暂无全局提示词",instructionsFile:o,onAdd:()=>m({open:!0,mode:"create",scope:"global"}),onToggle:e=>{y("global",e)},onEdit:e=>m({open:!0,mode:"edit",scope:"global",id:e.id,label:e.label,command:e.command}),onDelete:e=>{w("global",e)},onShare:S}),p.jsx(on,{open:u.open,onOpenChange:e=>{e||m({open:!1})},title:!1===u.open?"":"create"===u.mode?`新建${"global"===u.scope?"全局":"项目"}提示词`:`编辑${"global"===u.scope?"全局":"项目"}提示词`,initialLabel:u.open&&"edit"===u.mode?u.label:"",initialCommand:u.open&&"edit"===u.mode?u.command:"",instructionsFile:o,onSave:(e,t)=>{if(!u.open)return;const s="edit"===u.mode?u.id:null;b(u.mode,u.scope,s,e,t)}}),p.jsx(ye,{open:g.open,onOpenChange:e=>_(t=>({...t,open:e})),kind:"agent-prompt",label:g.label,content:g.content})]})}function ln({title:e,count:t,loading:s,prompts:i,emptyText:r,onAdd:n,onToggle:o,onEdit:a,onDelete:l,onShare:c,instructionsFile:h}){return p.jsxs("div",{className:"px-2 py-2",children:[p.jsxs("div",{className:"flex items-center justify-between mb-1.5 px-1",children:[p.jsxs("div",{className:"flex items-center gap-1.5 text-xs font-medium text-muted-foreground uppercase tracking-wider",children:[p.jsx("span",{children:e}),p.jsxs("span",{className:"text-muted-foreground/60 normal-case tracking-normal",children:["(",t,")"]})]}),p.jsx("button",{onClick:n,className:"p-0.5 rounded text-muted-foreground hover:text-foreground hover:bg-muted-foreground/10 transition-colors",title:"新建","aria-label":"新建",children:p.jsx(K,{className:"h-3 w-3"})})]}),s?p.jsx("div",{className:"px-1 py-3 text-xs text-muted-foreground/60",children:"加载中…"}):0===i.length?p.jsx("div",{className:"px-1 py-3 text-xs text-muted-foreground/60",children:r}):p.jsx("div",{className:"space-y-1.5",children:i.map(e=>{const t=e.command.split("\n").find(e=>e.trim())??e.command.trim();return p.jsx(tn,{kind:"agent-prompt",label:e.label,preview:t,inserted:e.inserted,instructionsFile:h,onLeftClick:()=>o(e),onEdit:()=>a(e),onDelete:()=>l(e),onShare:()=>c(e)},e.id)})})]})}function cn({projectId:e}){const[t,s]=l.useState([]),[i,r]=l.useState(null),[n,o]=l.useState("CLAUDE.md"),[a,c]=l.useState(!0),[h,d]=l.useState(!1),u=l.useRef(new Set),g=l.useCallback(async()=>{c(!0);try{const t=await We(e);s(t.items),r(t.claudeMdLineCount),t.instructionsFilename&&o(t.instructionsFilename)}catch(t){f.error(`加载失败: ${t.message}`)}finally{c(!1)}},[e]);l.useEffect(()=>{g()},[g]);const _=l.useCallback(async t=>{if(u.current.has(t.filename))return;u.current.add(t.filename),s(e=>e.map(e=>e.filename===t.filename?{...e,inserted:!e.inserted}:e));const i=t.inserted?"remove":"insert";try{const n=await Fe(e,t.filename,i);if(!n.ok)return f.error("操作失败"+(n.reason?`(${n.reason})`:"")),void g();s(e=>e.map(e=>e.filename===t.filename?{...e,inserted:n.inserted}:e)),"number"==typeof n.claudeMdLineCount&&r(n.claudeMdLineCount),"insert"===i&&"refreshed"===n.reason&&f.info(`${t.name} 已更新(文件内容有变化)`)}catch(n){f.error(`操作失败: ${n.message}`),s(e=>e.map(e=>e.filename===t.filename?{...e,inserted:t.inserted}:e))}finally{u.current.delete(t.filename)}},[e,g]),v=l.useCallback(async()=>{if(h)return;const i=t.filter(e=>e.inserted);if(0===i.length)return void f.info("没有已插入的 memory 卡片");d(!0);let n=0,o=0;for(const t of i)if(u.current.has(t.filename))o++;else{u.current.add(t.filename);try{const i=await Fe(e,t.filename,"insert");i.ok?(s(e=>e.map(e=>e.filename===t.filename?{...e,inserted:i.inserted}:e)),"number"==typeof i.claudeMdLineCount&&r(i.claudeMdLineCount),n++):o++}catch{o++}finally{u.current.delete(t.filename)}}d(!1),0===o?f.success(`已从磁盘更新 ${n} 个 memory 卡片`):f.error(`${n} 个更新成功,${o} 个失败`)},[e,t,h]),x=l.useCallback(async t=>{if(!u.current.has(t.filename))if(t.inserted){u.current.add(t.filename);try{const i=await Fe(e,t.filename,"insert");if(!i.ok)return f.error("更新失败"+(i.reason?`(${i.reason})`:"")),void g();s(e=>e.map(e=>e.filename===t.filename?{...e,inserted:i.inserted}:e)),"number"==typeof i.claudeMdLineCount&&r(i.claudeMdLineCount),f.success(`${t.name} 已从磁盘重新加载`)}catch(i){f.error(`更新失败: ${i.message}`)}finally{u.current.delete(t.filename)}}else f.info("卡片未插入,无需更新")},[e,g]);return p.jsxs("div",{className:"flex flex-col h-full overflow-y-auto",children:[p.jsxs("div",{className:"px-3 pt-2.5 pb-2 border-b border-border/50 shrink-0",children:[p.jsxs("div",{className:"flex items-center justify-between",children:[p.jsx("span",{className:"text-xs font-medium uppercase tracking-wider text-muted-foreground",children:"Memory Prompts"}),p.jsxs("div",{className:"flex items-center gap-0.5",children:[p.jsx("button",{onClick:()=>{v()},disabled:h||!t.some(e=>e.inserted),className:m("p-0.5 rounded text-muted-foreground transition-colors","hover:text-foreground hover:bg-muted-foreground/10","disabled:opacity-30 disabled:cursor-not-allowed disabled:hover:bg-transparent disabled:hover:text-muted-foreground"),title:`把所有已插入卡片的内容从磁盘重新加载到 ${n}`,children:p.jsx(bs,{className:m("h-3.5 w-3.5",h&&"animate-spin")})}),p.jsx("button",{onClick:()=>{g()},className:"p-0.5 rounded text-muted-foreground hover:text-foreground hover:bg-muted-foreground/10 transition-colors",title:"刷新(重新扫描 .ccweb/memory/)",children:p.jsx(P,{className:m("h-3.5 w-3.5",a&&"animate-spin")})})]})]}),p.jsxs("p",{className:"mt-1 text-[11px] text-muted-foreground/70 leading-snug",children:["来自 ",p.jsx("code",{className:"text-[11px]",children:".ccweb/memory/*.md"})," 的文件,点击插入 / 移除 ",n,"(以",p.jsx("code",{className:"text-[11px]",children:" START 名 / END 名 "}),"包裹)"]}),null!==i&&p.jsxs("p",{className:"mt-0.5 text-[11px] text-muted-foreground/60 font-mono tabular-nums",children:[n,": ",i," 行"]})]}),p.jsx("div",{className:"px-2 py-2 flex-1 min-h-0",children:a&&0===t.length?p.jsx("div",{className:"px-1 py-6 text-xs text-muted-foreground/60 text-center",children:"加载中…"}):0===t.length?p.jsxs("div",{className:"px-1 py-8 text-xs text-muted-foreground/60 flex flex-col items-center gap-2",children:[p.jsx(gs,{className:"h-5 w-5"}),p.jsxs("div",{className:"text-center leading-relaxed",children:["暂无 memory 文件",p.jsx("br",{}),"新建 ",p.jsx("code",{className:"text-[11px]",children:".ccweb/memory/*.md"})," 文件后点刷新"]})]}):p.jsx("div",{className:"space-y-1.5",children:t.map(e=>p.jsx(tn,{kind:"agent-prompt",noContextMenu:!0,label:e.name,preview:e.preview,inserted:e.inserted,instructionsFile:n,cornerHint:`${e.lineCount} 行`,onLeftClick:()=>{_(e)},onRefresh:e.inserted?()=>{x(e)}:void 0},e.filename))})})]})}function hn({projectId:e,onSend:t}){const[s,i]=ee(C.rightPanelTab,"shortcuts"),r="prompts"===s?"prompts":"memory"===s?"memory":"shortcuts";return p.jsxs(zt,{value:r,onValueChange:e=>i(e),orientation:"vertical",className:"h-full flex bg-muted text-foreground overflow-hidden",children:[p.jsxs("div",{className:"flex-1 min-w-0 flex flex-col border-r border-border",children:[p.jsx(Wt,{value:"shortcuts",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(nn,{projectId:e,onSend:t})}),p.jsx(Wt,{value:"prompts",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(an,{projectId:e})}),p.jsx(Wt,{value:"memory",className:"flex-1 min-h-0 mt-0 data-[state=inactive]:hidden",children:p.jsx(cn,{projectId:e})})]}),p.jsxs($t,{className:m("flex flex-col items-center justify-start shrink-0","h-full w-9 border-l border-border rounded-none p-1 gap-1"),children:[p.jsx(Ht,{value:"shortcuts",title:"Quick Prompts (快捷 Prompts)","aria-label":"Quick Prompts",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(Ke,{className:"h-3.5 w-3.5"})}),p.jsx(Ht,{value:"prompts",title:"Agent Prompts","aria-label":"Agent Prompts",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(Ve,{className:"h-3.5 w-3.5"})}),p.jsx(Ht,{value:"memory",title:"Memory Prompts (.ccweb/memory/*.md)","aria-label":"Memory Prompts",className:m("h-7 w-7 p-0 rounded-md flex items-center justify-center"),children:p.jsx(gs,{className:"h-3.5 w-3.5"})})]})]})}function dn(){if("undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID)return crypto.randomUUID();if("undefined"!=typeof crypto&&"function"==typeof crypto.getRandomValues){const e=new Uint8Array(16);crypto.getRandomValues(e),e[6]=15&e[6]|64,e[8]=63&e[8]|128;const t=e=>e.toString(16).padStart(2,"0");return`${t(e[0])}${t(e[1])}${t(e[2])}${t(e[3])}-${t(e[4])}${t(e[5])}-${t(e[6])}${t(e[7])}-${t(e[8])}${t(e[9])}-${t(e[10])}${t(e[11])}${t(e[12])}${t(e[13])}${t(e[14])}${t(e[15])}`}return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{const t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)})}async function un(e,t,s){const i={"Content-Type":"application/json"},r=h();r&&(i.Authorization=`Bearer ${r}`);const n=await fetch(t,{method:e,headers:i,body:void 0!==s?JSON.stringify(s):void 0});if(!n.ok){let e=`HTTP ${n.status}`;try{const t=await n.json();t.error&&(e=t.error)}catch{}throw new Error(e)}return n.json()}function fn(e,t){return un("GET",`/api/projects/${e}/flows/file/${encodeURIComponent(t)}`)}function pn(e){return un("POST",`/api/projects/${e}/flows/abort`)}function mn({node:e,allIds:t,variables:s,constants:i,onChange:r,onDelete:n}){return p.jsxs("div",{className:"rounded-xl border border-border bg-card p-4 space-y-3",children:[p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsxs("span",{className:"text-xs font-mono text-muted-foreground",children:["#",e.id]}),p.jsx(V,{value:e.name,onChange:t=>r({...e,name:t.target.value}),className:"h-8 flex-1",placeholder:"节点名称"}),p.jsx("div",{className:"text-xs px-2 py-0.5 rounded bg-accent",children:gn(e.kind)}),p.jsx(W,{size:"sm",variant:"ghost",onClick:n,title:"删除节点",children:p.jsx(R,{className:"h-4 w-4"})})]}),"user-input"===e.kind&&p.jsx(vn,{node:e,allIds:t,variables:s,constants:i,onChange:r}),"llm"===e.kind&&p.jsx(xn,{node:e,allIds:t,variables:s,constants:i,onChange:r}),"system-logic"===e.kind&&p.jsx(bn,{node:e,allIds:t,variables:s,constants:i,onChange:r})]})}function gn(e){return"user-input"===e?"用户输入":"llm"===e?"LLM":"系统逻辑"}function _n({value:e,allIds:t,selfId:s,onChange:i,label:r="下一节点"}){return p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:r}),p.jsxs(Jt,{value:null===e?"__null":String(e),onValueChange:e=>i("__null"===e?null:Number(e)),children:[p.jsx(Qt,{className:"h-8 text-xs",children:p.jsx(es,{})}),p.jsxs(ts,{children:[p.jsx(ss,{value:"__null",children:"— 结束 —"}),t.filter(e=>e!==s).map(e=>p.jsxs(ss,{value:String(e),children:["#",e]},e))]})]})]})}function vn({node:e,allIds:t,variables:s,constants:i,onChange:r}){const n=t=>r({...e,userInputSchema:{fields:t}}),o=(t,s,i)=>{const r=[...e.userInputSchema.fields],o={...r[t]};delete o.outputVariable,delete o.bindVariable,delete o.bindConstant,"out"===s&&i?o.outputVariable=i:"bindVar"===s&&i?o.bindVariable=i:"bindConst"===s&&i&&(o.bindConstant=i),r[t]=o,n(r)};return p.jsxs("div",{className:"space-y-3",children:[p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"表单字段"}),e.userInputSchema.fields.map((t,r)=>{const a=(e=>e.outputVariable?"out":e.bindVariable?"bindVar":e.bindConstant?"bindConst":"none")(t),l=t.outputVariable??t.bindVariable??t.bindConstant??"",c=("bindConst"===a?i:s).filter(e=>!!e.name);return p.jsxs("div",{className:"space-y-1.5 rounded-md border border-border/60 p-2",children:[p.jsxs("div",{className:"flex gap-1.5",children:[p.jsx(V,{value:t.key,onChange:s=>{const i=[...e.userInputSchema.fields];i[r]={...t,key:s.target.value},n(i)},placeholder:"key",className:"w-32 h-8 font-mono text-xs"}),p.jsx(V,{value:t.label,onChange:s=>{const i=[...e.userInputSchema.fields];i[r]={...t,label:s.target.value},n(i)},placeholder:"显示标签",className:"flex-1 h-8 text-xs"}),p.jsxs(Jt,{value:t.type,onValueChange:s=>{const i=[...e.userInputSchema.fields];i[r]={...t,type:s},n(i)},children:[p.jsx(Qt,{className:"w-24 h-8 text-xs",children:p.jsx(es,{})}),p.jsxs(ts,{children:[p.jsx(ss,{value:"text",children:"单行"}),p.jsx(ss,{value:"textarea",children:"多行"})]})]}),p.jsx(W,{size:"sm",variant:"ghost",onClick:()=>n(e.userInputSchema.fields.filter((e,t)=>t!==r)),children:p.jsx(b,{className:"h-3.5 w-3.5"})})]}),(s.length>0||i.length>0)&&p.jsxs("div",{className:"flex gap-1.5 items-center",children:[p.jsx("span",{className:"text-[11px] text-muted-foreground",children:"绑定"}),p.jsxs(Jt,{value:a,onValueChange:e=>{var t,n;const a=e,c="bindConst"===a?(null==(t=i[0])?void 0:t.name)??null:(null==(n=s[0])?void 0:n.name)??null;o(r,a,l||c)},children:[p.jsx(Qt,{className:"w-40 h-7 text-xs",children:p.jsx(es,{})}),p.jsxs(ts,{children:[p.jsx(ss,{value:"none",children:"无绑定"}),p.jsx(ss,{value:"out",disabled:0===s.length,children:"输出到变量"}),p.jsx(ss,{value:"bindVar",disabled:0===s.length,children:"显示变量(只读)"}),p.jsx(ss,{value:"bindConst",disabled:0===i.length,children:"显示常量(只读)"})]})]}),"none"!==a&&p.jsxs(Jt,{value:l,onValueChange:e=>o(r,a,e),children:[p.jsx(Qt,{className:"flex-1 h-7 text-xs",children:p.jsx(es,{placeholder:"选择名字"})}),p.jsx(ts,{children:c.map(e=>p.jsxs(ss,{value:e.name,children:[p.jsx("span",{className:"font-mono",children:e.name}),p.jsx("span",{className:"opacity-60 ml-2",children:e.description||"(无描述)"})]},e.name))})]})]})]},r)}),p.jsxs(W,{size:"sm",variant:"ghost",onClick:()=>n([...e.userInputSchema.fields,{key:"",label:"",type:"text"}]),className:"h-7 text-xs",children:[p.jsx(K,{className:"h-3.5 w-3.5 mr-1"})," 添加字段"]})]}),p.jsx(_n,{value:e.next,allIds:t,selfId:e.id,onChange:t=>r({...e,next:t})})]})}function xn({node:e,allIds:t,variables:s,constants:i,onChange:r}){const n=e.readVariables??[],o=e.writeVariables??[],a=e.readConstants??[],l=(t,s)=>{const i=e[t]??[],n=i.includes(s)?i.filter(e=>e!==s):[...i,s];r({...e,[t]:n})};return p.jsxs("div",{className:"space-y-3",children:[p.jsxs("div",{className:"space-y-1.5",children:[p.jsxs(je,{className:"text-xs text-muted-foreground",children:["Prompt 模板 · 插值 ",p.jsx("span",{className:"font-mono",children:"{{var:name}}"})," 或 ",p.jsx("span",{className:"font-mono",children:"{{const:name}}"})]}),p.jsx("textarea",{value:e.promptTemplate,onChange:t=>r({...e,promptTemplate:t.target.value}),className:"w-full min-h-[120px] rounded-md border border-border bg-background px-3 py-2 text-xs font-mono resize-y outline-none focus:ring-2 focus:ring-ring/30",placeholder:"例:\n根据目标 {{var:goal}} 提取 {{const:max_keywords}} 个关键词,\n写入 .ccweb/workflow_data.json 的 variables.keywords 字段。"})]}),i.length>0&&p.jsx(yn,{label:"读取常量 · prompt 头部附常量值上下文",items:i,selected:a,onToggle:e=>l("readConstants",e),accent:"green"}),s.length>0&&p.jsxs(p.Fragment,{children:[p.jsx(yn,{label:"读取变量 · prompt 头部附变量当前值",items:s,selected:n,onToggle:e=>l("readVariables",e),accent:"blue"}),p.jsx(yn,{label:"写入变量 · prompt 末尾附 LLM 写盘指令",items:s,selected:o,onToggle:e=>l("writeVariables",e),accent:"primary"})]}),p.jsxs("div",{className:"flex gap-3",children:[p.jsxs("div",{className:"flex-1 space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"超时秒数"}),p.jsx(V,{type:"number",min:1,value:e.timeoutSec,onChange:t=>r({...e,timeoutSec:Math.max(1,Number(t.target.value)||1)}),className:"h-8 text-xs"})]}),p.jsx("div",{className:"flex-1",children:p.jsx(_n,{value:e.next,allIds:t,selfId:e.id,onChange:t=>r({...e,next:t})})})]})]})}function yn({label:e,items:t,selected:s,onToggle:i,accent:r}){const n={green:"bg-emerald-500/15 border-emerald-500/40 text-emerald-700 dark:text-emerald-400",blue:"bg-blue-500/15 border-blue-500/40 text-blue-600 dark:text-blue-400",primary:"bg-primary/15 border-primary/40 text-primary"}[r];return p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:e}),p.jsx("div",{className:"flex flex-wrap gap-1.5",children:t.map(e=>{const t=s.includes(e.name);return p.jsx("button",{type:"button",onClick:()=>i(e.name),className:`px-2 py-1 rounded-md text-xs border transition-colors ${t?n:"bg-muted/30 border-border text-muted-foreground hover:text-foreground"}`,title:e.description||"(无描述)",children:p.jsx("span",{className:"font-mono",children:e.name})},e.name)})})]})}function bn({node:e,allIds:t,variables:s,constants:i,onChange:r}){const n=t=>r({...e,branches:t});return p.jsxs("div",{className:"space-y-3",children:[p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"分支规则 · 按顺序匹配,先命中先生效"}),e.branches.map((r,o)=>{const a=!!r.constant,l=r.constant??r.variable??"",c=(a?i:s).filter(e=>!!e.name);return p.jsxs("div",{className:"flex gap-1.5 items-center",children:[p.jsxs(Jt,{value:a?"const":"var",onValueChange:t=>{var a,l;const c=[...e.branches];c[o]="const"===t?{constant:(null==(a=i[0])?void 0:a.name)??"",equals:r.equals,goto:r.goto}:{variable:(null==(l=s[0])?void 0:l.name)??"",equals:r.equals,goto:r.goto},n(c)},children:[p.jsx(Qt,{className:"w-20 h-8 text-xs",children:p.jsx(es,{})}),p.jsxs(ts,{children:[p.jsx(ss,{value:"var",disabled:0===s.length,children:"变量"}),p.jsx(ss,{value:"const",disabled:0===i.length,children:"常量"})]})]}),p.jsxs(Jt,{value:l,onValueChange:t=>{const s=[...e.branches];s[o]=a?{constant:t,equals:r.equals,goto:r.goto}:{variable:t,equals:r.equals,goto:r.goto},n(s)},children:[p.jsx(Qt,{className:"w-32 h-8 text-xs",children:p.jsx(es,{placeholder:"名字"})}),p.jsx(ts,{children:c.map(e=>p.jsx(ss,{value:e.name,children:p.jsx("span",{className:"font-mono",children:e.name})},e.name))})]}),p.jsx("span",{className:"text-xs text-muted-foreground",children:"=="}),p.jsx(V,{value:"string"==typeof r.equals?r.equals:JSON.stringify(r.equals),onChange:t=>{const s=[...e.branches];let i=t.target.value;try{i=JSON.parse(t.target.value)}catch{}s[o]={...r,equals:i},n(s)},placeholder:'值(如 true, 10, "yes")',className:"w-32 h-8 font-mono text-xs"}),p.jsx("span",{className:"text-xs text-muted-foreground",children:"→"}),p.jsxs(Jt,{value:String(r.goto),onValueChange:t=>{const s=[...e.branches];s[o]={...r,goto:Number(t)},n(s)},children:[p.jsx(Qt,{className:"w-24 h-8 text-xs",children:p.jsx(es,{})}),p.jsx(ts,{children:t.map(e=>p.jsxs(ss,{value:String(e),children:["#",e]},e))})]}),p.jsx(W,{size:"sm",variant:"ghost",onClick:()=>n(e.branches.filter((e,t)=>t!==o)),children:p.jsx(b,{className:"h-3.5 w-3.5"})})]},o)}),p.jsxs(W,{size:"sm",variant:"ghost",onClick:()=>{var t;const r=s.length>0?{variable:s[0].name,equals:!0,goto:e.id}:{constant:(null==(t=i[0])?void 0:t.name)??"",equals:!0,goto:e.id};n([...e.branches,r])},className:"h-7 text-xs",disabled:0===s.length&&0===i.length,children:[p.jsx(K,{className:"h-3.5 w-3.5 mr-1"})," 添加分支"]})]}),p.jsxs("div",{className:"flex gap-3",children:[p.jsxs("div",{className:"flex-1 space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"回边上限"}),p.jsx(V,{type:"number",min:0,value:e.maxRetries,onChange:t=>r({...e,maxRetries:Math.max(0,Number(t.target.value)||0)}),className:"h-8 text-xs"})]}),p.jsx("div",{className:"flex-1",children:p.jsx(_n,{value:e.defaultGoto??null,allIds:t,selfId:e.id,onChange:t=>r({...e,defaultGoto:t}),label:"默认 (无分支命中)"})})]})]})}function wn({nodes:e,entryNodeId:t,mode:s,state:i,onNodeClick:r}){const n=l.useMemo(()=>function(e,t){const s=new Map(e.map(e=>[e.id,e])),i=[],r=new Set,n=[t];for(;n.length;){const e=n.pop();if(r.has(e))continue;const t=s.get(e);if(!t)continue;r.add(e),i.push(e);const o=[];if("user-input"===t.kind||"llm"===t.kind)null!=t.next&&o.push(t.next);else if("system-logic"===t.kind){null!=t.defaultGoto&&o.push(t.defaultGoto);for(const e of t.branches)o.push(e.goto)}for(let s=o.length-1;s>=0;s--)n.push(o[s])}for(const o of e)r.has(o.id)||i.push(o.id);return i}(e,t),[e,t]),o=l.useMemo(()=>new Map(e.map(e=>[e.id,e])),[e]),a=l.useMemo(()=>new Set(((null==i?void 0:i.history)??[]).map(e=>e.nodeId)),[null==i?void 0:i.history]);return 0===n.length?p.jsx("div",{className:"text-xs text-muted-foreground px-3 py-2",children:"空流,添加节点以构建链路"}):p.jsx("div",{className:"flex items-center gap-1.5 overflow-x-auto py-2 px-3 scrollbar-thin",children:n.map((e,t)=>{const c=o.get(e);if(!c)return null;const h="user-input"===(d=c.kind)?ls:"llm"===d?ds:vs;var d;const u="runtime"===s?function(e,t,s,i){return"completed"===i||"failed"===i||"aborted"===i?s.has(e)?"completed":"future":t===e?"current":s.has(e)?"completed":"future"}(e,null==i?void 0:i.currentNodeId,a,null==i?void 0:i.status):null,f=[];if("system-logic"===c.kind)for(const s of c.branches){const e=n.indexOf(s.goto);-1!==e&&e<t&&f.push(s.goto)}return p.jsxs(l.Fragment,{children:[p.jsxs("button",{type:"button",onClick:()=>null==r?void 0:r(e),disabled:!r,className:m("group flex-shrink-0 flex items-center gap-1.5 px-2.5 py-1 rounded-md border text-xs transition-all","editor"===s&&["user-input"===c.kind&&"bg-amber-500/10 border-amber-500/30 text-amber-700 dark:text-amber-300","llm"===c.kind&&"bg-primary/10 border-primary/30 text-primary","system-logic"===c.kind&&"bg-purple-500/10 border-purple-500/30 text-purple-700 dark:text-purple-300",r&&"hover:scale-105 cursor-pointer"],"runtime"===s&&["completed"===u&&"bg-emerald-500/15 border-emerald-500/40 text-emerald-700 dark:text-emerald-400","current"===u&&"bg-primary/15 border-primary text-primary ring-2 ring-primary/30 animate-pulse","future"===u&&"bg-muted/40 border-border text-muted-foreground"]),title:`#${c.id} · ${c.name}`,children:["runtime"===s&&"completed"===u&&p.jsx(os,{className:"h-3 w-3"}),"runtime"===s&&"current"===u&&p.jsx(us,{className:"h-3 w-3"}),"runtime"===s&&"future"===u&&p.jsx(It,{className:"h-3 w-3"}),"editor"===s&&p.jsx(h,{className:"h-3 w-3"}),p.jsxs("span",{className:"font-mono opacity-70",children:["#",c.id]}),p.jsx("span",{className:"max-w-[7rem] truncate",children:c.name}),f.length>0&&p.jsxs("span",{className:"flex items-center gap-0.5 ml-0.5 text-[10px] opacity-70",title:`回边 → ${f.map(e=>"#"+e).join(", ")}`,children:[p.jsx(Rs,{className:"h-2.5 w-2.5"}),f.map(e=>"#"+e).join("")]})]}),t<n.length-1&&p.jsx(B,{className:"h-3 w-3 flex-shrink-0 text-muted-foreground/50"})]},e)})})}const Sn={"user-input":"用户输入",llm:"LLM","system-logic":"系统逻辑"},Cn={"user-input":"弹框收集用户填写的字段,系统写入到输出文件",llm:"把 prompt 模板(含 {{file:...}} 插值)通过 chat 注入 agent","system-logic":"读 JSON 文件按字段值分支跳转,支持回边循环"};function kn({open:e,onOpenChange:t,allIds:s,danglingPredecessors:i,onCreate:r}){const[n,o]=l.useState(""),[a,c]=l.useState("llm"),[h,d]=l.useState(i[0]??null),u=()=>{const e=n.trim()||`新${Sn[a]}节点`;r({name:e,kind:a,wireFrom:h}),o(""),t(!1)};return p.jsx(Se,{open:e,onOpenChange:t,children:p.jsxs(Ce,{className:"max-w-md",children:[p.jsx(ke,{children:p.jsx(Ne,{children:"添加节点"})}),p.jsxs("div",{className:"space-y-3",children:[p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"节点名称"}),p.jsx(V,{value:n,onChange:e=>o(e.target.value),placeholder:`新${Sn[a]}节点`,autoFocus:!0,onKeyDown:e=>{"Enter"===e.key&&u()}})]}),p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"类型"}),p.jsxs(Jt,{value:a,onValueChange:e=>c(e),children:[p.jsx(Qt,{children:p.jsx(es,{})}),p.jsx(ts,{children:["user-input","llm","system-logic"].map(e=>p.jsx(ss,{value:e,children:Sn[e]},e))})]}),p.jsx("p",{className:"text-xs text-muted-foreground pt-0.5",children:Cn[a]})]}),s.length>0&&p.jsxs("div",{className:"space-y-1.5",children:[p.jsxs(je,{className:"text-xs text-muted-foreground",children:["自动接到哪个节点之后?",null!=i[0]&&p.jsxs("span",{className:"ml-1 opacity-60",children:["(默认接「#",i[0],"」未连出口的尾节点)"]})]}),p.jsxs(Jt,{value:null==h?"none":String(h),onValueChange:e=>d("none"===e?null:Number(e)),children:[p.jsx(Qt,{children:p.jsx(es,{})}),p.jsxs(ts,{children:[p.jsx(ss,{value:"none",children:"不自动连接(之后手动配 next)"}),s.map(e=>p.jsxs(ss,{value:String(e),children:["接到 #",e," 之后",i.includes(e)&&"(推荐)"]},e))]})]})]})]}),p.jsxs("div",{className:"flex justify-end gap-2 pt-2",children:[p.jsx(W,{size:"sm",variant:"ghost",onClick:()=>t(!1),children:"取消"}),p.jsx(W,{size:"sm",onClick:u,children:"创建"})]})]})})}function Nn({def:e,onCancel:t,onSave:s}){const[i,r]=l.useState(()=>({...e,schemaVersion:2})),[n,o]=l.useState(!1),a=l.useRef({}),c=l.useMemo(()=>i.nodes.map(e=>e.id),[i.nodes]),h=l.useMemo(()=>i.nodes.filter(e=>"user-input"===e.kind||"llm"===e.kind?null===e.next:null==e.defaultGoto&&0===e.branches.length).map(e=>e.id),[i.nodes]),d=(e,t)=>{r(s=>({...s,nodes:s.nodes.map(s=>{if("user-input"===s.kind)return{...s,userInputSchema:{fields:s.userInputSchema.fields.map(s=>{if("variable"===t&&(s.outputVariable===e||s.bindVariable===e)){const{outputVariable:e,bindVariable:t,...i}=s;return i}if("constant"===t&&s.bindConstant===e){const{bindConstant:e,...t}=s;return t}return s})}};if("llm"===s.kind){const i={...s};return"variable"===t?(i.readVariables&&(i.readVariables=i.readVariables.filter(t=>t!==e)),i.writeVariables&&(i.writeVariables=i.writeVariables.filter(t=>t!==e))):i.readConstants&&(i.readConstants=i.readConstants.filter(t=>t!==e)),i}return"system-logic"===s.kind?{...s,branches:s.branches.filter(s=>"variable"===t?s.variable!==e:s.constant!==e)}:s})}))};return p.jsxs("div",{className:"flex-1 flex flex-col min-h-0 gap-3",children:[p.jsxs("div",{className:"grid grid-cols-2 gap-3 flex-shrink-0",children:[p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"流名称"}),p.jsx(V,{value:i.name,onChange:e=>r({...i,name:e.target.value}),className:"h-8"})]}),p.jsxs("div",{className:"space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"入口节点"}),p.jsxs(Jt,{value:String(i.entryNodeId),onValueChange:e=>r({...i,entryNodeId:Number(e)}),children:[p.jsx(Qt,{className:"h-8 text-xs",children:p.jsx(es,{})}),p.jsx(ts,{children:c.map(e=>p.jsxs(ss,{value:String(e),children:["#",e]},e))})]})]}),p.jsxs("div",{className:"col-span-2 space-y-1.5",children:[p.jsx(je,{className:"text-xs text-muted-foreground",children:"描述(可选)"}),p.jsx(V,{value:i.description??"",onChange:e=>r({...i,description:e.target.value}),className:"h-8"})]})]}),p.jsx(En,{constants:i.constants??[],onChange:e=>r({...i,constants:e}),onDelete:e=>{r(t=>({...t,constants:(t.constants??[]).filter(t=>t.name!==e)})),d(e,"constant")}}),p.jsx(jn,{variables:i.variables??[],constants:i.constants??[],onChange:e=>r({...i,variables:e}),onDelete:e=>{r(t=>({...t,variables:(t.variables??[]).filter(t=>t.name!==e)})),d(e,"variable")}}),p.jsx("div",{className:"flex-shrink-0 border border-border rounded-xl bg-muted/30",children:p.jsx(wn,{nodes:i.nodes,entryNodeId:i.entryNodeId,mode:"editor",onNodeClick:e=>{var t;null==(t=a.current[e])||t.scrollIntoView({behavior:"smooth",block:"center"})}})}),p.jsx("div",{className:"flex-1 min-h-0 overflow-y-auto space-y-3 pr-1",children:i.nodes.map(e=>p.jsx("div",{ref:t=>{a.current[e.id]=t},children:p.jsx(mn,{node:e,allIds:c,variables:i.variables??[],constants:i.constants??[],onChange:t=>((e,t)=>{r({...i,nodes:i.nodes.map(s=>s.id===e?t:s)})})(e.id,t),onDelete:()=>(e=>{if(i.nodes.length<=1)return;const t=i.nodes.filter(t=>t.id!==e).map(t=>"user-input"===t.kind||"llm"===t.kind?t.next===e?{...t,next:null}:t:{...t,branches:t.branches.filter(t=>t.goto!==e),defaultGoto:t.defaultGoto===e?null:t.defaultGoto??null});r({...i,nodes:t,entryNodeId:i.entryNodeId===e?t[0].id:i.entryNodeId})})(e.id)})},e.id))}),p.jsxs("div",{className:"flex-shrink-0 flex items-center gap-2 pt-2 border-t border-border",children:[p.jsxs(W,{size:"sm",variant:"outline",onClick:()=>o(!0),children:[p.jsx(K,{className:"h-4 w-4 mr-1"})," 添加节点"]}),p.jsx("div",{className:"flex-1"}),p.jsx(W,{size:"sm",variant:"ghost",onClick:t,children:"取消"}),p.jsx(W,{size:"sm",onClick:()=>s(i),children:"保存"})]}),p.jsx(kn,{open:n,onOpenChange:o,allIds:c,danglingPredecessors:h,onCreate:({name:e,kind:t,wireFrom:s})=>{const n=(Math.max(0,...c)||0)+1,o=function(e,t,s){return"user-input"===e?{id:t,name:s,kind:"user-input",userInputSchema:{fields:[{key:"",label:"",type:"text"}]},next:null}:"llm"===e?{id:t,name:s,kind:"llm",promptTemplate:"",timeoutSec:600,next:null}:{id:t,name:s,kind:"system-logic",branches:[],maxRetries:3,defaultGoto:null}}(t,n,e);let l=[...i.nodes,o];null!=s&&(l=l.map(e=>e.id!==s?e:"user-input"===e.kind||"llm"===e.kind?{...e,next:n}:{...e,defaultGoto:n})),r({...i,nodes:l}),setTimeout(()=>{var e;null==(e=a.current[n])||e.scrollIntoView({behavior:"smooth",block:"center"})},50)}})]})}function En({constants:e,onChange:t,onDelete:s}){const i=l.useMemo(()=>{const t=new Map;for(const s of e)t.set(s.name,(t.get(s.name)??0)+1);return t},[e]),r=(s,i)=>{t(e.map((e,t)=>s===t?{...e,...i}:e))};return p.jsxs("div",{className:"flex-shrink-0 border border-border rounded-xl bg-card p-3 space-y-2",children:[p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsx(je,{className:"text-sm font-medium",children:"常量"}),p.jsx("span",{className:"text-xs text-muted-foreground",children:"流定义时固定,运行时不可写。任意 JSON(字符串/数字/布尔/数组/对象)"}),p.jsx("div",{className:"flex-1"}),p.jsxs(W,{size:"sm",variant:"ghost",onClick:()=>t([...e,{name:"",value:"",description:""}]),className:"h-7 text-xs",children:[p.jsx(K,{className:"h-3.5 w-3.5 mr-1"})," 添加常量"]})]}),0===e.length&&p.jsx("p",{className:"text-xs text-muted-foreground italic px-1",children:"暂无常量。"}),e.map((n,o)=>{const a=!!n.name&&(i.get(n.name)??0)>1;return p.jsx(Mn,{name:n.name,value:n.value,description:n.description??"",duplicate:a,onChangeName:e=>r(o,{name:e.trim()}),onChangeValue:e=>r(o,{value:e}),onChangeDescription:e=>r(o,{description:e}),onRemove:()=>(i=>{const r=e[i];r.name?s(r.name):t(e.filter((e,t)=>t!==i))})(o)},o)})]})}function jn({variables:e,constants:t,onChange:s,onDelete:i}){const r=l.useMemo(()=>{const t=new Map;for(const s of e)t.set(s.name,(t.get(s.name)??0)+1);return t},[e]),n=l.useMemo(()=>new Set(t.map(e=>e.name)),[t]),o=(t,i)=>{s(e.map((e,s)=>t===s?{...e,...i}:e))};return p.jsxs("div",{className:"flex-shrink-0 border border-border rounded-xl bg-card p-3 space-y-2",children:[p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsx(je,{className:"text-sm font-medium",children:"变量"}),p.jsx("span",{className:"text-xs text-muted-foreground",children:"运行时可写。user-input 字段或 LLM 节点产出;任意 JSON"}),p.jsx("div",{className:"flex-1"}),p.jsxs(W,{size:"sm",variant:"ghost",onClick:()=>s([...e,{name:"",description:"",initialValue:void 0}]),className:"h-7 text-xs",children:[p.jsx(K,{className:"h-3.5 w-3.5 mr-1"})," 添加变量"]})]}),0===e.length&&p.jsx("p",{className:"text-xs text-muted-foreground italic px-1",children:"暂无变量。"}),e.map((t,a)=>{const l=!!t.name&&(r.get(t.name)??0)>1||n.has(t.name);return p.jsx(Mn,{name:t.name,value:t.initialValue,description:t.description,duplicate:l,valuePlaceholder:"初始值(可选,留空 = undefined)",onChangeName:e=>o(a,{name:e.trim()}),onChangeValue:e=>o(a,{initialValue:e}),onChangeDescription:e=>o(a,{description:e}),onRemove:()=>(t=>{const r=e[t];r.name?i(r.name):s(e.filter((e,s)=>s!==t))})(a)},a)})]})}function Mn({name:e,value:t,description:s,duplicate:i,valuePlaceholder:r,onChangeName:n,onChangeValue:o,onChangeDescription:a,onRemove:c}){const[h,d]=l.useState(()=>void 0===t?"":"string"==typeof t?t:JSON.stringify(t,null,2)),[u,f]=l.useState(!1);return p.jsx("div",{className:"space-y-1.5 rounded-md border border-border/60 p-2",children:p.jsxs("div",{className:"flex gap-1.5 items-start",children:[p.jsxs("div",{className:"flex flex-col gap-1.5 w-32",children:[p.jsx(V,{value:e,onChange:e=>n(e.target.value),placeholder:"名字",className:"h-8 font-mono text-xs "+(i?"border-destructive":"")}),i&&p.jsxs("span",{title:"名字冲突(与常量/变量重名)",className:"text-destructive flex items-center text-[10px]",children:[p.jsx(is,{className:"h-3 w-3 mr-1"}),"重名"]})]}),p.jsxs("div",{className:"flex-1 space-y-1",children:[p.jsx("textarea",{value:h,onChange:e=>d(e.target.value),onBlur:()=>{if(""===h.trim())return o(void 0),void f(!1);try{const e=JSON.parse(h);o(e),f(!1)}catch{o(h),f(!0)}},placeholder:r??'JSON 值(如 10, "hi", [1,2], {"k":"v"})',className:"w-full min-h-[32px] rounded-md border border-border bg-background px-2 py-1 text-xs font-mono resize-y outline-none focus:ring-2 focus:ring-ring/30",rows:1}),u&&p.jsx("span",{className:"text-[10px] text-amber-600 dark:text-amber-400",children:"非合法 JSON — 已按字符串字面量保存"})]}),p.jsx(V,{value:s,onChange:e=>a(e.target.value),placeholder:"含义(LLM 引用时使用)",className:"flex-1 h-8 text-xs"}),p.jsx(W,{size:"sm",variant:"ghost",onClick:c,className:"h-8 w-8 p-0",children:p.jsx(b,{className:"h-3.5 w-3.5"})})]})})}function Dn(e){return{schemaVersion:2,id:dn(),name:e,description:"",entryNodeId:1,constants:[],variables:[{name:"goal",description:"研究目标"}],nodes:[{id:1,name:"初始化",kind:"user-input",userInputSchema:{fields:[{key:"goal",label:"研究目标",type:"text",outputVariable:"goal"}]},next:null}]}}function Rn({projectId:e,open:t,onOpenChange:s}){const i=a(),[r,n]=l.useState("project"),[o,c]=l.useState([]),[h,d]=l.useState(!1),[u,m]=l.useState(null),[g,v]=l.useState(""),x=async(t=r)=>{d(!0);try{const s="global"===t?await un("GET","/api/global/flows"):await function(e){return un("GET",`/api/projects/${e}/flows`)}(e);c(s.files)}catch(s){f.error(s instanceof Error?s.message:"加载失败")}finally{d(!1)}};l.useEffect(()=>{t&&x(r)},[t,e,r]),l.useEffect(()=>{v("")},[r]);const y=()=>{const e=g.trim();if(!e)return void f.error("请输入流名称");const t=e.endsWith(".json")?e:`${e}.json`;m({filename:t,def:Dn(e.replace(/\.json$/,"")),source:r}),v("")},b=async t=>{try{const s="global"===r?await function(e){return un("GET",`/api/global/flows/file/${encodeURIComponent(e)}`)}(t):await fn(e,t);m({filename:t,def:s,source:r})}catch(s){f.error(s instanceof Error?s.message:"读取失败")}},w=async(t,s,i)=>{try{"global"===i?await function(e,t){return un("PUT",`/api/global/flows/file/${encodeURIComponent(e)}`,t)}(t,s):await function(e,t,s){return un("PUT",`/api/projects/${e}/flows/file/${encodeURIComponent(t)}`,s)}(e,t,s),f.success("已保存"),m(null),x()}catch(r){f.error(r instanceof Error?r.message:"保存失败")}},S=async t=>{const s="global"===r?"全局任务流":"任务流";if(await i({description:`删除${s} ${t}?此操作不可恢复。`,confirmLabel:"删除",destructive:!0}))try{"global"===r?await function(e){return un("DELETE",`/api/global/flows/file/${encodeURIComponent(e)}`)}(t):await function(e,t){return un("DELETE",`/api/projects/${e}/flows/file/${encodeURIComponent(t)}`)}(e,t),f.success("已删除"),x()}catch(n){f.error(n instanceof Error?n.message:"删除失败")}},C=async t=>{try{await function(e,t,s="project"){return un("POST",`/api/projects/${e}/flows/run`,{filename:t,source:s})}(e,t,r),f.success("任务流已启动"),s(!1)}catch(i){f.error(i instanceof Error?i.message:"启动失败")}};if(u){const e="global"===u.source?"(全局)":"";return p.jsx(Se,{open:t,onOpenChange:s,children:p.jsxs(Ce,{className:"max-w-4xl h-[80vh] flex flex-col",children:[p.jsx(ke,{children:p.jsxs(Ne,{children:["编辑任务流",e," · ",u.filename]})}),p.jsx(Nn,{def:u.def,onCancel:()=>m(null),onSave:e=>w(u.filename,e,u.source)})]})})}return p.jsx(Se,{open:t,onOpenChange:s,children:p.jsxs(Ce,{className:"max-w-2xl",children:[p.jsx(ke,{children:p.jsx(Ne,{className:"text-lg font-semibold",children:"任务流"})}),p.jsx(zt,{value:r,onValueChange:e=>n(e),children:p.jsxs($t,{children:[p.jsx(Ht,{value:"project",children:"项目流"}),p.jsx(Ht,{value:"global",children:"我的全局流"})]})}),"global"===r&&p.jsx("p",{className:"text-xs text-muted-foreground",children:"全局流是可复用的模板,运行时仍绑定到当前项目(PTY 与文件路径来自该项目)。"}),p.jsxs("div",{className:"flex gap-2 items-center",children:[p.jsx(V,{placeholder:"global"===r?"新全局流名称":"新流名称(例:research)",value:g,onChange:e=>v(e.target.value),onKeyDown:e=>{"Enter"===e.key&&y()},className:"flex-1"}),p.jsxs(W,{onClick:y,size:"sm",children:[p.jsx(K,{className:"h-4 w-4 mr-1"})," 新建"]}),p.jsx(W,{onClick:()=>x(),size:"sm",variant:"ghost",disabled:h,children:p.jsx(P,{className:"h-4 w-4 "+(h?"animate-spin":"")})})]}),p.jsxs("div",{className:"space-y-1 max-h-[55vh] overflow-y-auto",children:[0===o.length&&!h&&p.jsx("p",{className:"text-sm text-muted-foreground py-8 text-center",children:"global"===r?"暂无全局任务流。新建一个开始。":"暂无任务流。新建一个开始。"}),o.map(e=>p.jsxs("div",{className:"flex items-center gap-2 px-3 py-2 rounded-md border border-border hover:bg-accent transition-colors",children:[p.jsx("span",{className:"flex-1 text-sm font-mono truncate",title:e,children:e}),p.jsx(W,{size:"sm",variant:"ghost",onClick:()=>C(e),title:"运行",children:p.jsx(js,{className:"h-4 w-4"})}),p.jsx(W,{size:"sm",variant:"ghost",onClick:()=>b(e),title:"编辑",children:p.jsx(_,{className:"h-4 w-4"})}),p.jsx(W,{size:"sm",variant:"ghost",onClick:()=>S(e),title:"删除",children:p.jsx(R,{className:"h-4 w-4"})})]},e))]})]})})}async function Pn(e,t,s){const i={"Content-Type":"application/json"},r=h();r&&(i.Authorization=`Bearer ${r}`);const n=await fetch(t,{method:e,headers:i,body:void 0!==s?JSON.stringify(s):void 0});if(!n.ok){let e=`HTTP ${n.status}`;try{const t=await n.json();t.error&&(e=t.error)}catch{}throw new Error(e)}return n.json()}function Ln(e,t,s,i){return Pn("PUT",`/api/projects/${e}/track-flows/file/${encodeURIComponent(t)}`,void 0!==i?{flow:s,trainJson:i}:{flow:s})}function Tn(e,t,s){return Pn("POST",`/api/projects/${e}/track-flows/file/${encodeURIComponent(t)}/cancel`,s?{runId:s}:{})}function In(e){return`${e}_${"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID().replace(/-/g,"").slice(0,6):Math.random().toString(36).slice(2,8)}`}function Bn(e,t="claude-code"){return{version:3,trackName:e,adapter:t,variables:[],nodes:[],edges:[]}}function On(e){const t={};for(const s of e)t[s.key]=s.initialValue??null;return t}function An(e){if("string"==typeof e||"number"==typeof e)return""+e;let t="";if(Array.isArray(e))for(let s,i=0;i<e.length;i++)""!==(s=An(e[i]))&&(t+=(t&&" ")+s);else for(let s in e)e[s]&&(t+=(t&&" ")+s);return t}var zn={exports:{}},$n={},Hn=l,Wn=Ue;var Fn="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},Kn=Wn.useSyncExternalStore,Vn=Hn.useRef,Un=Hn.useEffect,qn=Hn.useMemo,Yn=Hn.useDebugValue;$n.useSyncExternalStoreWithSelector=function(e,t,s,i,r){var n=Vn(null);if(null===n.current){var o={hasValue:!1,value:null};n.current=o}else o=n.current;n=qn(function(){function e(e){if(!l){if(l=!0,n=e,e=i(e),void 0!==r&&o.hasValue){var t=o.value;if(r(t,e))return a=t}return a=e}if(t=a,Fn(n,e))return t;var s=i(e);return void 0!==r&&r(t,s)?(n=e,t):(n=e,a=s)}var n,a,l=!1,c=void 0===s?null:s;return[function(){return e(t())},null===c?void 0:function(){return e(c())}]},[t,s,i,r]);var a=Kn(e,n[0],n[1]);return Un(function(){o.hasValue=!0,o.value=a},[a]),Yn(a),a},zn.exports=$n;const Xn=qe(zn.exports),Gn={},Zn=e=>{let t;const s=new Set,i=(e,i)=>{const r="function"==typeof e?e(t):e;if(!Object.is(r,t)){const e=t;t=(null!=i?i:"object"!=typeof r||null===r)?r:Object.assign({},t,r),s.forEach(s=>s(t,e))}},r=()=>t,n={setState:i,getState:r,getInitialState:()=>o,subscribe:e=>(s.add(e),()=>s.delete(e)),destroy:()=>{"production"!==(Gn?"production":void 0)&&console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),s.clear()}},o=t=e(i,r,n);return n},{useDebugValue:Jn}=k,{useSyncExternalStoreWithSelector:Qn}=Xn,eo=e=>e;function to(e,t=eo,s){const i=Qn(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,s);return Jn(i),i}const so=(e,t)=>{const s=(e=>e?Zn(e):Zn)(e),i=(e,i=t)=>to(s,e,i);return Object.assign(i,s),i};function io(e,t){if(Object.is(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[s,i]of e)if(!Object.is(i,t.get(s)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const s of e)if(!t.has(s))return!1;return!0}const s=Object.keys(e);if(s.length!==Object.keys(t).length)return!1;for(const i of s)if(!Object.prototype.hasOwnProperty.call(t,i)||!Object.is(e[i],t[i]))return!1;return!0}var ro={value:()=>{}};function no(){for(var e,t=0,s=arguments.length,i={};t<s;++t){if(!(e=arguments[t]+"")||e in i||/[\s.]/.test(e))throw new Error("illegal type: "+e);i[e]=[]}return new oo(i)}function oo(e){this._=e}function ao(e,t){for(var s,i=0,r=e.length;i<r;++i)if((s=e[i]).name===t)return s.value}function lo(e,t,s){for(var i=0,r=e.length;i<r;++i)if(e[i].name===t){e[i]=ro,e=e.slice(0,i).concat(e.slice(i+1));break}return null!=s&&e.push({name:t,value:s}),e}oo.prototype=no.prototype={constructor:oo,on:function(e,t){var s,i,r=this._,n=(i=r,(e+"").trim().split(/^|\s+/).map(function(e){var t="",s=e.indexOf(".");if(s>=0&&(t=e.slice(s+1),e=e.slice(0,s)),e&&!i.hasOwnProperty(e))throw new Error("unknown type: "+e);return{type:e,name:t}})),o=-1,a=n.length;if(!(arguments.length<2)){if(null!=t&&"function"!=typeof t)throw new Error("invalid callback: "+t);for(;++o<a;)if(s=(e=n[o]).type)r[s]=lo(r[s],e.name,t);else if(null==t)for(s in r)r[s]=lo(r[s],e.name,null);return this}for(;++o<a;)if((s=(e=n[o]).type)&&(s=ao(r[s],e.name)))return s},copy:function(){var e={},t=this._;for(var s in t)e[s]=t[s].slice();return new oo(e)},call:function(e,t){if((s=arguments.length-2)>0)for(var s,i,r=new Array(s),n=0;n<s;++n)r[n]=arguments[n+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(n=0,s=(i=this._[e]).length;n<s;++n)i[n].value.apply(t,r)},apply:function(e,t,s){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var i=this._[e],r=0,n=i.length;r<n;++r)i[r].value.apply(t,s)}};var co="http://www.w3.org/1999/xhtml";const ho={svg:"http://www.w3.org/2000/svg",xhtml:co,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function uo(e){var t=e+="",s=t.indexOf(":");return s>=0&&"xmlns"!==(t=e.slice(0,s))&&(e=e.slice(s+1)),ho.hasOwnProperty(t)?{space:ho[t],local:e}:e}function fo(e){return function(){var t=this.ownerDocument,s=this.namespaceURI;return s===co&&t.documentElement.namespaceURI===co?t.createElement(e):t.createElementNS(s,e)}}function po(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function mo(e){var t=uo(e);return(t.local?po:fo)(t)}function go(){}function _o(e){return null==e?go:function(){return this.querySelector(e)}}function vo(){return[]}function xo(e){return null==e?vo:function(){return this.querySelectorAll(e)}}function yo(e){return function(){return null==(t=e.apply(this,arguments))?[]:Array.isArray(t)?t:Array.from(t);var t}}function bo(e){return function(){return this.matches(e)}}function wo(e){return function(t){return t.matches(e)}}var So=Array.prototype.find;function Co(){return this.firstElementChild}var ko=Array.prototype.filter;function No(){return Array.from(this.children)}function Eo(e){return new Array(e.length)}function jo(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}function Mo(e,t,s,i,r,n){for(var o,a=0,l=t.length,c=n.length;a<c;++a)(o=t[a])?(o.__data__=n[a],i[a]=o):s[a]=new jo(e,n[a]);for(;a<l;++a)(o=t[a])&&(r[a]=o)}function Do(e,t,s,i,r,n,o){var a,l,c,h=new Map,d=t.length,u=n.length,f=new Array(d);for(a=0;a<d;++a)(l=t[a])&&(f[a]=c=o.call(l,l.__data__,a,t)+"",h.has(c)?r[a]=l:h.set(c,l));for(a=0;a<u;++a)c=o.call(e,n[a],a,n)+"",(l=h.get(c))?(i[a]=l,l.__data__=n[a],h.delete(c)):s[a]=new jo(e,n[a]);for(a=0;a<d;++a)(l=t[a])&&h.get(f[a])===l&&(r[a]=l)}function Ro(e){return e.__data__}function Po(e){return"object"==typeof e&&"length"in e?e:Array.from(e)}function Lo(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function To(e){return function(){this.removeAttribute(e)}}function Io(e){return function(){this.removeAttributeNS(e.space,e.local)}}function Bo(e,t){return function(){this.setAttribute(e,t)}}function Oo(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function Ao(e,t){return function(){var s=t.apply(this,arguments);null==s?this.removeAttribute(e):this.setAttribute(e,s)}}function zo(e,t){return function(){var s=t.apply(this,arguments);null==s?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,s)}}function $o(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function Ho(e){return function(){this.style.removeProperty(e)}}function Wo(e,t,s){return function(){this.style.setProperty(e,t,s)}}function Fo(e,t,s){return function(){var i=t.apply(this,arguments);null==i?this.style.removeProperty(e):this.style.setProperty(e,i,s)}}function Ko(e,t){return e.style.getPropertyValue(t)||$o(e).getComputedStyle(e,null).getPropertyValue(t)}function Vo(e){return function(){delete this[e]}}function Uo(e,t){return function(){this[e]=t}}function qo(e,t){return function(){var s=t.apply(this,arguments);null==s?delete this[e]:this[e]=s}}function Yo(e){return e.trim().split(/^|\s+/)}function Xo(e){return e.classList||new Go(e)}function Go(e){this._node=e,this._names=Yo(e.getAttribute("class")||"")}function Zo(e,t){for(var s=Xo(e),i=-1,r=t.length;++i<r;)s.add(t[i])}function Jo(e,t){for(var s=Xo(e),i=-1,r=t.length;++i<r;)s.remove(t[i])}function Qo(e){return function(){Zo(this,e)}}function ea(e){return function(){Jo(this,e)}}function ta(e,t){return function(){(t.apply(this,arguments)?Zo:Jo)(this,e)}}function sa(){this.textContent=""}function ia(e){return function(){this.textContent=e}}function ra(e){return function(){var t=e.apply(this,arguments);this.textContent=null==t?"":t}}function na(){this.innerHTML=""}function oa(e){return function(){this.innerHTML=e}}function aa(e){return function(){var t=e.apply(this,arguments);this.innerHTML=null==t?"":t}}function la(){this.nextSibling&&this.parentNode.appendChild(this)}function ca(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function ha(){return null}function da(){var e=this.parentNode;e&&e.removeChild(this)}function ua(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function fa(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function pa(e){return function(){var t=this.__on;if(t){for(var s,i=0,r=-1,n=t.length;i<n;++i)s=t[i],e.type&&s.type!==e.type||s.name!==e.name?t[++r]=s:this.removeEventListener(s.type,s.listener,s.options);++r?t.length=r:delete this.__on}}}function ma(e,t,s){return function(){var i,r=this.__on,n=function(e){return function(t){e.call(this,t,this.__data__)}}(t);if(r)for(var o=0,a=r.length;o<a;++o)if((i=r[o]).type===e.type&&i.name===e.name)return this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=n,i.options=s),void(i.value=t);this.addEventListener(e.type,n,s),i={type:e.type,name:e.name,value:t,listener:n,options:s},r?r.push(i):this.__on=[i]}}function ga(e,t,s){var i=$o(e),r=i.CustomEvent;"function"==typeof r?r=new r(t,s):(r=i.document.createEvent("Event"),s?(r.initEvent(t,s.bubbles,s.cancelable),r.detail=s.detail):r.initEvent(t,!1,!1)),e.dispatchEvent(r)}function _a(e,t){return function(){return ga(this,e,t)}}function va(e,t){return function(){return ga(this,e,t.apply(this,arguments))}}jo.prototype={constructor:jo,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}},Go.prototype={add:function(e){this._names.indexOf(e)<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};var xa=[null];function ya(e,t){this._groups=e,this._parents=t}function ba(){return new ya([[document.documentElement]],xa)}function wa(e){return"string"==typeof e?new ya([[document.querySelector(e)]],[document.documentElement]):new ya([[e]],xa)}function Sa(e,t){if(e=function(e){let t;for(;t=e.sourceEvent;)e=t;return e}(e),void 0===t&&(t=e.currentTarget),t){var s=t.ownerSVGElement||t;if(s.createSVGPoint){var i=s.createSVGPoint();return i.x=e.clientX,i.y=e.clientY,[(i=i.matrixTransform(t.getScreenCTM().inverse())).x,i.y]}if(t.getBoundingClientRect){var r=t.getBoundingClientRect();return[e.clientX-r.left-t.clientLeft,e.clientY-r.top-t.clientTop]}}return[e.pageX,e.pageY]}ya.prototype=ba.prototype={constructor:ya,select:function(e){"function"!=typeof e&&(e=_o(e));for(var t=this._groups,s=t.length,i=new Array(s),r=0;r<s;++r)for(var n,o,a=t[r],l=a.length,c=i[r]=new Array(l),h=0;h<l;++h)(n=a[h])&&(o=e.call(n,n.__data__,h,a))&&("__data__"in n&&(o.__data__=n.__data__),c[h]=o);return new ya(i,this._parents)},selectAll:function(e){e="function"==typeof e?yo(e):xo(e);for(var t=this._groups,s=t.length,i=[],r=[],n=0;n<s;++n)for(var o,a=t[n],l=a.length,c=0;c<l;++c)(o=a[c])&&(i.push(e.call(o,o.__data__,c,a)),r.push(o));return new ya(i,r)},selectChild:function(e){return this.select(null==e?Co:function(e){return function(){return So.call(this.children,e)}}("function"==typeof e?e:wo(e)))},selectChildren:function(e){return this.selectAll(null==e?No:function(e){return function(){return ko.call(this.children,e)}}("function"==typeof e?e:wo(e)))},filter:function(e){"function"!=typeof e&&(e=bo(e));for(var t=this._groups,s=t.length,i=new Array(s),r=0;r<s;++r)for(var n,o=t[r],a=o.length,l=i[r]=[],c=0;c<a;++c)(n=o[c])&&e.call(n,n.__data__,c,o)&&l.push(n);return new ya(i,this._parents)},data:function(e,t){if(!arguments.length)return Array.from(this,Ro);var s,i=t?Do:Mo,r=this._parents,n=this._groups;"function"!=typeof e&&(s=e,e=function(){return s});for(var o=n.length,a=new Array(o),l=new Array(o),c=new Array(o),h=0;h<o;++h){var d=r[h],u=n[h],f=u.length,p=Po(e.call(d,d&&d.__data__,h,r)),m=p.length,g=l[h]=new Array(m),_=a[h]=new Array(m);i(d,u,g,_,c[h]=new Array(f),p,t);for(var v,x,y=0,b=0;y<m;++y)if(v=g[y]){for(y>=b&&(b=y+1);!(x=_[b])&&++b<m;);v._next=x||null}}return(a=new ya(a,r))._enter=l,a._exit=c,a},enter:function(){return new ya(this._enter||this._groups.map(Eo),this._parents)},exit:function(){return new ya(this._exit||this._groups.map(Eo),this._parents)},join:function(e,t,s){var i=this.enter(),r=this,n=this.exit();return"function"==typeof e?(i=e(i))&&(i=i.selection()):i=i.append(e+""),null!=t&&(r=t(r))&&(r=r.selection()),null==s?n.remove():s(n),i&&r?i.merge(r).order():r},merge:function(e){for(var t=e.selection?e.selection():e,s=this._groups,i=t._groups,r=s.length,n=i.length,o=Math.min(r,n),a=new Array(r),l=0;l<o;++l)for(var c,h=s[l],d=i[l],u=h.length,f=a[l]=new Array(u),p=0;p<u;++p)(c=h[p]||d[p])&&(f[p]=c);for(;l<r;++l)a[l]=s[l];return new ya(a,this._parents)},selection:function(){return this},order:function(){for(var e=this._groups,t=-1,s=e.length;++t<s;)for(var i,r=e[t],n=r.length-1,o=r[n];--n>=0;)(i=r[n])&&(o&&4^i.compareDocumentPosition(o)&&o.parentNode.insertBefore(i,o),o=i);return this},sort:function(e){function t(t,s){return t&&s?e(t.__data__,s.__data__):!t-!s}e||(e=Lo);for(var s=this._groups,i=s.length,r=new Array(i),n=0;n<i;++n){for(var o,a=s[n],l=a.length,c=r[n]=new Array(l),h=0;h<l;++h)(o=a[h])&&(c[h]=o);c.sort(t)}return new ya(r,this._parents).order()},call:function(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this},nodes:function(){return Array.from(this)},node:function(){for(var e=this._groups,t=0,s=e.length;t<s;++t)for(var i=e[t],r=0,n=i.length;r<n;++r){var o=i[r];if(o)return o}return null},size:function(){let e=0;for(const t of this)++e;return e},empty:function(){return!this.node()},each:function(e){for(var t=this._groups,s=0,i=t.length;s<i;++s)for(var r,n=t[s],o=0,a=n.length;o<a;++o)(r=n[o])&&e.call(r,r.__data__,o,n);return this},attr:function(e,t){var s=uo(e);if(arguments.length<2){var i=this.node();return s.local?i.getAttributeNS(s.space,s.local):i.getAttribute(s)}return this.each((null==t?s.local?Io:To:"function"==typeof t?s.local?zo:Ao:s.local?Oo:Bo)(s,t))},style:function(e,t,s){return arguments.length>1?this.each((null==t?Ho:"function"==typeof t?Fo:Wo)(e,t,null==s?"":s)):Ko(this.node(),e)},property:function(e,t){return arguments.length>1?this.each((null==t?Vo:"function"==typeof t?qo:Uo)(e,t)):this.node()[e]},classed:function(e,t){var s=Yo(e+"");if(arguments.length<2){for(var i=Xo(this.node()),r=-1,n=s.length;++r<n;)if(!i.contains(s[r]))return!1;return!0}return this.each(("function"==typeof t?ta:t?Qo:ea)(s,t))},text:function(e){return arguments.length?this.each(null==e?sa:("function"==typeof e?ra:ia)(e)):this.node().textContent},html:function(e){return arguments.length?this.each(null==e?na:("function"==typeof e?aa:oa)(e)):this.node().innerHTML},raise:function(){return this.each(la)},lower:function(){return this.each(ca)},append:function(e){var t="function"==typeof e?e:mo(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})},insert:function(e,t){var s="function"==typeof e?e:mo(e),i=null==t?ha:"function"==typeof t?t:_o(t);return this.select(function(){return this.insertBefore(s.apply(this,arguments),i.apply(this,arguments)||null)})},remove:function(){return this.each(da)},clone:function(e){return this.select(e?fa:ua)},datum:function(e){return arguments.length?this.property("__data__",e):this.node().__data__},on:function(e,t,s){var i,r,n=function(e){return e.trim().split(/^|\s+/).map(function(e){var t="",s=e.indexOf(".");return s>=0&&(t=e.slice(s+1),e=e.slice(0,s)),{type:e,name:t}})}(e+""),o=n.length;if(!(arguments.length<2)){for(a=t?ma:pa,i=0;i<o;++i)this.each(a(n[i],t,s));return this}var a=this.node().__on;if(a)for(var l,c=0,h=a.length;c<h;++c)for(i=0,l=a[c];i<o;++i)if((r=n[i]).type===l.type&&r.name===l.name)return l.value},dispatch:function(e,t){return this.each(("function"==typeof t?va:_a)(e,t))},[Symbol.iterator]:function*(){for(var e=this._groups,t=0,s=e.length;t<s;++t)for(var i,r=e[t],n=0,o=r.length;n<o;++n)(i=r[n])&&(yield i)}};const Ca={passive:!1},ka={capture:!0,passive:!1};function Na(e){e.stopImmediatePropagation()}function Ea(e){e.preventDefault(),e.stopImmediatePropagation()}function ja(e){var t=e.document.documentElement,s=wa(e).on("dragstart.drag",Ea,ka);"onselectstart"in t?s.on("selectstart.drag",Ea,ka):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect="none")}function Ma(e,t){var s=e.document.documentElement,i=wa(e).on("dragstart.drag",null);t&&(i.on("click.drag",Ea,ka),setTimeout(function(){i.on("click.drag",null)},0)),"onselectstart"in s?i.on("selectstart.drag",null):(s.style.MozUserSelect=s.__noselect,delete s.__noselect)}const Da=e=>()=>e;function Ra(e,{sourceEvent:t,subject:s,target:i,identifier:r,active:n,x:o,y:a,dx:l,dy:c,dispatch:h}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},subject:{value:s,enumerable:!0,configurable:!0},target:{value:i,enumerable:!0,configurable:!0},identifier:{value:r,enumerable:!0,configurable:!0},active:{value:n,enumerable:!0,configurable:!0},x:{value:o,enumerable:!0,configurable:!0},y:{value:a,enumerable:!0,configurable:!0},dx:{value:l,enumerable:!0,configurable:!0},dy:{value:c,enumerable:!0,configurable:!0},_:{value:h}})}function Pa(e){return!e.ctrlKey&&!e.button}function La(){return this.parentNode}function Ta(e,t){return null==t?{x:e.x,y:e.y}:t}function Ia(){return navigator.maxTouchPoints||"ontouchstart"in this}function Ba(e,t,s){e.prototype=t.prototype=s,s.constructor=e}function Oa(e,t){var s=Object.create(e.prototype);for(var i in t)s[i]=t[i];return s}function Aa(){}Ra.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};var za=.7,$a=1/za,Ha="\\s*([+-]?\\d+)\\s*",Wa="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Fa="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Ka=/^#([0-9a-f]{3,8})$/,Va=new RegExp(`^rgb\\(${Ha},${Ha},${Ha}\\)$`),Ua=new RegExp(`^rgb\\(${Fa},${Fa},${Fa}\\)$`),qa=new RegExp(`^rgba\\(${Ha},${Ha},${Ha},${Wa}\\)$`),Ya=new RegExp(`^rgba\\(${Fa},${Fa},${Fa},${Wa}\\)$`),Xa=new RegExp(`^hsl\\(${Wa},${Fa},${Fa}\\)$`),Ga=new RegExp(`^hsla\\(${Wa},${Fa},${Fa},${Wa}\\)$`),Za={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function Ja(){return this.rgb().formatHex()}function Qa(){return this.rgb().formatRgb()}function el(e){var t,s;return e=(e+"").trim().toLowerCase(),(t=Ka.exec(e))?(s=t[1].length,t=parseInt(t[1],16),6===s?tl(t):3===s?new rl(t>>8&15|t>>4&240,t>>4&15|240&t,(15&t)<<4|15&t,1):8===s?sl(t>>24&255,t>>16&255,t>>8&255,(255&t)/255):4===s?sl(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|240&t,((15&t)<<4|15&t)/255):null):(t=Va.exec(e))?new rl(t[1],t[2],t[3],1):(t=Ua.exec(e))?new rl(255*t[1]/100,255*t[2]/100,255*t[3]/100,1):(t=qa.exec(e))?sl(t[1],t[2],t[3],t[4]):(t=Ya.exec(e))?sl(255*t[1]/100,255*t[2]/100,255*t[3]/100,t[4]):(t=Xa.exec(e))?hl(t[1],t[2]/100,t[3]/100,1):(t=Ga.exec(e))?hl(t[1],t[2]/100,t[3]/100,t[4]):Za.hasOwnProperty(e)?tl(Za[e]):"transparent"===e?new rl(NaN,NaN,NaN,0):null}function tl(e){return new rl(e>>16&255,e>>8&255,255&e,1)}function sl(e,t,s,i){return i<=0&&(e=t=s=NaN),new rl(e,t,s,i)}function il(e,t,s,i){return 1===arguments.length?((r=e)instanceof Aa||(r=el(r)),r?new rl((r=r.rgb()).r,r.g,r.b,r.opacity):new rl):new rl(e,t,s,null==i?1:i);var r}function rl(e,t,s,i){this.r=+e,this.g=+t,this.b=+s,this.opacity=+i}function nl(){return`#${cl(this.r)}${cl(this.g)}${cl(this.b)}`}function ol(){const e=al(this.opacity);return`${1===e?"rgb(":"rgba("}${ll(this.r)}, ${ll(this.g)}, ${ll(this.b)}${1===e?")":`, ${e})`}`}function al(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function ll(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function cl(e){return((e=ll(e))<16?"0":"")+e.toString(16)}function hl(e,t,s,i){return i<=0?e=t=s=NaN:s<=0||s>=1?e=t=NaN:t<=0&&(e=NaN),new ul(e,t,s,i)}function dl(e){if(e instanceof ul)return new ul(e.h,e.s,e.l,e.opacity);if(e instanceof Aa||(e=el(e)),!e)return new ul;if(e instanceof ul)return e;var t=(e=e.rgb()).r/255,s=e.g/255,i=e.b/255,r=Math.min(t,s,i),n=Math.max(t,s,i),o=NaN,a=n-r,l=(n+r)/2;return a?(o=t===n?(s-i)/a+6*(s<i):s===n?(i-t)/a+2:(t-s)/a+4,a/=l<.5?n+r:2-n-r,o*=60):a=l>0&&l<1?0:o,new ul(o,a,l,e.opacity)}function ul(e,t,s,i){this.h=+e,this.s=+t,this.l=+s,this.opacity=+i}function fl(e){return(e=(e||0)%360)<0?e+360:e}function pl(e){return Math.max(0,Math.min(1,e||0))}function ml(e,t,s){return 255*(e<60?t+(s-t)*e/60:e<180?s:e<240?t+(s-t)*(240-e)/60:t)}Ba(Aa,el,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Ja,formatHex:Ja,formatHex8:function(){return this.rgb().formatHex8()},formatHsl:function(){return dl(this).formatHsl()},formatRgb:Qa,toString:Qa}),Ba(rl,il,Oa(Aa,{brighter(e){return e=null==e?$a:Math.pow($a,e),new rl(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=null==e?za:Math.pow(za,e),new rl(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new rl(ll(this.r),ll(this.g),ll(this.b),al(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:nl,formatHex:nl,formatHex8:function(){return`#${cl(this.r)}${cl(this.g)}${cl(this.b)}${cl(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:ol,toString:ol})),Ba(ul,function(e,t,s,i){return 1===arguments.length?dl(e):new ul(e,t,s,null==i?1:i)},Oa(Aa,{brighter(e){return e=null==e?$a:Math.pow($a,e),new ul(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=null==e?za:Math.pow(za,e),new ul(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+360*(this.h<0),t=isNaN(e)||isNaN(this.s)?0:this.s,s=this.l,i=s+(s<.5?s:1-s)*t,r=2*s-i;return new rl(ml(e>=240?e-240:e+120,r,i),ml(e,r,i),ml(e<120?e+240:e-120,r,i),this.opacity)},clamp(){return new ul(fl(this.h),pl(this.s),pl(this.l),al(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=al(this.opacity);return`${1===e?"hsl(":"hsla("}${fl(this.h)}, ${100*pl(this.s)}%, ${100*pl(this.l)}%${1===e?")":`, ${e})`}`}}));const gl=e=>()=>e;function _l(e){return 1===(e=+e)?vl:function(t,s){return s-t?function(e,t,s){return e=Math.pow(e,s),t=Math.pow(t,s)-e,s=1/s,function(i){return Math.pow(e+i*t,s)}}(t,s,e):gl(isNaN(t)?s:t)}}function vl(e,t){var s=t-e;return s?function(e,t){return function(s){return e+s*t}}(e,s):gl(isNaN(e)?t:e)}const xl=function e(t){var s=_l(t);function i(e,t){var i=s((e=il(e)).r,(t=il(t)).r),r=s(e.g,t.g),n=s(e.b,t.b),o=vl(e.opacity,t.opacity);return function(t){return e.r=i(t),e.g=r(t),e.b=n(t),e.opacity=o(t),e+""}}return i.gamma=e,i}(1);function yl(e,t){return e=+e,t=+t,function(s){return e*(1-s)+t*s}}var bl=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,wl=new RegExp(bl.source,"g");function Sl(e,t){var s,i,r,n=bl.lastIndex=wl.lastIndex=0,o=-1,a=[],l=[];for(e+="",t+="";(s=bl.exec(e))&&(i=wl.exec(t));)(r=i.index)>n&&(r=t.slice(n,r),a[o]?a[o]+=r:a[++o]=r),(s=s[0])===(i=i[0])?a[o]?a[o]+=i:a[++o]=i:(a[++o]=null,l.push({i:o,x:yl(s,i)})),n=wl.lastIndex;return n<t.length&&(r=t.slice(n),a[o]?a[o]+=r:a[++o]=r),a.length<2?l[0]?function(e){return function(t){return e(t)+""}}(l[0].x):function(e){return function(){return e}}(t):(t=l.length,function(e){for(var s,i=0;i<t;++i)a[(s=l[i]).i]=s.x(e);return a.join("")})}var Cl,kl=180/Math.PI,Nl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function El(e,t,s,i,r,n){var o,a,l;return(o=Math.sqrt(e*e+t*t))&&(e/=o,t/=o),(l=e*s+t*i)&&(s-=e*l,i-=t*l),(a=Math.sqrt(s*s+i*i))&&(s/=a,i/=a,l/=a),e*i<t*s&&(e=-e,t=-t,l=-l,o=-o),{translateX:r,translateY:n,rotate:Math.atan2(t,e)*kl,skewX:Math.atan(l)*kl,scaleX:o,scaleY:a}}function jl(e,t,s,i){function r(e){return e.length?e.pop()+" ":""}return function(n,o){var a=[],l=[];return n=e(n),o=e(o),function(e,i,r,n,o,a){if(e!==r||i!==n){var l=o.push("translate(",null,t,null,s);a.push({i:l-4,x:yl(e,r)},{i:l-2,x:yl(i,n)})}else(r||n)&&o.push("translate("+r+t+n+s)}(n.translateX,n.translateY,o.translateX,o.translateY,a,l),function(e,t,s,n){e!==t?(e-t>180?t+=360:t-e>180&&(e+=360),n.push({i:s.push(r(s)+"rotate(",null,i)-2,x:yl(e,t)})):t&&s.push(r(s)+"rotate("+t+i)}(n.rotate,o.rotate,a,l),function(e,t,s,n){e!==t?n.push({i:s.push(r(s)+"skewX(",null,i)-2,x:yl(e,t)}):t&&s.push(r(s)+"skewX("+t+i)}(n.skewX,o.skewX,a,l),function(e,t,s,i,n,o){if(e!==s||t!==i){var a=n.push(r(n)+"scale(",null,",",null,")");o.push({i:a-4,x:yl(e,s)},{i:a-2,x:yl(t,i)})}else 1===s&&1===i||n.push(r(n)+"scale("+s+","+i+")")}(n.scaleX,n.scaleY,o.scaleX,o.scaleY,a,l),n=o=null,function(e){for(var t,s=-1,i=l.length;++s<i;)a[(t=l[s]).i]=t.x(e);return a.join("")}}}var Ml=jl(function(e){const t=new("function"==typeof DOMMatrix?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?Nl:El(t.a,t.b,t.c,t.d,t.e,t.f)},"px, ","px)","deg)"),Dl=jl(function(e){return null==e?Nl:(Cl||(Cl=document.createElementNS("http://www.w3.org/2000/svg","g")),Cl.setAttribute("transform",e),(e=Cl.transform.baseVal.consolidate())?El((e=e.matrix).a,e.b,e.c,e.d,e.e,e.f):Nl)},", ",")",")");function Rl(e){return((e=Math.exp(e))+1/e)/2}const Pl=function e(t,s,i){function r(e,r){var n,o,a=e[0],l=e[1],c=e[2],h=r[0],d=r[1],u=r[2],f=h-a,p=d-l,m=f*f+p*p;if(m<1e-12)o=Math.log(u/c)/t,n=function(e){return[a+e*f,l+e*p,c*Math.exp(t*e*o)]};else{var g=Math.sqrt(m),_=(u*u-c*c+i*m)/(2*c*s*g),v=(u*u-c*c-i*m)/(2*u*s*g),x=Math.log(Math.sqrt(_*_+1)-_),y=Math.log(Math.sqrt(v*v+1)-v);o=(y-x)/t,n=function(e){var i,r=e*o,n=Rl(x),h=c/(s*g)*(n*(i=t*r+x,((i=Math.exp(2*i))-1)/(i+1))-function(e){return((e=Math.exp(e))-1/e)/2}(x));return[a+h*f,l+h*p,c*n/Rl(t*r+x)]}}return n.duration=1e3*o*t/Math.SQRT2,n}return r.rho=function(t){var s=Math.max(.001,+t),i=s*s;return e(s,i,i*i)},r}(Math.SQRT2,2,4);var Ll,Tl,Il=0,Bl=0,Ol=0,Al=0,zl=0,$l=0,Hl="object"==typeof performance&&performance.now?performance:Date,Wl="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function Fl(){return zl||(Wl(Kl),zl=Hl.now()+$l)}function Kl(){zl=0}function Vl(){this._call=this._time=this._next=null}function Ul(e,t,s){var i=new Vl;return i.restart(e,t,s),i}function ql(){zl=(Al=Hl.now())+$l,Il=Bl=0;try{!function(){Fl(),++Il;for(var e,t=Ll;t;)(e=zl-t._time)>=0&&t._call.call(void 0,e),t=t._next;--Il}()}finally{Il=0,function(){var e,t,s=Ll,i=1/0;for(;s;)s._call?(i>s._time&&(i=s._time),e=s,s=s._next):(t=s._next,s._next=null,s=e?e._next=t:Ll=t);Tl=e,Xl(i)}(),zl=0}}function Yl(){var e=Hl.now(),t=e-Al;t>1e3&&($l-=t,Al=e)}function Xl(e){Il||(Bl&&(Bl=clearTimeout(Bl)),e-zl>24?(e<1/0&&(Bl=setTimeout(ql,e-Hl.now()-$l)),Ol&&(Ol=clearInterval(Ol))):(Ol||(Al=Hl.now(),Ol=setInterval(Yl,1e3)),Il=1,Wl(ql)))}function Gl(e,t,s){var i=new Vl;return t=null==t?0:+t,i.restart(s=>{i.stop(),e(s+t)},t,s),i}Vl.prototype=Ul.prototype={constructor:Vl,restart:function(e,t,s){if("function"!=typeof e)throw new TypeError("callback is not a function");s=(null==s?Fl():+s)+(null==t?0:+t),this._next||Tl===this||(Tl?Tl._next=this:Ll=this,Tl=this),this._call=e,this._time=s,Xl()},stop:function(){this._call&&(this._call=null,this._time=1/0,Xl())}};var Zl=no("start","end","cancel","interrupt"),Jl=[];function Ql(e,t,s,i,r,n){var o=e.__transition;if(o){if(s in o)return}else e.__transition={};!function(e,t,s){var i,r=e.__transition;function n(e){s.state=1,s.timer.restart(o,s.delay,s.time),s.delay<=e&&o(e-s.delay)}function o(n){var c,h,d,u;if(1!==s.state)return l();for(c in r)if((u=r[c]).name===s.name){if(3===u.state)return Gl(o);4===u.state?(u.state=6,u.timer.stop(),u.on.call("interrupt",e,e.__data__,u.index,u.group),delete r[c]):+c<t&&(u.state=6,u.timer.stop(),u.on.call("cancel",e,e.__data__,u.index,u.group),delete r[c])}if(Gl(function(){3===s.state&&(s.state=4,s.timer.restart(a,s.delay,s.time),a(n))}),s.state=2,s.on.call("start",e,e.__data__,s.index,s.group),2===s.state){for(s.state=3,i=new Array(d=s.tween.length),c=0,h=-1;c<d;++c)(u=s.tween[c].value.call(e,e.__data__,s.index,s.group))&&(i[++h]=u);i.length=h+1}}function a(t){for(var r=t<s.duration?s.ease.call(null,t/s.duration):(s.timer.restart(l),s.state=5,1),n=-1,o=i.length;++n<o;)i[n].call(e,r);5===s.state&&(s.on.call("end",e,e.__data__,s.index,s.group),l())}function l(){for(var i in s.state=6,s.timer.stop(),delete r[t],r)return;delete e.__transition}r[t]=s,s.timer=Ul(n,0,s.time)}(e,s,{name:t,index:i,group:r,on:Zl,tween:Jl,time:n.time,delay:n.delay,duration:n.duration,ease:n.ease,timer:null,state:0})}function ec(e,t){var s=sc(e,t);if(s.state>0)throw new Error("too late; already scheduled");return s}function tc(e,t){var s=sc(e,t);if(s.state>3)throw new Error("too late; already running");return s}function sc(e,t){var s=e.__transition;if(!s||!(s=s[t]))throw new Error("transition not found");return s}function ic(e,t){var s,i,r,n=e.__transition,o=!0;if(n){for(r in t=null==t?null:t+"",n)(s=n[r]).name===t?(i=s.state>2&&s.state<5,s.state=6,s.timer.stop(),s.on.call(i?"interrupt":"cancel",e,e.__data__,s.index,s.group),delete n[r]):o=!1;o&&delete e.__transition}}function rc(e,t){var s,i;return function(){var r=tc(this,e),n=r.tween;if(n!==s)for(var o=0,a=(i=s=n).length;o<a;++o)if(i[o].name===t){(i=i.slice()).splice(o,1);break}r.tween=i}}function nc(e,t,s){var i,r;if("function"!=typeof s)throw new Error;return function(){var n=tc(this,e),o=n.tween;if(o!==i){r=(i=o).slice();for(var a={name:t,value:s},l=0,c=r.length;l<c;++l)if(r[l].name===t){r[l]=a;break}l===c&&r.push(a)}n.tween=r}}function oc(e,t,s){var i=e._id;return e.each(function(){var e=tc(this,i);(e.value||(e.value={}))[t]=s.apply(this,arguments)}),function(e){return sc(e,i).value[t]}}function ac(e,t){var s;return("number"==typeof t?yl:t instanceof el?xl:(s=el(t))?(t=s,xl):Sl)(e,t)}function lc(e){return function(){this.removeAttribute(e)}}function cc(e){return function(){this.removeAttributeNS(e.space,e.local)}}function hc(e,t,s){var i,r,n=s+"";return function(){var o=this.getAttribute(e);return o===n?null:o===i?r:r=t(i=o,s)}}function dc(e,t,s){var i,r,n=s+"";return function(){var o=this.getAttributeNS(e.space,e.local);return o===n?null:o===i?r:r=t(i=o,s)}}function uc(e,t,s){var i,r,n;return function(){var o,a,l=s(this);if(null!=l)return(o=this.getAttribute(e))===(a=l+"")?null:o===i&&a===r?n:(r=a,n=t(i=o,l));this.removeAttribute(e)}}function fc(e,t,s){var i,r,n;return function(){var o,a,l=s(this);if(null!=l)return(o=this.getAttributeNS(e.space,e.local))===(a=l+"")?null:o===i&&a===r?n:(r=a,n=t(i=o,l));this.removeAttributeNS(e.space,e.local)}}function pc(e,t){var s,i;function r(){var r=t.apply(this,arguments);return r!==i&&(s=(i=r)&&function(e,t){return function(s){this.setAttributeNS(e.space,e.local,t.call(this,s))}}(e,r)),s}return r._value=t,r}function mc(e,t){var s,i;function r(){var r=t.apply(this,arguments);return r!==i&&(s=(i=r)&&function(e,t){return function(s){this.setAttribute(e,t.call(this,s))}}(e,r)),s}return r._value=t,r}function gc(e,t){return function(){ec(this,e).delay=+t.apply(this,arguments)}}function _c(e,t){return t=+t,function(){ec(this,e).delay=t}}function vc(e,t){return function(){tc(this,e).duration=+t.apply(this,arguments)}}function xc(e,t){return t=+t,function(){tc(this,e).duration=t}}var yc=ba.prototype.constructor;function bc(e){return function(){this.style.removeProperty(e)}}var wc=0;function Sc(e,t,s,i){this._groups=e,this._parents=t,this._name=s,this._id=i}function Cc(){return++wc}var kc=ba.prototype;Sc.prototype={constructor:Sc,select:function(e){var t=this._name,s=this._id;"function"!=typeof e&&(e=_o(e));for(var i=this._groups,r=i.length,n=new Array(r),o=0;o<r;++o)for(var a,l,c=i[o],h=c.length,d=n[o]=new Array(h),u=0;u<h;++u)(a=c[u])&&(l=e.call(a,a.__data__,u,c))&&("__data__"in a&&(l.__data__=a.__data__),d[u]=l,Ql(d[u],t,s,u,d,sc(a,s)));return new Sc(n,this._parents,t,s)},selectAll:function(e){var t=this._name,s=this._id;"function"!=typeof e&&(e=xo(e));for(var i=this._groups,r=i.length,n=[],o=[],a=0;a<r;++a)for(var l,c=i[a],h=c.length,d=0;d<h;++d)if(l=c[d]){for(var u,f=e.call(l,l.__data__,d,c),p=sc(l,s),m=0,g=f.length;m<g;++m)(u=f[m])&&Ql(u,t,s,m,f,p);n.push(f),o.push(l)}return new Sc(n,o,t,s)},selectChild:kc.selectChild,selectChildren:kc.selectChildren,filter:function(e){"function"!=typeof e&&(e=bo(e));for(var t=this._groups,s=t.length,i=new Array(s),r=0;r<s;++r)for(var n,o=t[r],a=o.length,l=i[r]=[],c=0;c<a;++c)(n=o[c])&&e.call(n,n.__data__,c,o)&&l.push(n);return new Sc(i,this._parents,this._name,this._id)},merge:function(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,s=e._groups,i=t.length,r=s.length,n=Math.min(i,r),o=new Array(i),a=0;a<n;++a)for(var l,c=t[a],h=s[a],d=c.length,u=o[a]=new Array(d),f=0;f<d;++f)(l=c[f]||h[f])&&(u[f]=l);for(;a<i;++a)o[a]=t[a];return new Sc(o,this._parents,this._name,this._id)},selection:function(){return new yc(this._groups,this._parents)},transition:function(){for(var e=this._name,t=this._id,s=Cc(),i=this._groups,r=i.length,n=0;n<r;++n)for(var o,a=i[n],l=a.length,c=0;c<l;++c)if(o=a[c]){var h=sc(o,t);Ql(o,e,s,c,a,{time:h.time+h.delay+h.duration,delay:0,duration:h.duration,ease:h.ease})}return new Sc(i,this._parents,e,s)},call:kc.call,nodes:kc.nodes,node:kc.node,size:kc.size,empty:kc.empty,each:kc.each,on:function(e,t){var s=this._id;return arguments.length<2?sc(this.node(),s).on.on(e):this.each(function(e,t,s){var i,r,n=function(e){return(e+"").trim().split(/^|\s+/).every(function(e){var t=e.indexOf(".");return t>=0&&(e=e.slice(0,t)),!e||"start"===e})}(t)?ec:tc;return function(){var o=n(this,e),a=o.on;a!==i&&(r=(i=a).copy()).on(t,s),o.on=r}}(s,e,t))},attr:function(e,t){var s=uo(e),i="transform"===s?Dl:ac;return this.attrTween(e,"function"==typeof t?(s.local?fc:uc)(s,i,oc(this,"attr."+e,t)):null==t?(s.local?cc:lc)(s):(s.local?dc:hc)(s,i,t))},attrTween:function(e,t){var s="attr."+e;if(arguments.length<2)return(s=this.tween(s))&&s._value;if(null==t)return this.tween(s,null);if("function"!=typeof t)throw new Error;var i=uo(e);return this.tween(s,(i.local?pc:mc)(i,t))},style:function(e,t,s){var i="transform"==(e+="")?Ml:ac;return null==t?this.styleTween(e,function(e,t){var s,i,r;return function(){var n=Ko(this,e),o=(this.style.removeProperty(e),Ko(this,e));return n===o?null:n===s&&o===i?r:r=t(s=n,i=o)}}(e,i)).on("end.style."+e,bc(e)):"function"==typeof t?this.styleTween(e,function(e,t,s){var i,r,n;return function(){var o=Ko(this,e),a=s(this),l=a+"";return null==a&&(this.style.removeProperty(e),l=a=Ko(this,e)),o===l?null:o===i&&l===r?n:(r=l,n=t(i=o,a))}}(e,i,oc(this,"style."+e,t))).each(function(e,t){var s,i,r,n,o="style."+t,a="end."+o;return function(){var l=tc(this,e),c=l.on,h=null==l.value[o]?n||(n=bc(t)):void 0;c===s&&r===h||(i=(s=c).copy()).on(a,r=h),l.on=i}}(this._id,e)):this.styleTween(e,function(e,t,s){var i,r,n=s+"";return function(){var o=Ko(this,e);return o===n?null:o===i?r:r=t(i=o,s)}}(e,i,t),s).on("end.style."+e,null)},styleTween:function(e,t,s){var i="style."+(e+="");if(arguments.length<2)return(i=this.tween(i))&&i._value;if(null==t)return this.tween(i,null);if("function"!=typeof t)throw new Error;return this.tween(i,function(e,t,s){var i,r;function n(){var n=t.apply(this,arguments);return n!==r&&(i=(r=n)&&function(e,t,s){return function(i){this.style.setProperty(e,t.call(this,i),s)}}(e,n,s)),i}return n._value=t,n}(e,t,null==s?"":s))},text:function(e){return this.tween("text","function"==typeof e?function(e){return function(){var t=e(this);this.textContent=null==t?"":t}}(oc(this,"text",e)):function(e){return function(){this.textContent=e}}(null==e?"":e+""))},textTween:function(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(null==e)return this.tween(t,null);if("function"!=typeof e)throw new Error;return this.tween(t,function(e){var t,s;function i(){var i=e.apply(this,arguments);return i!==s&&(t=(s=i)&&function(e){return function(t){this.textContent=e.call(this,t)}}(i)),t}return i._value=e,i}(e))},remove:function(){return this.on("end.remove",(e=this._id,function(){var t=this.parentNode;for(var s in this.__transition)if(+s!==e)return;t&&t.removeChild(this)}));var e},tween:function(e,t){var s=this._id;if(e+="",arguments.length<2){for(var i,r=sc(this.node(),s).tween,n=0,o=r.length;n<o;++n)if((i=r[n]).name===e)return i.value;return null}return this.each((null==t?rc:nc)(s,e,t))},delay:function(e){var t=this._id;return arguments.length?this.each(("function"==typeof e?gc:_c)(t,e)):sc(this.node(),t).delay},duration:function(e){var t=this._id;return arguments.length?this.each(("function"==typeof e?vc:xc)(t,e)):sc(this.node(),t).duration},ease:function(e){var t=this._id;return arguments.length?this.each(function(e,t){if("function"!=typeof t)throw new Error;return function(){tc(this,e).ease=t}}(t,e)):sc(this.node(),t).ease},easeVarying:function(e){if("function"!=typeof e)throw new Error;return this.each(function(e,t){return function(){var s=t.apply(this,arguments);if("function"!=typeof s)throw new Error;tc(this,e).ease=s}}(this._id,e))},end:function(){var e,t,s=this,i=s._id,r=s.size();return new Promise(function(n,o){var a={value:o},l={value:function(){0===--r&&n()}};s.each(function(){var s=tc(this,i),r=s.on;r!==e&&((t=(e=r).copy())._.cancel.push(a),t._.interrupt.push(a),t._.end.push(l)),s.on=t}),0===r&&n()})},[Symbol.iterator]:kc[Symbol.iterator]};var Nc={time:null,delay:0,duration:250,ease:function(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}};function Ec(e,t){for(var s;!(s=e.__transition)||!(s=s[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return s}ba.prototype.interrupt=function(e){return this.each(function(){ic(this,e)})},ba.prototype.transition=function(e){var t,s;e instanceof Sc?(t=e._id,e=e._name):(t=Cc(),(s=Nc).time=Fl(),e=null==e?null:e+"");for(var i=this._groups,r=i.length,n=0;n<r;++n)for(var o,a=i[n],l=a.length,c=0;c<l;++c)(o=a[c])&&Ql(o,e,t,c,a,s||Ec(o,t));return new Sc(i,this._parents,e,t)};const jc=e=>()=>e;function Mc(e,{sourceEvent:t,target:s,transform:i,dispatch:r}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:s,enumerable:!0,configurable:!0},transform:{value:i,enumerable:!0,configurable:!0},_:{value:r}})}function Dc(e,t,s){this.k=e,this.x=t,this.y=s}Dc.prototype={constructor:Dc,scale:function(e){return 1===e?this:new Dc(this.k*e,this.x,this.y)},translate:function(e,t){return 0===e&0===t?this:new Dc(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Rc=new Dc(1,0,0);function Pc(e){e.stopImmediatePropagation()}function Lc(e){e.preventDefault(),e.stopImmediatePropagation()}function Tc(e){return!(e.ctrlKey&&"wheel"!==e.type||e.button)}function Ic(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e).hasAttribute("viewBox")?[[(e=e.viewBox.baseVal).x,e.y],[e.x+e.width,e.y+e.height]]:[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]:[[0,0],[e.clientWidth,e.clientHeight]]}function Bc(){return this.__zoom||Rc}function Oc(e){return-e.deltaY*(1===e.deltaMode?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function Ac(){return navigator.maxTouchPoints||"ontouchstart"in this}function zc(e,t,s){var i=e.invertX(t[0][0])-s[0][0],r=e.invertX(t[1][0])-s[1][0],n=e.invertY(t[0][1])-s[0][1],o=e.invertY(t[1][1])-s[1][1];return e.translate(r>i?(i+r)/2:Math.min(0,i)||Math.max(0,r),o>n?(n+o)/2:Math.min(0,n)||Math.max(0,o))}function $c(){var e,t,s,i=Tc,r=Ic,n=zc,o=Oc,a=Ac,l=[0,1/0],c=[[-1/0,-1/0],[1/0,1/0]],h=250,d=Pl,u=no("start","zoom","end"),f=0,p=10;function m(e){e.property("__zoom",Bc).on("wheel.zoom",w,{passive:!1}).on("mousedown.zoom",S).on("dblclick.zoom",C).filter(a).on("touchstart.zoom",k).on("touchmove.zoom",N).on("touchend.zoom touchcancel.zoom",E).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function g(e,t){return(t=Math.max(l[0],Math.min(l[1],t)))===e.k?e:new Dc(t,e.x,e.y)}function _(e,t,s){var i=t[0]-s[0]*e.k,r=t[1]-s[1]*e.k;return i===e.x&&r===e.y?e:new Dc(e.k,i,r)}function v(e){return[(+e[0][0]+ +e[1][0])/2,(+e[0][1]+ +e[1][1])/2]}function x(e,t,s,i){e.on("start.zoom",function(){y(this,arguments).event(i).start()}).on("interrupt.zoom end.zoom",function(){y(this,arguments).event(i).end()}).tween("zoom",function(){var e=this,n=arguments,o=y(e,n).event(i),a=r.apply(e,n),l=null==s?v(a):"function"==typeof s?s.apply(e,n):s,c=Math.max(a[1][0]-a[0][0],a[1][1]-a[0][1]),h=e.__zoom,u="function"==typeof t?t.apply(e,n):t,f=d(h.invert(l).concat(c/h.k),u.invert(l).concat(c/u.k));return function(e){if(1===e)e=u;else{var t=f(e),s=c/t[2];e=new Dc(s,l[0]-t[0]*s,l[1]-t[1]*s)}o.zoom(null,e)}})}function y(e,t,s){return!s&&e.__zooming||new b(e,t)}function b(e,t){this.that=e,this.args=t,this.active=0,this.sourceEvent=null,this.extent=r.apply(e,t),this.taps=0}function w(e,...t){if(i.apply(this,arguments)){var s=y(this,t).event(e),r=this.__zoom,a=Math.max(l[0],Math.min(l[1],r.k*Math.pow(2,o.apply(this,arguments)))),h=Sa(e);if(s.wheel)s.mouse[0][0]===h[0]&&s.mouse[0][1]===h[1]||(s.mouse[1]=r.invert(s.mouse[0]=h)),clearTimeout(s.wheel);else{if(r.k===a)return;s.mouse=[h,r.invert(h)],ic(this),s.start()}Lc(e),s.wheel=setTimeout(function(){s.wheel=null,s.end()},150),s.zoom("mouse",n(_(g(r,a),s.mouse[0],s.mouse[1]),s.extent,c))}}function S(e,...t){if(!s&&i.apply(this,arguments)){var r=e.currentTarget,o=y(this,t,!0).event(e),a=wa(e.view).on("mousemove.zoom",function(e){if(Lc(e),!o.moved){var t=e.clientX-h,s=e.clientY-d;o.moved=t*t+s*s>f}o.event(e).zoom("mouse",n(_(o.that.__zoom,o.mouse[0]=Sa(e,r),o.mouse[1]),o.extent,c))},!0).on("mouseup.zoom",function(e){a.on("mousemove.zoom mouseup.zoom",null),Ma(e.view,o.moved),Lc(e),o.event(e).end()},!0),l=Sa(e,r),h=e.clientX,d=e.clientY;ja(e.view),Pc(e),o.mouse=[l,this.__zoom.invert(l)],ic(this),o.start()}}function C(e,...t){if(i.apply(this,arguments)){var s=this.__zoom,o=Sa(e.changedTouches?e.changedTouches[0]:e,this),a=s.invert(o),l=s.k*(e.shiftKey?.5:2),d=n(_(g(s,l),o,a),r.apply(this,t),c);Lc(e),h>0?wa(this).transition().duration(h).call(x,d,o,e):wa(this).call(m.transform,d,o,e)}}function k(s,...r){if(i.apply(this,arguments)){var n,o,a,l,c=s.touches,h=c.length,d=y(this,r,s.changedTouches.length===h).event(s);for(Pc(s),o=0;o<h;++o)l=[l=Sa(a=c[o],this),this.__zoom.invert(l),a.identifier],d.touch0?d.touch1||d.touch0[2]===l[2]||(d.touch1=l,d.taps=0):(d.touch0=l,n=!0,d.taps=1+!!e);e&&(e=clearTimeout(e)),n&&(d.taps<2&&(t=l[0],e=setTimeout(function(){e=null},500)),ic(this),d.start())}}function N(e,...t){if(this.__zooming){var s,i,r,o,a=y(this,t).event(e),l=e.changedTouches,h=l.length;for(Lc(e),s=0;s<h;++s)r=Sa(i=l[s],this),a.touch0&&a.touch0[2]===i.identifier?a.touch0[0]=r:a.touch1&&a.touch1[2]===i.identifier&&(a.touch1[0]=r);if(i=a.that.__zoom,a.touch1){var d=a.touch0[0],u=a.touch0[1],f=a.touch1[0],p=a.touch1[1],m=(m=f[0]-d[0])*m+(m=f[1]-d[1])*m,v=(v=p[0]-u[0])*v+(v=p[1]-u[1])*v;i=g(i,Math.sqrt(m/v)),r=[(d[0]+f[0])/2,(d[1]+f[1])/2],o=[(u[0]+p[0])/2,(u[1]+p[1])/2]}else{if(!a.touch0)return;r=a.touch0[0],o=a.touch0[1]}a.zoom("touch",n(_(i,r,o),a.extent,c))}}function E(e,...i){if(this.__zooming){var r,n,o=y(this,i).event(e),a=e.changedTouches,l=a.length;for(Pc(e),s&&clearTimeout(s),s=setTimeout(function(){s=null},500),r=0;r<l;++r)n=a[r],o.touch0&&o.touch0[2]===n.identifier?delete o.touch0:o.touch1&&o.touch1[2]===n.identifier&&delete o.touch1;if(o.touch1&&!o.touch0&&(o.touch0=o.touch1,delete o.touch1),o.touch0)o.touch0[1]=this.__zoom.invert(o.touch0[0]);else if(o.end(),2===o.taps&&(n=Sa(n,this),Math.hypot(t[0]-n[0],t[1]-n[1])<p)){var c=wa(this).on("dblclick.zoom");c&&c.apply(this,arguments)}}}return m.transform=function(e,t,s,i){var r=e.selection?e.selection():e;r.property("__zoom",Bc),e!==r?x(e,t,s,i):r.interrupt().each(function(){y(this,arguments).event(i).start().zoom(null,"function"==typeof t?t.apply(this,arguments):t).end()})},m.scaleBy=function(e,t,s,i){m.scaleTo(e,function(){return this.__zoom.k*("function"==typeof t?t.apply(this,arguments):t)},s,i)},m.scaleTo=function(e,t,s,i){m.transform(e,function(){var e=r.apply(this,arguments),i=this.__zoom,o=null==s?v(e):"function"==typeof s?s.apply(this,arguments):s,a=i.invert(o),l="function"==typeof t?t.apply(this,arguments):t;return n(_(g(i,l),o,a),e,c)},s,i)},m.translateBy=function(e,t,s,i){m.transform(e,function(){return n(this.__zoom.translate("function"==typeof t?t.apply(this,arguments):t,"function"==typeof s?s.apply(this,arguments):s),r.apply(this,arguments),c)},null,i)},m.translateTo=function(e,t,s,i,o){m.transform(e,function(){var e=r.apply(this,arguments),o=this.__zoom,a=null==i?v(e):"function"==typeof i?i.apply(this,arguments):i;return n(Rc.translate(a[0],a[1]).scale(o.k).translate("function"==typeof t?-t.apply(this,arguments):-t,"function"==typeof s?-s.apply(this,arguments):-s),e,c)},i,o)},b.prototype={event:function(e){return e&&(this.sourceEvent=e),this},start:function(){return 1===++this.active&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(e,t){return this.mouse&&"mouse"!==e&&(this.mouse[1]=t.invert(this.mouse[0])),this.touch0&&"touch"!==e&&(this.touch0[1]=t.invert(this.touch0[0])),this.touch1&&"touch"!==e&&(this.touch1[1]=t.invert(this.touch1[0])),this.that.__zoom=t,this.emit("zoom"),this},end:function(){return 0===--this.active&&(delete this.that.__zooming,this.emit("end")),this},emit:function(e){var t=wa(this.that).datum();u.call(e,this.that,new Mc(e,{sourceEvent:this.sourceEvent,target:m,transform:this.that.__zoom,dispatch:u}),t)}},m.wheelDelta=function(e){return arguments.length?(o="function"==typeof e?e:jc(+e),m):o},m.filter=function(e){return arguments.length?(i="function"==typeof e?e:jc(!!e),m):i},m.touchable=function(e){return arguments.length?(a="function"==typeof e?e:jc(!!e),m):a},m.extent=function(e){return arguments.length?(r="function"==typeof e?e:jc([[+e[0][0],+e[0][1]],[+e[1][0],+e[1][1]]]),m):r},m.scaleExtent=function(e){return arguments.length?(l[0]=+e[0],l[1]=+e[1],m):[l[0],l[1]]},m.translateExtent=function(e){return arguments.length?(c[0][0]=+e[0][0],c[1][0]=+e[1][0],c[0][1]=+e[0][1],c[1][1]=+e[1][1],m):[[c[0][0],c[0][1]],[c[1][0],c[1][1]]]},m.constrain=function(e){return arguments.length?(n=e,m):n},m.duration=function(e){return arguments.length?(h=+e,m):h},m.interpolate=function(e){return arguments.length?(d=e,m):d},m.on=function(){var e=u.on.apply(u,arguments);return e===u?m:e},m.clickDistance=function(e){return arguments.length?(f=(e=+e)*e,m):Math.sqrt(f)},m.tapDistance=function(e){return arguments.length?(p=+e,m):p},m}Dc.prototype;const Hc=l.createContext(null),Wc=Hc.Provider,Fc=e=>`Node type "${e}" not found. Using fallback type "default".`,Kc=()=>"The React Flow parent container needs a width and a height to render the graph.",Vc=()=>"Only child nodes can use a parent extent.",Uc=e=>`Marker type "${e}" doesn't exist.`,qc=(e,t)=>`Couldn't create edge for ${e?"target":"source"} handle id: "${e?t.targetHandle:t.sourceHandle}", edge id: ${t.id}.`,Yc=()=>"Handle: No node id found. Make sure to only use a Handle inside a custom Node.",Xc=e=>`Edge type "${e}" not found. Using fallback type "default".`,Gc=e=>`Node with id "${e}" does not exist, it may have been removed. This can happen when a node is deleted before the "onNodeClick" handler is called.`,Zc=(()=>"[React Flow]: Seems like you have not used zustand provider as an ancestor. Help: https://reactflow.dev/error#001")();function Jc(e,t){const s=l.useContext(Hc);if(null===s)throw new Error(Zc);return to(s,e,t)}const Qc=()=>{const e=l.useContext(Hc);if(null===e)throw new Error(Zc);return l.useMemo(()=>({getState:e.getState,setState:e.setState,subscribe:e.subscribe,destroy:e.destroy}),[e])},eh=e=>e.userSelectionActive?"none":"all";function th({position:e,children:t,className:s,style:i,...r}){const n=Jc(eh),o=`${e}`.split("-");return k.createElement("div",{className:An(["react-flow__panel",s,...o]),style:{...i,pointerEvents:n},...r},t)}function sh({proOptions:e,position:t="bottom-right"}){return(null==e?void 0:e.hideAttribution)?null:k.createElement(th,{position:t,className:"react-flow__attribution","data-message":"Please only hide this attribution when you are subscribed to React Flow Pro: https://reactflow.dev/pro"},k.createElement("a",{href:"https://reactflow.dev",target:"_blank",rel:"noopener noreferrer","aria-label":"React Flow attribution"},"React Flow"))}var ih=l.memo(({x:e,y:t,label:s,labelStyle:i={},labelShowBg:r=!0,labelBgStyle:n={},labelBgPadding:o=[2,4],labelBgBorderRadius:a=2,children:c,className:h,...d})=>{const u=l.useRef(null),[f,p]=l.useState({x:0,y:0,width:0,height:0}),m=An(["react-flow__edge-textwrapper",h]);return l.useEffect(()=>{if(u.current){const e=u.current.getBBox();p({x:e.x,y:e.y,width:e.width,height:e.height})}},[s]),void 0!==s&&s?k.createElement("g",{transform:`translate(${e-f.width/2} ${t-f.height/2})`,className:m,visibility:f.width?"visible":"hidden",...d},r&&k.createElement("rect",{width:f.width+2*o[0],x:-o[0],y:-o[1],height:f.height+2*o[1],className:"react-flow__edge-textbg",style:n,rx:a,ry:a}),k.createElement("text",{className:"react-flow__edge-text",y:f.height/2,dy:"0.3em",ref:u,style:i},s),c):null});const rh=e=>({width:e.offsetWidth,height:e.offsetHeight}),nh=(e,t=0,s=1)=>Math.min(Math.max(e,t),s),oh=(e={x:0,y:0},t)=>({x:nh(e.x,t[0][0],t[1][0]),y:nh(e.y,t[0][1],t[1][1])}),ah=(e,t,s)=>e<t?nh(Math.abs(e-t),1,50)/50:e>s?-nh(Math.abs(e-s),1,50)/50:0,lh=(e,t)=>[20*ah(e.x,35,t.width-35),20*ah(e.y,35,t.height-35)],ch=e=>{var t;return(null==(t=e.getRootNode)?void 0:t.call(e))||(null==window?void 0:window.document)},hh=(e,t)=>({x:Math.min(e.x,t.x),y:Math.min(e.y,t.y),x2:Math.max(e.x2,t.x2),y2:Math.max(e.y2,t.y2)}),dh=({x:e,y:t,width:s,height:i})=>({x:e,y:t,x2:e+s,y2:t+i}),uh=({x:e,y:t,x2:s,y2:i})=>({x:e,y:t,width:s-e,height:i-t}),fh=e=>({...e.positionAbsolute||{x:0,y:0},width:e.width||0,height:e.height||0}),ph=(e,t)=>{const s=Math.max(0,Math.min(e.x+e.width,t.x+t.width)-Math.max(e.x,t.x)),i=Math.max(0,Math.min(e.y+e.height,t.y+t.height)-Math.max(e.y,t.y));return Math.ceil(s*i)},mh=e=>!isNaN(e)&&isFinite(e),gh=Symbol.for("internals"),_h=["Enter"," ","Escape"];function vh(e){var t,s;const i=(e=>"nativeEvent"in e)(e)?e.nativeEvent:e,r=(null==(s=null==(t=i.composedPath)?void 0:t.call(i))?void 0:s[0])||e.target;return["INPUT","SELECT","TEXTAREA"].includes(null==r?void 0:r.nodeName)||(null==r?void 0:r.hasAttribute("contenteditable"))||!!(null==r?void 0:r.closest(".nokey"))}const xh=e=>"clientX"in e,yh=(e,t)=>{var s,i;const r=xh(e),n=r?e.clientX:null==(s=e.touches)?void 0:s[0].clientX,o=r?e.clientY:null==(i=e.touches)?void 0:i[0].clientY;return{x:n-((null==t?void 0:t.left)??0),y:o-((null==t?void 0:t.top)??0)}},bh=()=>{var e;return"undefined"!=typeof navigator&&(null==(e=null==navigator?void 0:navigator.userAgent)?void 0:e.indexOf("Mac"))>=0},wh=({id:e,path:t,labelX:s,labelY:i,label:r,labelStyle:n,labelShowBg:o,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,style:h,markerEnd:d,markerStart:u,interactionWidth:f=20})=>k.createElement(k.Fragment,null,k.createElement("path",{id:e,style:h,d:t,fill:"none",className:"react-flow__edge-path",markerEnd:d,markerStart:u}),f&&k.createElement("path",{d:t,fill:"none",strokeOpacity:0,strokeWidth:f,className:"react-flow__edge-interaction"}),r&&mh(s)&&mh(i)?k.createElement(ih,{x:s,y:i,label:r,labelStyle:n,labelShowBg:o,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c}):null);function Sh(e,t,s){return void 0===s?s:i=>{const r=t().edges.find(t=>t.id===e);r&&s(i,{...r})}}function Ch({sourceX:e,sourceY:t,targetX:s,targetY:i}){const r=Math.abs(s-e)/2,n=s<e?s+r:s-r,o=Math.abs(i-t)/2;return[n,i<t?i+o:i-o,r,o]}function kh({sourceX:e,sourceY:t,targetX:s,targetY:i,sourceControlX:r,sourceControlY:n,targetControlX:o,targetControlY:a}){const l=.125*e+.375*r+.375*o+.125*s,c=.125*t+.375*n+.375*a+.125*i;return[l,c,Math.abs(l-e),Math.abs(c-t)]}var Nh,Eh,jh,Mh,Dh,Rh,Ph,Lh,Th,Ih,Bh,Oh;function Ah({pos:e,x1:t,y1:s,x2:i,y2:r}){return e===Bh.Left||e===Bh.Right?[.5*(t+i),s]:[t,.5*(s+r)]}function zh({sourceX:e,sourceY:t,sourcePosition:s=Bh.Bottom,targetX:i,targetY:r,targetPosition:n=Bh.Top}){const[o,a]=Ah({pos:s,x1:e,y1:t,x2:i,y2:r}),[l,c]=Ah({pos:n,x1:i,y1:r,x2:e,y2:t}),[h,d,u,f]=kh({sourceX:e,sourceY:t,targetX:i,targetY:r,sourceControlX:o,sourceControlY:a,targetControlX:l,targetControlY:c});return[`M${e},${t} C${o},${a} ${l},${c} ${i},${r}`,h,d,u,f]}wh.displayName="BaseEdge",(Eh=Nh||(Nh={})).Strict="strict",Eh.Loose="loose",(Mh=jh||(jh={})).Free="free",Mh.Vertical="vertical",Mh.Horizontal="horizontal",(Rh=Dh||(Dh={})).Partial="partial",Rh.Full="full",(Lh=Ph||(Ph={})).Bezier="default",Lh.Straight="straight",Lh.Step="step",Lh.SmoothStep="smoothstep",Lh.SimpleBezier="simplebezier",(Ih=Th||(Th={})).Arrow="arrow",Ih.ArrowClosed="arrowclosed",(Oh=Bh||(Bh={})).Left="left",Oh.Top="top",Oh.Right="right",Oh.Bottom="bottom";const $h=l.memo(({sourceX:e,sourceY:t,targetX:s,targetY:i,sourcePosition:r=Bh.Bottom,targetPosition:n=Bh.Top,label:o,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:h,labelBgBorderRadius:d,style:u,markerEnd:f,markerStart:p,interactionWidth:m})=>{const[g,_,v]=zh({sourceX:e,sourceY:t,sourcePosition:r,targetX:s,targetY:i,targetPosition:n});return k.createElement(wh,{path:g,labelX:_,labelY:v,label:o,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:h,labelBgBorderRadius:d,style:u,markerEnd:f,markerStart:p,interactionWidth:m})});$h.displayName="SimpleBezierEdge";const Hh={[Bh.Left]:{x:-1,y:0},[Bh.Right]:{x:1,y:0},[Bh.Top]:{x:0,y:-1},[Bh.Bottom]:{x:0,y:1}},Wh=(e,t)=>Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2));function Fh({source:e,sourcePosition:t=Bh.Bottom,target:s,targetPosition:i=Bh.Top,center:r,offset:n}){const o=Hh[t],a=Hh[i],l={x:e.x+o.x*n,y:e.y+o.y*n},c={x:s.x+a.x*n,y:s.y+a.y*n},h=(({source:e,sourcePosition:t=Bh.Bottom,target:s})=>t===Bh.Left||t===Bh.Right?e.x<s.x?{x:1,y:0}:{x:-1,y:0}:e.y<s.y?{x:0,y:1}:{x:0,y:-1})({source:l,sourcePosition:t,target:c}),d=0!==h.x?"x":"y",u=h[d];let f,p,m=[];const g={x:0,y:0},_={x:0,y:0},[v,x,y,b]=Ch({sourceX:e.x,sourceY:e.y,targetX:s.x,targetY:s.y});if(o[d]*a[d]===-1){f=r.x??v,p=r.y??x;const e=[{x:f,y:l.y},{x:f,y:c.y}],t=[{x:l.x,y:p},{x:c.x,y:p}];m=o[d]===u?"x"===d?e:t:"x"===d?t:e}else{const r=[{x:l.x,y:c.y}],h=[{x:c.x,y:l.y}];if(m="x"===d?o.x===u?h:r:o.y===u?r:h,t===i){const t=Math.abs(e[d]-s[d]);if(t<=n){const i=Math.min(n-1,n-t);o[d]===u?g[d]=(l[d]>e[d]?-1:1)*i:_[d]=(c[d]>s[d]?-1:1)*i}}if(t!==i){const e="x"===d?"y":"x",t=o[d]===a[e],s=l[e]>c[e],i=l[e]<c[e];(1===o[d]&&(!t&&s||t&&i)||1!==o[d]&&(!t&&i||t&&s))&&(m="x"===d?r:h)}const v={x:l.x+g.x,y:l.y+g.y},x={x:c.x+_.x,y:c.y+_.y};Math.max(Math.abs(v.x-m[0].x),Math.abs(x.x-m[0].x))>=Math.max(Math.abs(v.y-m[0].y),Math.abs(x.y-m[0].y))?(f=(v.x+x.x)/2,p=m[0].y):(f=m[0].x,p=(v.y+x.y)/2)}return[[e,{x:l.x+g.x,y:l.y+g.y},...m,{x:c.x+_.x,y:c.y+_.y},s],f,p,y,b]}function Kh({sourceX:e,sourceY:t,sourcePosition:s=Bh.Bottom,targetX:i,targetY:r,targetPosition:n=Bh.Top,borderRadius:o=5,centerX:a,centerY:l,offset:c=20}){const[h,d,u,f,p]=Fh({source:{x:e,y:t},sourcePosition:s,target:{x:i,y:r},targetPosition:n,center:{x:a,y:l},offset:c});return[h.reduce((e,t,s)=>{let i="";return i=s>0&&s<h.length-1?function(e,t,s,i){const r=Math.min(Wh(e,t)/2,Wh(t,s)/2,i),{x:n,y:o}=t;if(e.x===n&&n===s.x||e.y===o&&o===s.y)return`L${n} ${o}`;if(e.y===o)return`L ${n+r*(e.x<s.x?-1:1)},${o}Q ${n},${o} ${n},${o+r*(e.y<s.y?1:-1)}`;const a=e.x<s.x?1:-1;return`L ${n},${o+r*(e.y<s.y?-1:1)}Q ${n},${o} ${n+r*a},${o}`}(h[s-1],t,h[s+1],o):`${0===s?"M":"L"}${t.x} ${t.y}`,e+=i},""),d,u,f,p]}const Vh=l.memo(({sourceX:e,sourceY:t,targetX:s,targetY:i,label:r,labelStyle:n,labelShowBg:o,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,style:h,sourcePosition:d=Bh.Bottom,targetPosition:u=Bh.Top,markerEnd:f,markerStart:p,pathOptions:m,interactionWidth:g})=>{const[_,v,x]=Kh({sourceX:e,sourceY:t,sourcePosition:d,targetX:s,targetY:i,targetPosition:u,borderRadius:null==m?void 0:m.borderRadius,offset:null==m?void 0:m.offset});return k.createElement(wh,{path:_,labelX:v,labelY:x,label:r,labelStyle:n,labelShowBg:o,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,style:h,markerEnd:f,markerStart:p,interactionWidth:g})});Vh.displayName="SmoothStepEdge";const Uh=l.memo(e=>{var t;return k.createElement(Vh,{...e,pathOptions:l.useMemo(()=>{var t;return{borderRadius:0,offset:null==(t=e.pathOptions)?void 0:t.offset}},[null==(t=e.pathOptions)?void 0:t.offset])})});Uh.displayName="StepEdge";const qh=l.memo(({sourceX:e,sourceY:t,targetX:s,targetY:i,label:r,labelStyle:n,labelShowBg:o,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,style:h,markerEnd:d,markerStart:u,interactionWidth:f})=>{const[p,m,g]=function({sourceX:e,sourceY:t,targetX:s,targetY:i}){const[r,n,o,a]=Ch({sourceX:e,sourceY:t,targetX:s,targetY:i});return[`M ${e},${t}L ${s},${i}`,r,n,o,a]}({sourceX:e,sourceY:t,targetX:s,targetY:i});return k.createElement(wh,{path:p,labelX:m,labelY:g,label:r,labelStyle:n,labelShowBg:o,labelBgStyle:a,labelBgPadding:l,labelBgBorderRadius:c,style:h,markerEnd:d,markerStart:u,interactionWidth:f})});function Yh(e,t){return e>=0?.5*e:25*t*Math.sqrt(-e)}function Xh({pos:e,x1:t,y1:s,x2:i,y2:r,c:n}){switch(e){case Bh.Left:return[t-Yh(t-i,n),s];case Bh.Right:return[t+Yh(i-t,n),s];case Bh.Top:return[t,s-Yh(s-r,n)];case Bh.Bottom:return[t,s+Yh(r-s,n)]}}function Gh({sourceX:e,sourceY:t,sourcePosition:s=Bh.Bottom,targetX:i,targetY:r,targetPosition:n=Bh.Top,curvature:o=.25}){const[a,l]=Xh({pos:s,x1:e,y1:t,x2:i,y2:r,c:o}),[c,h]=Xh({pos:n,x1:i,y1:r,x2:e,y2:t,c:o}),[d,u,f,p]=kh({sourceX:e,sourceY:t,targetX:i,targetY:r,sourceControlX:a,sourceControlY:l,targetControlX:c,targetControlY:h});return[`M${e},${t} C${a},${l} ${c},${h} ${i},${r}`,d,u,f,p]}qh.displayName="StraightEdge";const Zh=l.memo(({sourceX:e,sourceY:t,targetX:s,targetY:i,sourcePosition:r=Bh.Bottom,targetPosition:n=Bh.Top,label:o,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:h,labelBgBorderRadius:d,style:u,markerEnd:f,markerStart:p,pathOptions:m,interactionWidth:g})=>{const[_,v,x]=Gh({sourceX:e,sourceY:t,sourcePosition:r,targetX:s,targetY:i,targetPosition:n,curvature:null==m?void 0:m.curvature});return k.createElement(wh,{path:_,labelX:v,labelY:x,label:o,labelStyle:a,labelShowBg:l,labelBgStyle:c,labelBgPadding:h,labelBgBorderRadius:d,style:u,markerEnd:f,markerStart:p,interactionWidth:g})});Zh.displayName="BezierEdge";const Jh=l.createContext(null),Qh=Jh.Provider;Jh.Consumer;const ed=({source:e,sourceHandle:t,target:s,targetHandle:i})=>`reactflow__edge-${e}${t||""}-${s}${i||""}`,td=(e,t)=>{if(void 0===e)return"";if("string"==typeof e)return e;return`${t?`${t}__`:""}${Object.keys(e).sort().map(t=>`${t}=${e[t]}`).join("&")}`},sd=({x:e,y:t},[s,i,r],n,[o,a])=>{const l={x:(e-s)/r,y:(t-i)/r};return n?{x:o*Math.round(l.x/o),y:a*Math.round(l.y/a)}:l},id=({x:e,y:t},[s,i,r])=>({x:e*r+s,y:t*r+i}),rd=(e,t=[0,0])=>{if(!e)return{x:0,y:0,positionAbsolute:{x:0,y:0}};const s=(e.width??0)*t[0],i=(e.height??0)*t[1],r={x:e.position.x-s,y:e.position.y-i};return{...r,positionAbsolute:e.positionAbsolute?{x:e.positionAbsolute.x-s,y:e.positionAbsolute.y-i}:r}},nd=(e,t=[0,0])=>{if(0===e.length)return{x:0,y:0,width:0,height:0};const s=e.reduce((e,s)=>{const{x:i,y:r}=rd(s,t).positionAbsolute;return hh(e,dh({x:i,y:r,width:s.width||0,height:s.height||0}))},{x:1/0,y:1/0,x2:-1/0,y2:-1/0});return uh(s)},od=(e,t,[s,i,r]=[0,0,1],n=!1,o=!1,a=[0,0])=>{const l={x:(t.x-s)/r,y:(t.y-i)/r,width:t.width/r,height:t.height/r},c=[];return e.forEach(e=>{const{width:t,height:s,selectable:i=!0,hidden:r=!1}=e;if(o&&!i||r)return!1;const{positionAbsolute:h}=rd(e,a),d={x:h.x,y:h.y,width:t||0,height:s||0},u=ph(l,d);(void 0===t||void 0===s||null===t||null===s||n&&u>0||u>=(t||0)*(s||0)||e.dragging)&&c.push(e)}),c},ad=(e,t)=>{const s=e.map(e=>e.id);return t.filter(e=>s.includes(e.source)||s.includes(e.target))},ld=(e,t,s,i,r,n=.1)=>{const o=t/(e.width*(1+n)),a=s/(e.height*(1+n)),l=Math.min(o,a),c=nh(l,i,r);return{x:t/2-(e.x+e.width/2)*c,y:s/2-(e.y+e.height/2)*c,zoom:c}},cd=(e,t=0)=>e.transition().duration(t);function hd(e,t,s,i){return(t[s]||[]).reduce((t,r)=>{var n,o;return`${e.id}-${r.id}-${s}`!==i&&t.push({id:r.id||null,type:s,nodeId:e.id,x:((null==(n=e.positionAbsolute)?void 0:n.x)??0)+r.x+r.width/2,y:((null==(o=e.positionAbsolute)?void 0:o.y)??0)+r.y+r.height/2}),t},[])}const dd={source:null,target:null,sourceHandle:null,targetHandle:null},ud=()=>({handleDomNode:null,isValid:!1,connection:dd,endHandle:null});function fd(e,t,s,i,r,n,o){const a="target"===r,l=o.querySelector(`.react-flow__handle[data-id="${null==e?void 0:e.nodeId}-${null==e?void 0:e.id}-${null==e?void 0:e.type}"]`),c={...ud(),handleDomNode:l};if(l){const e=pd(void 0,l),r=l.getAttribute("data-nodeid"),o=l.getAttribute("data-handleid"),h=l.classList.contains("connectable"),d=l.classList.contains("connectableend"),u={source:a?r:s,sourceHandle:a?o:i,target:a?s:r,targetHandle:a?i:o};c.connection=u;h&&d&&(t===Nh.Strict?a&&"source"===e||!a&&"target"===e:r!==s||o!==i)&&(c.endHandle={nodeId:r,handleId:o,type:e},c.isValid=n(u))}return c}function pd(e,t){return e||((null==t?void 0:t.classList.contains("target"))?"target":(null==t?void 0:t.classList.contains("source"))?"source":null)}function md(e){null==e||e.classList.remove("valid","connecting","react-flow__handle-valid","react-flow__handle-connecting")}function gd(e,t){let s=null;return t?s="valid":e&&!t&&(s="invalid"),s}function _d({event:e,handleId:t,nodeId:s,onConnect:i,isTarget:r,getState:n,setState:o,isValidConnection:a,edgeUpdaterType:l,onReconnectEnd:c}){const h=ch(e.target),{connectionMode:d,domNode:u,autoPanOnConnect:f,connectionRadius:p,onConnectStart:m,panBy:g,getNodes:_,cancelConnection:v}=n();let x,y=0;const{x:b,y:w}=yh(e),S=null==h?void 0:h.elementFromPoint(b,w),C=pd(l,S),k=null==u?void 0:u.getBoundingClientRect();if(!k||!C)return;let N,E=yh(e,k),j=!1,M=null,D=!1,R=null;const P=function({nodes:e,nodeId:t,handleId:s,handleType:i}){return e.reduce((e,r)=>{if(r[gh]){const{handleBounds:n}=r[gh];let o=[],a=[];n&&(o=hd(r,n,"source",`${t}-${s}-${i}`),a=hd(r,n,"target",`${t}-${s}-${i}`)),e.push(...o,...a)}return e},[])}({nodes:_(),nodeId:s,handleId:t,handleType:C}),L=()=>{if(!f)return;const[e,t]=lh(E,k);g({x:e,y:t}),y=requestAnimationFrame(L)};function T(e){const{transform:i}=n();E=yh(e,k);const{handle:l,validHandleResult:c}=function(e,t,s,i,r,n){const{x:o,y:a}=yh(e),l=t.elementsFromPoint(o,a).find(e=>e.classList.contains("react-flow__handle"));if(l){const e=l.getAttribute("data-nodeid");if(e){const t=pd(void 0,l),i=l.getAttribute("data-handleid"),o=n({nodeId:e,id:i,type:t});if(o){const n=r.find(s=>s.nodeId===e&&s.type===t&&s.id===i);return{handle:{id:i,type:t,nodeId:e,x:(null==n?void 0:n.x)||s.x,y:(null==n?void 0:n.y)||s.y},validHandleResult:o}}}}let c=[],h=1/0;if(r.forEach(e=>{const t=Math.sqrt((e.x-s.x)**2+(e.y-s.y)**2);if(t<=i){const s=n(e);t<=h&&(t<h?c=[{handle:e,validHandleResult:s}]:t===h&&c.push({handle:e,validHandleResult:s}),h=t)}}),!c.length)return{handle:null,validHandleResult:ud()};if(1===c.length)return c[0];const d=c.some(({validHandleResult:e})=>e.isValid),u=c.some(({handle:e})=>"target"===e.type);return c.find(({handle:e,validHandleResult:t})=>u?"target"===e.type:!d||t.isValid)||c[0]}(e,h,sd(E,i,!1,[1,1]),p,P,e=>fd(e,d,s,t,r?"target":"source",a,h));if(x=l,j||(L(),j=!0),R=c.handleDomNode,M=c.connection,D=c.isValid,o({connectionPosition:x&&D?id({x:x.x,y:x.y},i):E,connectionStatus:gd(!!x,D),connectionEndHandle:c.endHandle}),!x&&!D&&!R)return md(N);M.source!==M.target&&R&&(md(N),N=R,R.classList.add("connecting","react-flow__handle-connecting"),R.classList.toggle("valid",D),R.classList.toggle("react-flow__handle-valid",D))}function I(e){var t,s;(x||R)&&M&&D&&(null==i||i(M)),null==(s=(t=n()).onConnectEnd)||s.call(t,e),l&&(null==c||c(e)),md(N),v(),cancelAnimationFrame(y),j=!1,D=!1,M=null,R=null,h.removeEventListener("mousemove",T),h.removeEventListener("mouseup",I),h.removeEventListener("touchmove",T),h.removeEventListener("touchend",I)}o({connectionPosition:E,connectionStatus:null,connectionNodeId:s,connectionHandleId:t,connectionHandleType:C,connectionStartHandle:{nodeId:s,handleId:t,type:C},connectionEndHandle:null}),null==m||m(e,{nodeId:s,handleId:t,handleType:C}),h.addEventListener("mousemove",T),h.addEventListener("mouseup",I),h.addEventListener("touchmove",T),h.addEventListener("touchend",I)}const vd=()=>!0,xd=e=>({connectionStartHandle:e.connectionStartHandle,connectOnClick:e.connectOnClick,noPanClassName:e.noPanClassName}),yd=l.forwardRef(({type:e="source",position:t=Bh.Top,isValidConnection:s,isConnectable:i=!0,isConnectableStart:r=!0,isConnectableEnd:n=!0,id:o,onConnect:a,children:c,className:h,onMouseDown:d,onTouchStart:u,...f},p)=>{var m,g;const _=o||null,v="target"===e,x=Qc(),y=l.useContext(Jh),{connectOnClick:b,noPanClassName:w}=Jc(xd,io),{connecting:S,clickConnecting:C}=Jc(((e,t,s)=>i=>{const{connectionStartHandle:r,connectionEndHandle:n,connectionClickStartHandle:o}=i;return{connecting:(null==r?void 0:r.nodeId)===e&&(null==r?void 0:r.handleId)===t&&(null==r?void 0:r.type)===s||(null==n?void 0:n.nodeId)===e&&(null==n?void 0:n.handleId)===t&&(null==n?void 0:n.type)===s,clickConnecting:(null==o?void 0:o.nodeId)===e&&(null==o?void 0:o.handleId)===t&&(null==o?void 0:o.type)===s}})(y,_,e),io);y||null==(g=(m=x.getState()).onError)||g.call(m,"010",Yc());const N=e=>{const{defaultEdgeOptions:t,onConnect:s,hasDefaultEdges:i}=x.getState(),r={...t,...e};if(i){const{edges:e,setEdges:t}=x.getState();t(((e,t)=>{if(!e.source||!e.target)return t;let s;var i;return s="id"in(i=e)&&"source"in i&&"target"in i?{...e}:{...e,id:ed(e)},((e,t)=>t.some(t=>!(t.source!==e.source||t.target!==e.target||t.sourceHandle!==e.sourceHandle&&(t.sourceHandle||e.sourceHandle)||t.targetHandle!==e.targetHandle&&(t.targetHandle||e.targetHandle))))(s,t)?t:t.concat(s)})(r,e))}null==s||s(r),null==a||a(r)},E=e=>{if(!y)return;const t=xh(e);r&&(t&&0===e.button||!t)&&_d({event:e,handleId:_,nodeId:y,onConnect:N,isTarget:v,getState:x.getState,setState:x.setState,isValidConnection:s||x.getState().isValidConnection||vd}),t?null==d||d(e):null==u||u(e)};return k.createElement("div",{"data-handleid":_,"data-nodeid":y,"data-handlepos":t,"data-id":`${y}-${_}-${e}`,className:An(["react-flow__handle",`react-flow__handle-${t}`,"nodrag",w,h,{source:!v,target:v,connectable:i,connectablestart:r,connectableend:n,connecting:C,connectionindicator:i&&(r&&!S||n&&S)}]),onMouseDown:E,onTouchStart:E,onClick:b?t=>{const{onClickConnectStart:i,onClickConnectEnd:n,connectionClickStartHandle:o,connectionMode:a,isValidConnection:l}=x.getState();if(!y||!o&&!r)return;if(!o)return null==i||i(t,{nodeId:y,handleId:_,handleType:e}),void x.setState({connectionClickStartHandle:{nodeId:y,type:e,handleId:_}});const c=ch(t.target),h=s||l||vd,{connection:d,isValid:u}=fd({nodeId:y,id:_,type:e},a,o.nodeId,o.handleId||null,o.type,h,c);u&&N(d),null==n||n(t),x.setState({connectionClickStartHandle:null})}:void 0,ref:p,...f},c)});yd.displayName="Handle";var bd=l.memo(yd);const wd=({data:e,isConnectable:t,targetPosition:s=Bh.Top,sourcePosition:i=Bh.Bottom})=>k.createElement(k.Fragment,null,k.createElement(bd,{type:"target",position:s,isConnectable:t}),null==e?void 0:e.label,k.createElement(bd,{type:"source",position:i,isConnectable:t}));wd.displayName="DefaultNode";var Sd=l.memo(wd);const Cd=({data:e,isConnectable:t,sourcePosition:s=Bh.Bottom})=>k.createElement(k.Fragment,null,null==e?void 0:e.label,k.createElement(bd,{type:"source",position:s,isConnectable:t}));Cd.displayName="InputNode";var kd=l.memo(Cd);const Nd=({data:e,isConnectable:t,targetPosition:s=Bh.Top})=>k.createElement(k.Fragment,null,k.createElement(bd,{type:"target",position:s,isConnectable:t}),null==e?void 0:e.label);Nd.displayName="OutputNode";var Ed=l.memo(Nd);const jd=()=>null;jd.displayName="GroupNode";const Md=e=>({selectedNodes:e.getNodes().filter(e=>e.selected),selectedEdges:e.edges.filter(e=>e.selected).map(e=>({...e}))}),Dd=e=>e.id;function Rd(e,t){return io(e.selectedNodes.map(Dd),t.selectedNodes.map(Dd))&&io(e.selectedEdges.map(Dd),t.selectedEdges.map(Dd))}const Pd=l.memo(({onSelectionChange:e})=>{const t=Qc(),{selectedNodes:s,selectedEdges:i}=Jc(Md,Rd);return l.useEffect(()=>{const r={nodes:s,edges:i};null==e||e(r),t.getState().onSelectionChange.forEach(e=>e(r))},[s,i,e]),null});Pd.displayName="SelectionListener";const Ld=e=>!!e.onSelectionChange;function Td({onSelectionChange:e}){const t=Jc(Ld);return e||t?k.createElement(Pd,{onSelectionChange:e}):null}const Id=e=>({setNodes:e.setNodes,setEdges:e.setEdges,setDefaultNodesAndEdges:e.setDefaultNodesAndEdges,setMinZoom:e.setMinZoom,setMaxZoom:e.setMaxZoom,setTranslateExtent:e.setTranslateExtent,setNodeExtent:e.setNodeExtent,reset:e.reset});function Bd(e,t){l.useEffect(()=>{void 0!==e&&t(e)},[e])}function Od(e,t,s){l.useEffect(()=>{void 0!==t&&s({[e]:t})},[t])}const Ad=({nodes:e,edges:t,defaultNodes:s,defaultEdges:i,onConnect:r,onConnectStart:n,onConnectEnd:o,onClickConnectStart:a,onClickConnectEnd:c,nodesDraggable:h,nodesConnectable:d,nodesFocusable:u,edgesFocusable:f,edgesUpdatable:p,elevateNodesOnSelect:m,minZoom:g,maxZoom:_,nodeExtent:v,onNodesChange:x,onEdgesChange:y,elementsSelectable:b,connectionMode:w,snapGrid:S,snapToGrid:C,translateExtent:k,connectOnClick:N,defaultEdgeOptions:E,fitView:j,fitViewOptions:M,onNodesDelete:D,onEdgesDelete:R,onNodeDrag:P,onNodeDragStart:L,onNodeDragStop:T,onSelectionDrag:I,onSelectionDragStart:B,onSelectionDragStop:O,noPanClassName:A,nodeOrigin:z,rfId:$,autoPanOnConnect:H,autoPanOnNodeDrag:W,onError:F,connectionRadius:K,isValidConnection:V,nodeDragThreshold:U})=>{const{setNodes:q,setEdges:Y,setDefaultNodesAndEdges:X,setMinZoom:G,setMaxZoom:Z,setTranslateExtent:J,setNodeExtent:Q,reset:ee}=Jc(Id,io),te=Qc();return l.useEffect(()=>{const e=null==i?void 0:i.map(e=>({...e,...E}));return X(s,e),()=>{ee()}},[]),Od("defaultEdgeOptions",E,te.setState),Od("connectionMode",w,te.setState),Od("onConnect",r,te.setState),Od("onConnectStart",n,te.setState),Od("onConnectEnd",o,te.setState),Od("onClickConnectStart",a,te.setState),Od("onClickConnectEnd",c,te.setState),Od("nodesDraggable",h,te.setState),Od("nodesConnectable",d,te.setState),Od("nodesFocusable",u,te.setState),Od("edgesFocusable",f,te.setState),Od("edgesUpdatable",p,te.setState),Od("elementsSelectable",b,te.setState),Od("elevateNodesOnSelect",m,te.setState),Od("snapToGrid",C,te.setState),Od("snapGrid",S,te.setState),Od("onNodesChange",x,te.setState),Od("onEdgesChange",y,te.setState),Od("connectOnClick",N,te.setState),Od("fitViewOnInit",j,te.setState),Od("fitViewOnInitOptions",M,te.setState),Od("onNodesDelete",D,te.setState),Od("onEdgesDelete",R,te.setState),Od("onNodeDrag",P,te.setState),Od("onNodeDragStart",L,te.setState),Od("onNodeDragStop",T,te.setState),Od("onSelectionDrag",I,te.setState),Od("onSelectionDragStart",B,te.setState),Od("onSelectionDragStop",O,te.setState),Od("noPanClassName",A,te.setState),Od("nodeOrigin",z,te.setState),Od("rfId",$,te.setState),Od("autoPanOnConnect",H,te.setState),Od("autoPanOnNodeDrag",W,te.setState),Od("onError",F,te.setState),Od("connectionRadius",K,te.setState),Od("isValidConnection",V,te.setState),Od("nodeDragThreshold",U,te.setState),Bd(e,q),Bd(t,Y),Bd(g,G),Bd(_,Z),Bd(k,J),Bd(v,Q),null},zd={display:"none"},$d={position:"absolute",width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0px, 0px, 0px, 0px)",clipPath:"inset(100%)"},Hd="react-flow__node-desc",Wd="react-flow__edge-desc",Fd=e=>e.ariaLiveMessage;function Kd({rfId:e}){const t=Jc(Fd);return k.createElement("div",{id:`react-flow__aria-live-${e}`,"aria-live":"assertive","aria-atomic":"true",style:$d},t)}function Vd({rfId:e,disableKeyboardA11y:t}){return k.createElement(k.Fragment,null,k.createElement("div",{id:`${Hd}-${e}`,style:zd},"Press enter or space to select a node.",!t&&"You can then use the arrow keys to move the node around."," Press delete to remove it and escape to cancel."," "),k.createElement("div",{id:`${Wd}-${e}`,style:zd},"Press enter or space to select an edge. You can then press delete to remove it or escape to cancel."),!t&&k.createElement(Kd,{rfId:e}))}var Ud=(e=null,t={actInsideInputWithModifier:!0})=>{const[s,i]=l.useState(!1),r=l.useRef(!1),n=l.useRef(new Set([])),[o,a]=l.useMemo(()=>{if(null!==e){const t=(Array.isArray(e)?e:[e]).filter(e=>"string"==typeof e).map(e=>e.split("+")),s=t.reduce((e,t)=>e.concat(...t),[]);return[t,s]}return[[],[]]},[e]);return l.useEffect(()=>{const s="undefined"!=typeof document?document:null,l=(null==t?void 0:t.target)||s;if(null!==e){const e=e=>{r.current=e.ctrlKey||e.metaKey||e.shiftKey;if((!r.current||r.current&&!t.actInsideInputWithModifier)&&vh(e))return!1;const s=Yd(e.code,a);n.current.add(e[s]),qd(o,n.current,!1)&&(e.preventDefault(),i(!0))},s=e=>{if((!r.current||r.current&&!t.actInsideInputWithModifier)&&vh(e))return!1;const s=Yd(e.code,a);qd(o,n.current,!0)?(i(!1),n.current.clear()):n.current.delete(e[s]),"Meta"===e.key&&n.current.clear(),r.current=!1},c=()=>{n.current.clear(),i(!1)};return null==l||l.addEventListener("keydown",e),null==l||l.addEventListener("keyup",s),window.addEventListener("blur",c),()=>{null==l||l.removeEventListener("keydown",e),null==l||l.removeEventListener("keyup",s),window.removeEventListener("blur",c)}}},[e,i]),s};function qd(e,t,s){return e.filter(e=>s||e.length===t.size).some(e=>e.every(e=>t.has(e)))}function Yd(e,t){return t.includes(e)?"code":"key"}function Xd(e,t,s,i){var r,n;const o=e.parentNode||e.parentId;if(!o)return s;const a=t.get(o),l=rd(a,i);return Xd(a,t,{x:(s.x??0)+l.x,y:(s.y??0)+l.y,z:((null==(r=a[gh])?void 0:r.z)??0)>(s.z??0)?(null==(n=a[gh])?void 0:n.z)??0:s.z??0},i)}function Gd(e,t,s){e.forEach(i=>{var r;const n=i.parentNode||i.parentId;if(n&&!e.has(n))throw new Error(`Parent node ${n} not found`);if(n||(null==s?void 0:s[i.id])){const{x:n,y:o,z:a}=Xd(i,e,{...i.position,z:(null==(r=i[gh])?void 0:r.z)??0},t);i.positionAbsolute={x:n,y:o},i[gh].z=a,(null==s?void 0:s[i.id])&&(i[gh].isParent=!0)}})}function Zd(e,t,s,i){const r=new Map,n={},o=i?1e3:0;return e.forEach(e=>{var s;const i=(mh(e.zIndex)?e.zIndex:0)+(e.selected?o:0),a=t.get(e.id),l={...e,positionAbsolute:{x:e.position.x,y:e.position.y}},c=e.parentNode||e.parentId;c&&(n[c]=!0);const h=(null==a?void 0:a.type)&&(null==a?void 0:a.type)!==e.type;Object.defineProperty(l,gh,{enumerable:!1,value:{handleBounds:h||null==(s=null==a?void 0:a[gh])?void 0:s.handleBounds,z:i}}),r.set(e.id,l)}),Gd(r,s,n),r}function Jd(e,t={}){const{getNodes:s,width:i,height:r,minZoom:n,maxZoom:o,d3Zoom:a,d3Selection:l,fitViewOnInitDone:c,fitViewOnInit:h,nodeOrigin:d}=e(),u=t.initial&&!c&&h;if(a&&l&&(u||!t.initial)){const e=s().filter(e=>{var s;const i=t.includeHiddenNodes?e.width&&e.height:!e.hidden;return(null==(s=t.nodes)?void 0:s.length)?i&&t.nodes.some(t=>t.id===e.id):i}),c=e.every(e=>e.width&&e.height);if(e.length>0&&c){const s=nd(e,d),{x:c,y:h,zoom:u}=ld(s,i,r,t.minZoom??n,t.maxZoom??o,t.padding??.1),f=Rc.translate(c,h).scale(u);return"number"==typeof t.duration&&t.duration>0?a.transform(cd(l,t.duration),f):a.transform(l,f),!0}}return!1}function Qd(e,t){return e.forEach(e=>{const s=t.get(e.id);s&&t.set(s.id,{...s,[gh]:s[gh],selected:e.selected})}),new Map(t)}function eu(e,t){return t.map(t=>{const s=e.find(e=>e.id===t.id);return s&&(t.selected=s.selected),t})}function tu({changedNodes:e,changedEdges:t,get:s,set:i}){const{nodeInternals:r,edges:n,onNodesChange:o,onEdgesChange:a,hasDefaultNodes:l,hasDefaultEdges:c}=s();(null==e?void 0:e.length)&&(l&&i({nodeInternals:Qd(e,r)}),null==o||o(e)),(null==t?void 0:t.length)&&(c&&i({edges:eu(t,n)}),null==a||a(t))}const su=()=>{},iu={zoomIn:su,zoomOut:su,zoomTo:su,getZoom:()=>1,setViewport:su,getViewport:()=>({x:0,y:0,zoom:1}),fitView:()=>!1,setCenter:su,fitBounds:su,project:e=>e,screenToFlowPosition:e=>e,flowToScreenPosition:e=>e,viewportInitialized:!1},ru=e=>({d3Zoom:e.d3Zoom,d3Selection:e.d3Selection});function nu(){const e=(()=>{const e=Qc(),{d3Zoom:t,d3Selection:s}=Jc(ru,io);return l.useMemo(()=>s&&t?{zoomIn:e=>t.scaleBy(cd(s,null==e?void 0:e.duration),1.2),zoomOut:e=>t.scaleBy(cd(s,null==e?void 0:e.duration),1/1.2),zoomTo:(e,i)=>t.scaleTo(cd(s,null==i?void 0:i.duration),e),getZoom:()=>e.getState().transform[2],setViewport:(i,r)=>{const[n,o,a]=e.getState().transform,l=Rc.translate(i.x??n,i.y??o).scale(i.zoom??a);t.transform(cd(s,null==r?void 0:r.duration),l)},getViewport:()=>{const[t,s,i]=e.getState().transform;return{x:t,y:s,zoom:i}},fitView:t=>Jd(e.getState,t),setCenter:(i,r,n)=>{const{width:o,height:a,maxZoom:l}=e.getState(),c=void 0!==(null==n?void 0:n.zoom)?n.zoom:l,h=o/2-i*c,d=a/2-r*c,u=Rc.translate(h,d).scale(c);t.transform(cd(s,null==n?void 0:n.duration),u)},fitBounds:(i,r)=>{const{width:n,height:o,minZoom:a,maxZoom:l}=e.getState(),{x:c,y:h,zoom:d}=ld(i,n,o,a,l,(null==r?void 0:r.padding)??.1),u=Rc.translate(c,h).scale(d);t.transform(cd(s,null==r?void 0:r.duration),u)},project:t=>{const{transform:s,snapToGrid:i,snapGrid:r}=e.getState();return console.warn("[DEPRECATED] `project` is deprecated. Instead use `screenToFlowPosition`. There is no need to subtract the react flow bounds anymore! https://reactflow.dev/api-reference/types/react-flow-instance#screen-to-flow-position"),sd(t,s,i,r)},screenToFlowPosition:t=>{const{transform:s,snapToGrid:i,snapGrid:r,domNode:n}=e.getState();if(!n)return t;const{x:o,y:a}=n.getBoundingClientRect(),l={x:t.x-o,y:t.y-a};return sd(l,s,i,r)},flowToScreenPosition:t=>{const{transform:s,domNode:i}=e.getState();if(!i)return t;const{x:r,y:n}=i.getBoundingClientRect(),o=id(t,s);return{x:o.x+r,y:o.y+n}},viewportInitialized:!0}:iu,[t,s])})(),t=Qc(),s=l.useCallback(()=>t.getState().getNodes().map(e=>({...e})),[]),i=l.useCallback(e=>t.getState().nodeInternals.get(e),[]),r=l.useCallback(()=>{const{edges:e=[]}=t.getState();return e.map(e=>({...e}))},[]),n=l.useCallback(e=>{const{edges:s=[]}=t.getState();return s.find(t=>t.id===e)},[]),o=l.useCallback(e=>{const{getNodes:s,setNodes:i,hasDefaultNodes:r,onNodesChange:n}=t.getState(),o=s(),a="function"==typeof e?e(o):e;if(r)i(a);else if(n){n(0===a.length?o.map(e=>({type:"remove",id:e.id})):a.map(e=>({item:e,type:"reset"})))}},[]),a=l.useCallback(e=>{const{edges:s=[],setEdges:i,hasDefaultEdges:r,onEdgesChange:n}=t.getState(),o="function"==typeof e?e(s):e;if(r)i(o);else if(n){n(0===o.length?s.map(e=>({type:"remove",id:e.id})):o.map(e=>({item:e,type:"reset"})))}},[]),c=l.useCallback(e=>{const s=Array.isArray(e)?e:[e],{getNodes:i,setNodes:r,hasDefaultNodes:n,onNodesChange:o}=t.getState();if(n){r([...i(),...s])}else if(o){o(s.map(e=>({item:e,type:"add"})))}},[]),h=l.useCallback(e=>{const s=Array.isArray(e)?e:[e],{edges:i=[],setEdges:r,hasDefaultEdges:n,onEdgesChange:o}=t.getState();if(n)r([...i,...s]);else if(o){o(s.map(e=>({item:e,type:"add"})))}},[]),d=l.useCallback(()=>{const{getNodes:e,edges:s=[],transform:i}=t.getState(),[r,n,o]=i;return{nodes:e().map(e=>({...e})),edges:s.map(e=>({...e})),viewport:{x:r,y:n,zoom:o}}},[]),u=l.useCallback(({nodes:e,edges:s})=>{const{nodeInternals:i,getNodes:r,edges:n,hasDefaultNodes:o,hasDefaultEdges:a,onNodesDelete:l,onEdgesDelete:c,onNodesChange:h,onEdgesChange:d}=t.getState(),u=(e||[]).map(e=>e.id),f=(s||[]).map(e=>e.id),p=r().reduce((e,t)=>{const s=t.parentNode||t.parentId,i=!u.includes(t.id)&&s&&e.find(e=>e.id===s);return("boolean"!=typeof t.deletable||t.deletable)&&(u.includes(t.id)||i)&&e.push(t),e},[]),m=n.filter(e=>"boolean"!=typeof e.deletable||e.deletable),g=m.filter(e=>f.includes(e.id));if(p||g){const e=ad(p,m),s=[...g,...e],r=s.reduce((e,t)=>(e.includes(t.id)||e.push(t.id),e),[]);if((a||o)&&(a&&t.setState({edges:n.filter(e=>!r.includes(e.id))}),o&&(p.forEach(e=>{i.delete(e.id)}),t.setState({nodeInternals:new Map(i)}))),r.length>0&&(null==c||c(s),d&&d(r.map(e=>({id:e,type:"remove"})))),p.length>0&&(null==l||l(p),h)){h(p.map(e=>({id:e.id,type:"remove"})))}}},[]),f=l.useCallback(e=>{const s=mh((i=e).width)&&mh(i.height)&&mh(i.x)&&mh(i.y);var i;const r=s?null:t.getState().nodeInternals.get(e.id);if(!s&&!r)return[null,null,s];return[s?e:fh(r),r,s]},[]),p=l.useCallback((e,s=!0,i)=>{const[r,n,o]=f(e);return r?(i||t.getState().getNodes()).filter(e=>{if(!(o||e.id!==n.id&&e.positionAbsolute))return!1;const t=fh(e),i=ph(t,r);return s&&i>0||i>=r.width*r.height}):[]},[]),m=l.useCallback((e,t,s=!0)=>{const[i]=f(e);if(!i)return!1;const r=ph(i,t);return s&&r>0||r>=i.width*i.height},[]);return l.useMemo(()=>({...e,getNodes:s,getNode:i,getEdges:r,getEdge:n,setNodes:o,setEdges:a,addNodes:c,addEdges:h,toObject:d,deleteElements:u,getIntersectingNodes:p,isNodeIntersecting:m}),[e,s,i,r,n,o,a,c,h,d,u,p,m])}const ou={actInsideInputWithModifier:!1};const au={position:"absolute",width:"100%",height:"100%",top:0,left:0},lu=e=>({x:e.x,y:e.y,zoom:e.k}),cu=(e,t)=>e.target.closest(`.${t}`),hu=(e,t)=>2===t&&Array.isArray(e)&&e.includes(2),du=e=>{const t=e.ctrlKey&&bh()?10:1;return-e.deltaY*(1===e.deltaMode?.05:e.deltaMode?1:.002)*t},uu=e=>({d3Zoom:e.d3Zoom,d3Selection:e.d3Selection,d3ZoomHandler:e.d3ZoomHandler,userSelectionActive:e.userSelectionActive}),fu=({onMove:e,onMoveStart:t,onMoveEnd:s,onPaneContextMenu:i,zoomOnScroll:r=!0,zoomOnPinch:n=!0,panOnScroll:o=!1,panOnScrollSpeed:a=.5,panOnScrollMode:c=jh.Free,zoomOnDoubleClick:h=!0,elementsSelectable:d,panOnDrag:u=!0,defaultViewport:f,translateExtent:p,minZoom:m,maxZoom:g,zoomActivationKeyCode:_,preventScrolling:v=!0,children:x,noWheelClassName:y,noPanClassName:b})=>{const w=l.useRef(),S=Qc(),C=l.useRef(!1),N=l.useRef(!1),E=l.useRef(null),j=l.useRef({x:0,y:0,zoom:0}),{d3Zoom:M,d3Selection:D,d3ZoomHandler:R,userSelectionActive:P}=Jc(uu,io),L=Ud(_),T=l.useRef(0),I=l.useRef(!1),B=l.useRef();return function(e){const t=Qc();l.useEffect(()=>{let s;const i=()=>{var s,i;if(!e.current)return;const r=rh(e.current);0!==r.height&&0!==r.width||null==(i=(s=t.getState()).onError)||i.call(s,"004",Kc()),t.setState({width:r.width||500,height:r.height||500})};return i(),window.addEventListener("resize",i),e.current&&(s=new ResizeObserver(()=>i()),s.observe(e.current)),()=>{window.removeEventListener("resize",i),s&&e.current&&s.unobserve(e.current)}},[])}(E),l.useEffect(()=>{if(E.current){const e=E.current.getBoundingClientRect(),t=$c().scaleExtent([m,g]).translateExtent(p),s=wa(E.current).call(t),i=Rc.translate(f.x,f.y).scale(nh(f.zoom,m,g)),r=[[0,0],[e.width,e.height]],n=t.constrain()(i,r,p);t.transform(s,n),t.wheelDelta(du),S.setState({d3Zoom:t,d3Selection:s,d3ZoomHandler:s.on("wheel.zoom"),transform:[n.x,n.y,n.k],domNode:E.current.closest(".react-flow")})}},[]),l.useEffect(()=>{D&&M&&(!o||L||P?void 0!==R&&D.on("wheel.zoom",function(e,t){if(!v&&"wheel"===e.type&&!e.ctrlKey||cu(e,y))return null;e.preventDefault(),R.call(this,e,t)},{passive:!1}):D.on("wheel.zoom",i=>{if(cu(i,y))return!1;i.preventDefault(),i.stopImmediatePropagation();const r=D.property("__zoom").k||1;if(i.ctrlKey&&n){const e=Sa(i),t=du(i),s=r*Math.pow(2,t);return void M.scaleTo(D,s,e,i)}const o=1===i.deltaMode?20:1;let l=c===jh.Vertical?0:i.deltaX*o,h=c===jh.Horizontal?0:i.deltaY*o;!bh()&&i.shiftKey&&c!==jh.Vertical&&(l=i.deltaY*o,h=0),M.translateBy(D,-l/r*a,-h/r*a,{internal:!0});const d=lu(D.property("__zoom")),{onViewportChangeStart:u,onViewportChange:f,onViewportChangeEnd:p}=S.getState();clearTimeout(B.current),I.current||(I.current=!0,null==t||t(i,d),null==u||u(d)),I.current&&(null==e||e(i,d),null==f||f(d),B.current=setTimeout(()=>{null==s||s(i,d),null==p||p(d),I.current=!1},150))},{passive:!1}))},[P,o,c,D,M,R,L,n,v,y,t,e,s]),l.useEffect(()=>{M&&M.on("start",e=>{var s,i;if(!e.sourceEvent||e.sourceEvent.internal)return null;T.current=null==(s=e.sourceEvent)?void 0:s.button;const{onViewportChangeStart:r}=S.getState(),n=lu(e.transform);C.current=!0,j.current=n,"mousedown"===(null==(i=e.sourceEvent)?void 0:i.type)&&S.setState({paneDragging:!0}),null==r||r(n),null==t||t(e.sourceEvent,n)})},[M,t]),l.useEffect(()=>{M&&(P&&!C.current?M.on("zoom",null):P||M.on("zoom",t=>{var s;const{onViewportChange:r}=S.getState();if(S.setState({transform:[t.transform.x,t.transform.y,t.transform.k]}),N.current=!(!i||!hu(u,T.current??0)),(e||r)&&!(null==(s=t.sourceEvent)?void 0:s.internal)){const s=lu(t.transform);null==r||r(s),null==e||e(t.sourceEvent,s)}}))},[P,M,e,u,i]),l.useEffect(()=>{M&&M.on("end",e=>{if(!e.sourceEvent||e.sourceEvent.internal)return null;const{onViewportChangeEnd:t}=S.getState();if(C.current=!1,S.setState({paneDragging:!1}),i&&hu(u,T.current??0)&&!N.current&&i(e.sourceEvent),N.current=!1,(s||t)&&(r=j.current,n=e.transform,r.x!==n.x||r.y!==n.y||r.zoom!==n.k)){const i=lu(e.transform);j.current=i,clearTimeout(w.current),w.current=setTimeout(()=>{null==t||t(i),null==s||s(e.sourceEvent,i)},o?150:0)}var r,n})},[M,o,u,s,i]),l.useEffect(()=>{M&&M.filter(e=>{const t=L||r,s=n&&e.ctrlKey;if((!0===u||Array.isArray(u)&&u.includes(1))&&1===e.button&&"mousedown"===e.type&&(cu(e,"react-flow__node")||cu(e,"react-flow__edge")))return!0;if(!(u||t||o||h||n))return!1;if(P)return!1;if(!h&&"dblclick"===e.type)return!1;if(cu(e,y)&&"wheel"===e.type)return!1;if(cu(e,b)&&("wheel"!==e.type||o&&"wheel"===e.type&&!L))return!1;if(!n&&e.ctrlKey&&"wheel"===e.type)return!1;if(!t&&!o&&!s&&"wheel"===e.type)return!1;if(!u&&("mousedown"===e.type||"touchstart"===e.type))return!1;if(Array.isArray(u)&&!u.includes(e.button)&&"mousedown"===e.type)return!1;const i=Array.isArray(u)&&u.includes(e.button)||!e.button||e.button<=1;return(!e.ctrlKey||"wheel"===e.type)&&i})},[P,M,r,n,o,h,u,d,L]),k.createElement("div",{className:"react-flow__renderer",ref:E,style:au},x)},pu=e=>({userSelectionActive:e.userSelectionActive,userSelectionRect:e.userSelectionRect});function mu(){const{userSelectionActive:e,userSelectionRect:t}=Jc(pu,io);return e&&t?k.createElement("div",{className:"react-flow__selection react-flow__container",style:{width:t.width,height:t.height,transform:`translate(${t.x}px, ${t.y}px)`}}):null}function gu(e,t){const s=t.parentNode||t.parentId,i=e.find(e=>e.id===s);if(i){const e=t.position.x+t.width-i.width,s=t.position.y+t.height-i.height;if(e>0||s>0||t.position.x<0||t.position.y<0){if(i.style={...i.style},i.style.width=i.style.width??i.width,i.style.height=i.style.height??i.height,e>0&&(i.style.width+=e),s>0&&(i.style.height+=s),t.position.x<0){const e=Math.abs(t.position.x);i.position.x=i.position.x-e,i.style.width+=e,t.position.x=0}if(t.position.y<0){const e=Math.abs(t.position.y);i.position.y=i.position.y-e,i.style.height+=e,t.position.y=0}i.width=i.style.width,i.height=i.style.height}}}function _u(e,t){return function(e,t){if(e.some(e=>"reset"===e.type))return e.filter(e=>"reset"===e.type).map(e=>e.item);const s=e.filter(e=>"add"===e.type).map(e=>e.item);return t.reduce((t,s)=>{const i=e.filter(e=>e.id===s.id);if(0===i.length)return t.push(s),t;const r={...s};for(const e of i)if(e)switch(e.type){case"select":r.selected=e.selected;break;case"position":void 0!==e.position&&(r.position=e.position),void 0!==e.positionAbsolute&&(r.positionAbsolute=e.positionAbsolute),void 0!==e.dragging&&(r.dragging=e.dragging),r.expandParent&&gu(t,r);break;case"dimensions":void 0!==e.dimensions&&(r.width=e.dimensions.width,r.height=e.dimensions.height),void 0!==e.updateStyle&&(r.style={...r.style||{},...e.dimensions}),"boolean"==typeof e.resizing&&(r.resizing=e.resizing),r.expandParent&&gu(t,r);break;case"remove":return t}return t.push(r),t},s)}(e,t)}const vu=(e,t)=>({id:e,type:"select",selected:t});function xu(e,t){return e.reduce((e,s)=>{const i=t.includes(s.id);return!s.selected&&i?(s.selected=!0,e.push(vu(s.id,!0))):s.selected&&!i&&(s.selected=!1,e.push(vu(s.id,!1))),e},[])}const yu=(e,t)=>s=>{s.target===t.current&&(null==e||e(s))},bu=e=>({userSelectionActive:e.userSelectionActive,elementsSelectable:e.elementsSelectable,dragging:e.paneDragging}),wu=l.memo(({isSelecting:e,selectionMode:t=Dh.Full,panOnDrag:s,onSelectionStart:i,onSelectionEnd:r,onPaneClick:n,onPaneContextMenu:o,onPaneScroll:a,onPaneMouseEnter:c,onPaneMouseMove:h,onPaneMouseLeave:d,children:u})=>{const f=l.useRef(null),p=Qc(),m=l.useRef(0),g=l.useRef(0),_=l.useRef(),{userSelectionActive:v,elementsSelectable:x,dragging:y}=Jc(bu,io),b=()=>{p.setState({userSelectionActive:!1,userSelectionRect:null}),m.current=0,g.current=0},w=e=>{null==n||n(e),p.getState().resetSelectedElements(),p.setState({nodesSelectionActive:!1})},S=a?e=>a(e):void 0,C=x&&(e||v);return k.createElement("div",{className:An(["react-flow__pane",{dragging:y,selection:e}]),onClick:C?void 0:yu(w,f),onContextMenu:yu(e=>{Array.isArray(s)&&(null==s?void 0:s.includes(2))?e.preventDefault():null==o||o(e)},f),onWheel:yu(S,f),onMouseEnter:C?void 0:c,onMouseDown:C?t=>{const{resetSelectedElements:s,domNode:r}=p.getState();if(_.current=null==r?void 0:r.getBoundingClientRect(),!x||!e||0!==t.button||t.target!==f.current||!_.current)return;const{x:n,y:o}=yh(t,_.current);s(),p.setState({userSelectionRect:{width:0,height:0,startX:n,startY:o,x:n,y:o}}),null==i||i(t)}:void 0,onMouseMove:C?s=>{const{userSelectionRect:i,nodeInternals:r,edges:n,transform:o,onNodesChange:a,onEdgesChange:l,nodeOrigin:c,getNodes:h}=p.getState();if(!e||!_.current||!i)return;p.setState({userSelectionActive:!0,nodesSelectionActive:!1});const d=yh(s,_.current),u=i.startX??0,f=i.startY??0,v={...i,x:d.x<u?d.x:u,y:d.y<f?d.y:f,width:Math.abs(d.x-u),height:Math.abs(d.y-f)},x=h(),y=od(r,v,o,t===Dh.Partial,!0,c),b=ad(y,n).map(e=>e.id),w=y.map(e=>e.id);if(m.current!==w.length){m.current=w.length;const e=xu(x,w);e.length&&(null==a||a(e))}if(g.current!==b.length){g.current=b.length;const e=xu(n,b);e.length&&(null==l||l(e))}p.setState({userSelectionRect:v})}:h,onMouseUp:C?e=>{if(0!==e.button)return;const{userSelectionRect:t}=p.getState();!v&&t&&e.target===f.current&&(null==w||w(e)),p.setState({nodesSelectionActive:m.current>0}),b(),null==r||r(e)}:void 0,onMouseLeave:C?e=>{v&&(p.setState({nodesSelectionActive:m.current>0}),null==r||r(e)),b()}:d,ref:f,style:au},u,k.createElement(mu,null))});function Su(e,t){const s=e.parentNode||e.parentId;if(!s)return!1;const i=t.get(s);return!!i&&(!!i.selected||Su(i,t))}function Cu(e,t,s){let i=e;do{if(null==i?void 0:i.matches(t))return!0;if(i===s.current)return!1;i=i.parentElement}while(i);return!1}function ku(e,t,s,i){return Array.from(e.values()).filter(s=>(s.selected||s.id===i)&&(!s.parentNode||s.parentId||!Su(s,e))&&(s.draggable||t&&void 0===s.draggable)).map(e=>{var t,i;return{id:e.id,position:e.position||{x:0,y:0},positionAbsolute:e.positionAbsolute||{x:0,y:0},distance:{x:s.x-((null==(t=e.positionAbsolute)?void 0:t.x)??0),y:s.y-((null==(i=e.positionAbsolute)?void 0:i.y)??0)},delta:{x:0,y:0},extent:e.extent,parentNode:e.parentNode||e.parentId,parentId:e.parentNode||e.parentId,width:e.width,height:e.height,expandParent:e.expandParent}})}function Nu(e,t,s,i,r=[0,0],n){const o=function(e,t){return t&&"parent"!==t?[t[0],[t[1][0]-(e.width||0),t[1][1]-(e.height||0)]]:t}(e,e.extent||i);let a=o;const l=e.parentNode||e.parentId;if("parent"!==e.extent||e.expandParent){if(e.extent&&l&&"parent"!==e.extent){const t=s.get(l),{x:i,y:n}=rd(t,r).positionAbsolute;a=[[e.extent[0][0]+i,e.extent[0][1]+n],[e.extent[1][0]+i,e.extent[1][1]+n]]}}else if(l&&e.width&&e.height){const t=s.get(l),{x:i,y:n}=rd(t,r).positionAbsolute;a=t&&mh(i)&&mh(n)&&mh(t.width)&&mh(t.height)?[[i+e.width*r[0],n+e.height*r[1]],[i+t.width-e.width+e.width*r[0],n+t.height-e.height+e.height*r[1]]]:a}else null==n||n("005",Vc()),a=o;let c={x:0,y:0};if(l){const e=s.get(l);c=rd(e,r).positionAbsolute}const h=a&&"parent"!==a?oh(t,a):t;return{position:{x:h.x-c.x,y:h.y-c.y},positionAbsolute:h}}function Eu({nodeId:e,dragItems:t,nodeInternals:s}){const i=t.map(e=>({...s.get(e.id),position:e.position,positionAbsolute:e.positionAbsolute}));return[e?i.find(t=>t.id===e):i[0],i]}wu.displayName="Pane";const ju=(e,t,s,i)=>{const r=t.querySelectorAll(e);if(!r||!r.length)return null;const n=Array.from(r),o=t.getBoundingClientRect(),a=o.width*i[0],l=o.height*i[1];return n.map(e=>{const t=e.getBoundingClientRect();return{id:e.getAttribute("data-handleid"),position:e.getAttribute("data-handlepos"),x:(t.left-o.left-a)/s,y:(t.top-o.top-l)/s,...rh(e)}})};function Mu(e,t,s){return void 0===s?s:i=>{const r=t().nodeInternals.get(e);r&&s(i,{...r})}}function Du({id:e,store:t,unselect:s=!1,nodeRef:i}){const{addSelectedNodes:r,unselectNodesAndEdges:n,multiSelectionActive:o,nodeInternals:a,onError:l}=t.getState(),c=a.get(e);c?(t.setState({nodesSelectionActive:!1}),c.selected?(s||c.selected&&o)&&(n({nodes:[c],edges:[]}),requestAnimationFrame(()=>{var e;return null==(e=null==i?void 0:i.current)?void 0:e.blur()})):r([e])):null==l||l("012",Gc(e))}function Ru(e){return(t,s,i)=>null==e?void 0:e(t,i)}function Pu({nodeRef:e,disabled:t=!1,noDragClassName:s,handleSelector:i,nodeId:r,isSelectable:n,selectNodesOnDrag:o}){const a=Qc(),[c,h]=l.useState(!1),d=l.useRef([]),u=l.useRef({x:null,y:null}),f=l.useRef(0),p=l.useRef(null),m=l.useRef({x:0,y:0}),g=l.useRef(null),_=l.useRef(!1),v=l.useRef(!1),x=l.useRef(!1),y=function(){const e=Qc();return l.useCallback(({sourceEvent:t})=>{const{transform:s,snapGrid:i,snapToGrid:r}=e.getState(),n=t.touches?t.touches[0].clientX:t.clientX,o=t.touches?t.touches[0].clientY:t.clientY,a={x:(n-s[0])/s[2],y:(o-s[1])/s[2]};return{xSnapped:r?i[0]*Math.round(a.x/i[0]):a.x,ySnapped:r?i[1]*Math.round(a.y/i[1]):a.y,...a}},[])}();return l.useEffect(()=>{if(null==e?void 0:e.current){const l=wa(e.current),c=({x:e,y:t})=>{const{nodeInternals:s,onNodeDrag:i,onSelectionDrag:n,updateNodePositions:o,nodeExtent:l,snapGrid:c,snapToGrid:f,nodeOrigin:p,onError:m}=a.getState();u.current={x:e,y:t};let _=!1,v={x:0,y:0,x2:0,y2:0};if(d.current.length>1&&l){const e=nd(d.current,p);v=dh(e)}if(d.current=d.current.map(i=>{const r={x:e-i.distance.x,y:t-i.distance.y};f&&(r.x=c[0]*Math.round(r.x/c[0]),r.y=c[1]*Math.round(r.y/c[1]));const n=[[l[0][0],l[0][1]],[l[1][0],l[1][1]]];d.current.length>1&&l&&!i.extent&&(n[0][0]=i.positionAbsolute.x-v.x+l[0][0],n[1][0]=i.positionAbsolute.x+(i.width??0)-v.x2+l[1][0],n[0][1]=i.positionAbsolute.y-v.y+l[0][1],n[1][1]=i.positionAbsolute.y+(i.height??0)-v.y2+l[1][1]);const o=Nu(i,r,s,n,p,m);return _=_||i.position.x!==o.position.x||i.position.y!==o.position.y,i.position=o.position,i.positionAbsolute=o.positionAbsolute,i}),!_)return;o(d.current,!0,!0),h(!0);const x=r?i:Ru(n);if(x&&g.current){const[e,t]=Eu({nodeId:r,dragItems:d.current,nodeInternals:s});x(g.current,e,t)}},b=()=>{if(!p.current)return;const[e,t]=lh(m.current,p.current);if(0!==e||0!==t){const{transform:s,panBy:i}=a.getState();u.current.x=(u.current.x??0)-e/s[2],u.current.y=(u.current.y??0)-t/s[2],i({x:e,y:t})&&c(u.current)}f.current=requestAnimationFrame(b)},w=t=>{var s;const{nodeInternals:i,multiSelectionActive:l,nodesDraggable:c,unselectNodesAndEdges:h,onNodeDragStart:f,onSelectionDragStart:p}=a.getState();v.current=!0;const m=r?f:Ru(p);o&&n||l||!r||(null==(s=i.get(r))?void 0:s.selected)||h(),r&&n&&o&&Du({id:r,store:a,nodeRef:e});const g=y(t);if(u.current=g,d.current=ku(i,c,g,r),m&&d.current){const[e,s]=Eu({nodeId:r,dragItems:d.current,nodeInternals:i});m(t.sourceEvent,e,s)}};if(!t){const t=function(){var e,t,s,i,r=Pa,n=La,o=Ta,a=Ia,l={},c=no("start","drag","end"),h=0,d=0;function u(e){e.on("mousedown.drag",f).filter(a).on("touchstart.drag",g).on("touchmove.drag",_,Ca).on("touchend.drag touchcancel.drag",v).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function f(o,a){if(!i&&r.call(this,o,a)){var l=x(this,n.call(this,o,a),o,a,"mouse");l&&(wa(o.view).on("mousemove.drag",p,ka).on("mouseup.drag",m,ka),ja(o.view),Na(o),s=!1,e=o.clientX,t=o.clientY,l("start",o))}}function p(i){if(Ea(i),!s){var r=i.clientX-e,n=i.clientY-t;s=r*r+n*n>d}l.mouse("drag",i)}function m(e){wa(e.view).on("mousemove.drag mouseup.drag",null),Ma(e.view,s),Ea(e),l.mouse("end",e)}function g(e,t){if(r.call(this,e,t)){var s,i,o=e.changedTouches,a=n.call(this,e,t),l=o.length;for(s=0;s<l;++s)(i=x(this,a,e,t,o[s].identifier,o[s]))&&(Na(e),i("start",e,o[s]))}}function _(e){var t,s,i=e.changedTouches,r=i.length;for(t=0;t<r;++t)(s=l[i[t].identifier])&&(Ea(e),s("drag",e,i[t]))}function v(e){var t,s,r=e.changedTouches,n=r.length;for(i&&clearTimeout(i),i=setTimeout(function(){i=null},500),t=0;t<n;++t)(s=l[r[t].identifier])&&(Na(e),s("end",e,r[t]))}function x(e,t,s,i,r,n){var a,d,f,p=c.copy(),m=Sa(n||s,t);if(null!=(f=o.call(e,new Ra("beforestart",{sourceEvent:s,target:u,identifier:r,active:h,x:m[0],y:m[1],dx:0,dy:0,dispatch:p}),i)))return a=f.x-m[0]||0,d=f.y-m[1]||0,function s(n,o,c){var g,_=m;switch(n){case"start":l[r]=s,g=h++;break;case"end":delete l[r],--h;case"drag":m=Sa(c||o,t),g=h}p.call(n,e,new Ra(n,{sourceEvent:o,subject:f,target:u,identifier:r,active:g,x:m[0]+a,y:m[1]+d,dx:m[0]-_[0],dy:m[1]-_[1],dispatch:p}),i)}}return u.filter=function(e){return arguments.length?(r="function"==typeof e?e:Da(!!e),u):r},u.container=function(e){return arguments.length?(n="function"==typeof e?e:Da(e),u):n},u.subject=function(e){return arguments.length?(o="function"==typeof e?e:Da(e),u):o},u.touchable=function(e){return arguments.length?(a="function"==typeof e?e:Da(!!e),u):a},u.on=function(){var e=c.on.apply(c,arguments);return e===c?u:e},u.clickDistance=function(e){return arguments.length?(d=(e=+e)*e,u):Math.sqrt(d)},u}().on("start",e=>{const{domNode:t,nodeDragThreshold:s}=a.getState();0===s&&w(e),x.current=!1;const i=y(e);u.current=i,p.current=(null==t?void 0:t.getBoundingClientRect())||null,m.current=yh(e.sourceEvent,p.current)}).on("drag",e=>{var t,s;const i=y(e),{autoPanOnNodeDrag:r,nodeDragThreshold:n}=a.getState();if("touchmove"===e.sourceEvent.type&&e.sourceEvent.touches.length>1&&(x.current=!0),!x.current){if(!_.current&&v.current&&r&&(_.current=!0,b()),!v.current){const r=i.xSnapped-((null==(t=null==u?void 0:u.current)?void 0:t.x)??0),o=i.ySnapped-((null==(s=null==u?void 0:u.current)?void 0:s.y)??0);Math.sqrt(r*r+o*o)>n&&w(e)}(u.current.x!==i.xSnapped||u.current.y!==i.ySnapped)&&d.current&&v.current&&(g.current=e.sourceEvent,m.current=yh(e.sourceEvent,p.current),c(i))}}).on("end",e=>{if(v.current&&!x.current&&(h(!1),_.current=!1,v.current=!1,cancelAnimationFrame(f.current),d.current)){const{updateNodePositions:t,nodeInternals:s,onNodeDragStop:i,onSelectionDragStop:n}=a.getState(),o=r?i:Ru(n);if(t(d.current,!1,!1),o){const[t,i]=Eu({nodeId:r,dragItems:d.current,nodeInternals:s});o(e.sourceEvent,t,i)}}}).filter(t=>{const r=t.target;return!t.button&&(!s||!Cu(r,`.${s}`,e))&&(!i||Cu(r,i,e))});return l.call(t),()=>{l.on(".drag",null)}}l.on(".drag",null)}},[e,t,s,i,n,a,r,o,y]),c}function Lu(){const e=Qc();return l.useCallback(t=>{const{nodeInternals:s,nodeExtent:i,updateNodePositions:r,getNodes:n,snapToGrid:o,snapGrid:a,onError:l,nodesDraggable:c}=e.getState(),h=n().filter(e=>e.selected&&(e.draggable||c&&void 0===e.draggable)),d=o?a[0]:5,u=o?a[1]:5,f=t.isShiftPressed?4:1,p=t.x*d*f,m=t.y*u*f;r(h.map(e=>{if(e.positionAbsolute){const t={x:e.positionAbsolute.x+p,y:e.positionAbsolute.y+m};o&&(t.x=a[0]*Math.round(t.x/a[0]),t.y=a[1]*Math.round(t.y/a[1]));const{positionAbsolute:r,position:n}=Nu(e,t,s,i,void 0,l);e.position=n,e.positionAbsolute=r}return e}),!0,!1)},[])}const Tu={ArrowUp:{x:0,y:-1},ArrowDown:{x:0,y:1},ArrowLeft:{x:-1,y:0},ArrowRight:{x:1,y:0}};var Iu=e=>{const t=({id:t,type:s,data:i,xPos:r,yPos:n,xPosOrigin:o,yPosOrigin:a,selected:c,onClick:h,onMouseEnter:d,onMouseMove:u,onMouseLeave:f,onContextMenu:p,onDoubleClick:m,style:g,className:_,isDraggable:v,isSelectable:x,isConnectable:y,isFocusable:b,selectNodesOnDrag:w,sourcePosition:S,targetPosition:C,hidden:N,resizeObserver:E,dragHandle:j,zIndex:M,isParent:D,noDragClassName:R,noPanClassName:P,initialized:L,disableKeyboardA11y:T,ariaLabel:I,rfId:B,hasHandleBounds:O})=>{const A=Qc(),z=l.useRef(null),$=l.useRef(null),H=l.useRef(S),W=l.useRef(C),F=l.useRef(s),K=x||v||h||d||u||f,V=Lu(),U=Mu(t,A.getState,d),q=Mu(t,A.getState,u),Y=Mu(t,A.getState,f),X=Mu(t,A.getState,p),G=Mu(t,A.getState,m);l.useEffect(()=>()=>{$.current&&(null==E||E.unobserve($.current),$.current=null)},[]),l.useEffect(()=>{if(z.current&&!N){const e=z.current;L&&O&&$.current===e||($.current&&(null==E||E.unobserve($.current)),null==E||E.observe(e),$.current=e)}},[N,L,O]),l.useEffect(()=>{const e=F.current!==s,i=H.current!==S,r=W.current!==C;z.current&&(e||i||r)&&(e&&(F.current=s),i&&(H.current=S),r&&(W.current=C),A.getState().updateNodeDimensions([{id:t,nodeElement:z.current,forceUpdate:!0}]))},[t,s,S,C]);const Z=Pu({nodeRef:z,disabled:N||!v,noDragClassName:R,handleSelector:j,nodeId:t,isSelectable:x,selectNodesOnDrag:w});return N?null:k.createElement("div",{className:An(["react-flow__node",`react-flow__node-${s}`,{[P]:v},_,{selected:c,selectable:x,parent:D,dragging:Z}]),ref:z,style:{zIndex:M,transform:`translate(${o}px,${a}px)`,pointerEvents:K?"all":"none",visibility:L?"visible":"hidden",...g},"data-id":t,"data-testid":`rf__node-${t}`,onMouseEnter:U,onMouseMove:q,onMouseLeave:Y,onContextMenu:X,onClick:e=>{const{nodeDragThreshold:s}=A.getState();if(x&&(!w||!v||s>0)&&Du({id:t,store:A,nodeRef:z}),h){const s=A.getState().nodeInternals.get(t);s&&h(e,{...s})}},onDoubleClick:G,onKeyDown:b?e=>{if(!vh(e)&&!T)if(_h.includes(e.key)&&x){const s="Escape"===e.key;Du({id:t,store:A,unselect:s,nodeRef:z})}else v&&c&&Object.prototype.hasOwnProperty.call(Tu,e.key)&&(A.setState({ariaLiveMessage:`Moved selected node ${e.key.replace("Arrow","").toLowerCase()}. New position, x: ${~~r}, y: ${~~n}`}),V({x:Tu[e.key].x,y:Tu[e.key].y,isShiftPressed:e.shiftKey}))}:void 0,tabIndex:b?0:void 0,role:b?"button":void 0,"aria-describedby":T?void 0:`${Hd}-${B}`,"aria-label":I},k.createElement(Qh,{value:t},k.createElement(e,{id:t,data:i,type:s,xPos:r,yPos:n,selected:c,isConnectable:y,sourcePosition:S,targetPosition:C,dragging:Z,dragHandle:j,zIndex:M})))};return t.displayName="NodeWrapper",l.memo(t)};const Bu=e=>{const t=e.getNodes().filter(e=>e.selected);return{...nd(t,e.nodeOrigin),transformString:`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]})`,userSelectionActive:e.userSelectionActive}};var Ou=l.memo(function({onSelectionContextMenu:e,noPanClassName:t,disableKeyboardA11y:s}){const i=Qc(),{width:r,height:n,x:o,y:a,transformString:c,userSelectionActive:h}=Jc(Bu,io),d=Lu(),u=l.useRef(null);if(l.useEffect(()=>{var e;s||null==(e=u.current)||e.focus({preventScroll:!0})},[s]),Pu({nodeRef:u}),h||!r||!n)return null;const f=e?t=>{const s=i.getState().getNodes().filter(e=>e.selected);e(t,s)}:void 0;return k.createElement("div",{className:An(["react-flow__nodesselection","react-flow__container",t]),style:{transform:c}},k.createElement("div",{ref:u,className:"react-flow__nodesselection-rect",onContextMenu:f,tabIndex:s?void 0:-1,onKeyDown:s?void 0:e=>{Object.prototype.hasOwnProperty.call(Tu,e.key)&&d({x:Tu[e.key].x,y:Tu[e.key].y,isShiftPressed:e.shiftKey})},style:{width:r,height:n,top:a,left:o}}))});const Au=e=>e.nodesSelectionActive,zu=({children:e,onPaneClick:t,onPaneMouseEnter:s,onPaneMouseMove:i,onPaneMouseLeave:r,onPaneContextMenu:n,onPaneScroll:o,deleteKeyCode:a,onMove:c,onMoveStart:h,onMoveEnd:d,selectionKeyCode:u,selectionOnDrag:f,selectionMode:p,onSelectionStart:m,onSelectionEnd:g,multiSelectionKeyCode:_,panActivationKeyCode:v,zoomActivationKeyCode:x,elementsSelectable:y,zoomOnScroll:b,zoomOnPinch:w,panOnScroll:S,panOnScrollSpeed:C,panOnScrollMode:N,zoomOnDoubleClick:E,panOnDrag:j,defaultViewport:M,translateExtent:D,minZoom:R,maxZoom:P,preventScrolling:L,onSelectionContextMenu:T,noWheelClassName:I,noPanClassName:B,disableKeyboardA11y:O})=>{const A=Jc(Au),z=Ud(u),$=Ud(v),H=$||j,W=$||S,F=z||f&&!0!==H;return(({deleteKeyCode:e,multiSelectionKeyCode:t})=>{const s=Qc(),{deleteElements:i}=nu(),r=Ud(e,ou),n=Ud(t);l.useEffect(()=>{if(r){const{edges:e,getNodes:t}=s.getState(),r=t().filter(e=>e.selected),n=e.filter(e=>e.selected);i({nodes:r,edges:n}),s.setState({nodesSelectionActive:!1})}},[r]),l.useEffect(()=>{s.setState({multiSelectionActive:n})},[n])})({deleteKeyCode:a,multiSelectionKeyCode:_}),k.createElement(fu,{onMove:c,onMoveStart:h,onMoveEnd:d,onPaneContextMenu:n,elementsSelectable:y,zoomOnScroll:b,zoomOnPinch:w,panOnScroll:W,panOnScrollSpeed:C,panOnScrollMode:N,zoomOnDoubleClick:E,panOnDrag:!z&&H,defaultViewport:M,translateExtent:D,minZoom:R,maxZoom:P,zoomActivationKeyCode:x,preventScrolling:L,noWheelClassName:I,noPanClassName:B},k.createElement(wu,{onSelectionStart:m,onSelectionEnd:g,onPaneClick:t,onPaneMouseEnter:s,onPaneMouseMove:i,onPaneMouseLeave:r,onPaneContextMenu:n,onPaneScroll:o,panOnDrag:H,isSelecting:!!F,selectionMode:p},e,A&&k.createElement(Ou,{onSelectionContextMenu:T,noPanClassName:B,disableKeyboardA11y:O})))};zu.displayName="FlowRenderer";var $u=l.memo(zu);function Hu(e){return{...{input:Iu(e.input||kd),default:Iu(e.default||Sd),output:Iu(e.output||Ed),group:Iu(e.group||jd)},...Object.keys(e).filter(e=>!["input","default","output","group"].includes(e)).reduce((t,s)=>(t[s]=Iu(e[s]||Sd),t),{})}}const Wu=e=>({nodesDraggable:e.nodesDraggable,nodesConnectable:e.nodesConnectable,nodesFocusable:e.nodesFocusable,elementsSelectable:e.elementsSelectable,updateNodeDimensions:e.updateNodeDimensions,onError:e.onError}),Fu=e=>{const{nodesDraggable:t,nodesConnectable:s,nodesFocusable:i,elementsSelectable:r,updateNodeDimensions:n,onError:o}=Jc(Wu,io),a=(c=e.onlyRenderVisibleElements,Jc(l.useCallback(e=>c?od(e.nodeInternals,{x:0,y:0,width:e.width,height:e.height},e.transform,!0):e.getNodes(),[c])));var c;const h=l.useRef(),d=l.useMemo(()=>{if("undefined"==typeof ResizeObserver)return null;const e=new ResizeObserver(e=>{const t=e.map(e=>({id:e.target.getAttribute("data-id"),nodeElement:e.target,forceUpdate:!0}));n(t)});return h.current=e,e},[]);return l.useEffect(()=>()=>{var e;null==(e=null==h?void 0:h.current)||e.disconnect()},[]),k.createElement("div",{className:"react-flow__nodes",style:au},a.map(n=>{var a,l,c;let h=n.type||"default";e.nodeTypes[h]||(null==o||o("003",Fc(h)),h="default");const u=e.nodeTypes[h]||e.nodeTypes.default,f=!!(n.draggable||t&&void 0===n.draggable),p=!!(n.selectable||r&&void 0===n.selectable),m=!!(n.connectable||s&&void 0===n.connectable),g=!!(n.focusable||i&&void 0===n.focusable),_=e.nodeExtent?oh(n.positionAbsolute,e.nodeExtent):n.positionAbsolute,v=(null==_?void 0:_.x)??0,x=(null==_?void 0:_.y)??0,y=(({x:e,y:t,width:s,height:i,origin:r})=>s&&i?r[0]<0||r[1]<0||r[0]>1||r[1]>1?{x:e,y:t}:{x:e-s*r[0],y:t-i*r[1]}:{x:e,y:t})({x:v,y:x,width:n.width??0,height:n.height??0,origin:e.nodeOrigin});return k.createElement(u,{key:n.id,id:n.id,className:n.className,style:n.style,type:h,data:n.data,sourcePosition:n.sourcePosition||Bh.Bottom,targetPosition:n.targetPosition||Bh.Top,hidden:n.hidden,xPos:v,yPos:x,xPosOrigin:y.x,yPosOrigin:y.y,selectNodesOnDrag:e.selectNodesOnDrag,onClick:e.onNodeClick,onMouseEnter:e.onNodeMouseEnter,onMouseMove:e.onNodeMouseMove,onMouseLeave:e.onNodeMouseLeave,onContextMenu:e.onNodeContextMenu,onDoubleClick:e.onNodeDoubleClick,selected:!!n.selected,isDraggable:f,isSelectable:p,isConnectable:m,isFocusable:g,resizeObserver:d,dragHandle:n.dragHandle,zIndex:(null==(a=n[gh])?void 0:a.z)??0,isParent:!!(null==(l=n[gh])?void 0:l.isParent),noDragClassName:e.noDragClassName,noPanClassName:e.noPanClassName,initialized:!!n.width&&!!n.height,rfId:e.rfId,disableKeyboardA11y:e.disableKeyboardA11y,ariaLabel:n.ariaLabel,hasHandleBounds:!!(null==(c=n[gh])?void 0:c.handleBounds)})}))};Fu.displayName="NodeRenderer";var Ku=l.memo(Fu);const Vu=(e,t,s)=>s===Bh.Left?e-t:s===Bh.Right?e+t:e,Uu=(e,t,s)=>s===Bh.Top?e-t:s===Bh.Bottom?e+t:e,qu="react-flow__edgeupdater",Yu=({position:e,centerX:t,centerY:s,radius:i=10,onMouseDown:r,onMouseEnter:n,onMouseOut:o,type:a})=>k.createElement("circle",{onMouseDown:r,onMouseEnter:n,onMouseOut:o,className:An([qu,`${qu}-${a}`]),cx:Vu(t,i,e),cy:Uu(s,i,e),r:i,stroke:"transparent",fill:"transparent"}),Xu=()=>!0;var Gu=e=>{const t=({id:t,className:s,type:i,data:r,onClick:n,onEdgeDoubleClick:o,selected:a,animated:c,label:h,labelStyle:d,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:m,style:g,source:_,target:v,sourceX:x,sourceY:y,targetX:b,targetY:w,sourcePosition:S,targetPosition:C,elementsSelectable:N,hidden:E,sourceHandleId:j,targetHandleId:M,onContextMenu:D,onMouseEnter:R,onMouseMove:P,onMouseLeave:L,reconnectRadius:T,onReconnect:I,onReconnectStart:B,onReconnectEnd:O,markerEnd:A,markerStart:z,rfId:$,ariaLabel:H,isFocusable:W,isReconnectable:F,pathOptions:K,interactionWidth:V,disableKeyboardA11y:U})=>{const q=l.useRef(null),[Y,X]=l.useState(!1),[G,Z]=l.useState(!1),J=Qc(),Q=l.useMemo(()=>`url('#${td(z,$)}')`,[z,$]),ee=l.useMemo(()=>`url('#${td(A,$)}')`,[A,$]);if(E)return null;const te=Sh(t,J.getState,o),se=Sh(t,J.getState,D),ie=Sh(t,J.getState,R),re=Sh(t,J.getState,P),ne=Sh(t,J.getState,L),oe=(e,s)=>{if(0!==e.button)return;const{edges:i,isValidConnection:r}=J.getState(),n=s?v:_,o=(s?M:j)||null,a=s?"target":"source",l=r||Xu,c=s,h=i.find(e=>e.id===t);Z(!0),null==B||B(e,h,a);_d({event:e,handleId:o,nodeId:n,onConnect:e=>null==I?void 0:I(h,e),isTarget:c,getState:J.getState,setState:J.setState,isValidConnection:l,edgeUpdaterType:a,onReconnectEnd:e=>{Z(!1),null==O||O(e,h,a)}})},ae=()=>X(!0),le=()=>X(!1),ce=!N&&!n;return k.createElement("g",{className:An(["react-flow__edge",`react-flow__edge-${i}`,s,{selected:a,animated:c,inactive:ce,updating:Y}]),onClick:e=>{var s;const{edges:i,addSelectedEdges:r,unselectNodesAndEdges:o,multiSelectionActive:a}=J.getState(),l=i.find(e=>e.id===t);l&&(N&&(J.setState({nodesSelectionActive:!1}),l.selected&&a?(o({nodes:[],edges:[l]}),null==(s=q.current)||s.blur()):r([t])),n&&n(e,l))},onDoubleClick:te,onContextMenu:se,onMouseEnter:ie,onMouseMove:re,onMouseLeave:ne,onKeyDown:W?e=>{var s;if(!U&&_h.includes(e.key)&&N){const{unselectNodesAndEdges:i,addSelectedEdges:r,edges:n}=J.getState();"Escape"===e.key?(null==(s=q.current)||s.blur(),i({edges:[n.find(e=>e.id===t)]})):r([t])}}:void 0,tabIndex:W?0:void 0,role:W?"button":"img","data-testid":`rf__edge-${t}`,"aria-label":null===H?void 0:H||`Edge from ${_} to ${v}`,"aria-describedby":W?`${Wd}-${$}`:void 0,ref:q},!G&&k.createElement(e,{id:t,source:_,target:v,selected:a,animated:c,label:h,labelStyle:d,labelShowBg:u,labelBgStyle:f,labelBgPadding:p,labelBgBorderRadius:m,data:r,style:g,sourceX:x,sourceY:y,targetX:b,targetY:w,sourcePosition:S,targetPosition:C,sourceHandleId:j,targetHandleId:M,markerStart:Q,markerEnd:ee,pathOptions:K,interactionWidth:V}),F&&k.createElement(k.Fragment,null,("source"===F||!0===F)&&k.createElement(Yu,{position:S,centerX:x,centerY:y,radius:T,onMouseDown:e=>oe(e,!0),onMouseEnter:ae,onMouseOut:le,type:"source"}),("target"===F||!0===F)&&k.createElement(Yu,{position:C,centerX:b,centerY:w,radius:T,onMouseDown:e=>oe(e,!1),onMouseEnter:ae,onMouseOut:le,type:"target"})))};return t.displayName="EdgeWrapper",l.memo(t)};function Zu(e){return{...{default:Gu(e.default||Zh),straight:Gu(e.bezier||qh),step:Gu(e.step||Uh),smoothstep:Gu(e.step||Vh),simplebezier:Gu(e.simplebezier||$h)},...Object.keys(e).filter(e=>!["default","bezier"].includes(e)).reduce((t,s)=>(t[s]=Gu(e[s]||Zh),t),{})}}function Ju(e,t,s=null){const i=((null==s?void 0:s.x)||0)+t.x,r=((null==s?void 0:s.y)||0)+t.y,n=(null==s?void 0:s.width)||t.width,o=(null==s?void 0:s.height)||t.height;switch(e){case Bh.Top:return{x:i+n/2,y:r};case Bh.Right:return{x:i+n,y:r+o/2};case Bh.Bottom:return{x:i+n/2,y:r+o};case Bh.Left:return{x:i,y:r+o/2}}}function Qu(e,t){return e?1!==e.length&&t?t&&e.find(e=>e.id===t)||null:e[0]:null}function ef(e){var t,s,i,r,n;const o=(null==(t=null==e?void 0:e[gh])?void 0:t.handleBounds)||null,a=o&&(null==e?void 0:e.width)&&(null==e?void 0:e.height)&&void 0!==(null==(s=null==e?void 0:e.positionAbsolute)?void 0:s.x)&&void 0!==(null==(i=null==e?void 0:e.positionAbsolute)?void 0:i.y);return[{x:(null==(r=null==e?void 0:e.positionAbsolute)?void 0:r.x)||0,y:(null==(n=null==e?void 0:e.positionAbsolute)?void 0:n.y)||0,width:(null==e?void 0:e.width)||0,height:(null==e?void 0:e.height)||0},o,!!a]}const tf=[{level:0,isMaxLevel:!0,edges:[]}];function sf(e,t,s){return function(e,t,s=!1){let i=-1;const r=e.reduce((e,r)=>{var n,o;const a=mh(r.zIndex);let l=a?r.zIndex:0;if(s){const e=t.get(r.target),s=t.get(r.source),i=r.selected||(null==e?void 0:e.selected)||(null==s?void 0:s.selected),c=Math.max((null==(n=null==s?void 0:s[gh])?void 0:n.z)||0,(null==(o=null==e?void 0:e[gh])?void 0:o.z)||0,1e3);l=(a?r.zIndex:0)+(i?c:0)}return e[l]?e[l].push(r):e[l]=[r],i=l>i?l:i,e},{}),n=Object.entries(r).map(([e,t])=>{const s=+e;return{edges:t,level:s,isMaxLevel:s===i}});return 0===n.length?tf:n}(Jc(l.useCallback(s=>e?s.edges.filter(e=>{const i=t.get(e.source),r=t.get(e.target);return(null==i?void 0:i.width)&&(null==i?void 0:i.height)&&(null==r?void 0:r.width)&&(null==r?void 0:r.height)&&function({sourcePos:e,targetPos:t,sourceWidth:s,sourceHeight:i,targetWidth:r,targetHeight:n,width:o,height:a,transform:l}){const c={x:Math.min(e.x,t.x),y:Math.min(e.y,t.y),x2:Math.max(e.x+s,t.x+r),y2:Math.max(e.y+i,t.y+n)};c.x===c.x2&&(c.x2+=1),c.y===c.y2&&(c.y2+=1);const h=dh({x:(0-l[0])/l[2],y:(0-l[1])/l[2],width:o/l[2],height:a/l[2]}),d=Math.max(0,Math.min(h.x2,c.x2)-Math.max(h.x,c.x)),u=Math.max(0,Math.min(h.y2,c.y2)-Math.max(h.y,c.y));return Math.ceil(d*u)>0}({sourcePos:i.positionAbsolute||{x:0,y:0},targetPos:r.positionAbsolute||{x:0,y:0},sourceWidth:i.width,sourceHeight:i.height,targetWidth:r.width,targetHeight:r.height,width:s.width,height:s.height,transform:s.transform})}):s.edges,[e,t])),t,s)}const rf={[Th.Arrow]:({color:e="none",strokeWidth:t=1})=>k.createElement("polyline",{style:{stroke:e,strokeWidth:t},strokeLinecap:"round",strokeLinejoin:"round",fill:"none",points:"-5,-4 0,0 -5,4"}),[Th.ArrowClosed]:({color:e="none",strokeWidth:t=1})=>k.createElement("polyline",{style:{stroke:e,fill:e,strokeWidth:t},strokeLinecap:"round",strokeLinejoin:"round",points:"-5,-4 0,0 -5,4 -5,-4"})};const nf=({id:e,type:t,color:s,width:i=12.5,height:r=12.5,markerUnits:n="strokeWidth",strokeWidth:o,orient:a="auto-start-reverse"})=>{const c=function(e){const t=Qc();return l.useMemo(()=>{var s,i;return Object.prototype.hasOwnProperty.call(rf,e)?rf[e]:(null==(i=(s=t.getState()).onError)||i.call(s,"009",Uc(e)),null)},[e])}(t);return c?k.createElement("marker",{className:"react-flow__arrowhead",id:e,markerWidth:`${i}`,markerHeight:`${r}`,viewBox:"-10 -10 20 20",markerUnits:n,orient:a,refX:"0",refY:"0"},k.createElement(c,{color:s,strokeWidth:o})):null},of=({defaultColor:e,rfId:t})=>{const s=Jc(l.useCallback((({defaultColor:e,rfId:t})=>s=>{const i=[];return s.edges.reduce((s,r)=>([r.markerStart,r.markerEnd].forEach(r=>{if(r&&"object"==typeof r){const n=td(r,t);i.includes(n)||(s.push({id:n,color:r.color||e,...r}),i.push(n))}}),s),[]).sort((e,t)=>e.id.localeCompare(t.id))})({defaultColor:e,rfId:t}),[e,t]),(e,t)=>!(e.length!==t.length||e.some((e,s)=>e.id!==t[s].id)));return k.createElement("defs",null,s.map(e=>k.createElement(nf,{id:e.id,key:e.id,type:e.type,color:e.color,width:e.width,height:e.height,markerUnits:e.markerUnits,strokeWidth:e.strokeWidth,orient:e.orient})))};of.displayName="MarkerDefinitions";var af=l.memo(of);const lf=e=>({nodesConnectable:e.nodesConnectable,edgesFocusable:e.edgesFocusable,edgesUpdatable:e.edgesUpdatable,elementsSelectable:e.elementsSelectable,width:e.width,height:e.height,connectionMode:e.connectionMode,nodeInternals:e.nodeInternals,onError:e.onError}),cf=({defaultMarkerColor:e,onlyRenderVisibleElements:t,elevateEdgesOnSelect:s,rfId:i,edgeTypes:r,noPanClassName:n,onEdgeContextMenu:o,onEdgeMouseEnter:a,onEdgeMouseMove:l,onEdgeMouseLeave:c,onEdgeClick:h,onEdgeDoubleClick:d,onReconnect:u,onReconnectStart:f,onReconnectEnd:p,reconnectRadius:m,children:g,disableKeyboardA11y:_})=>{const{edgesFocusable:v,edgesUpdatable:x,elementsSelectable:y,width:b,height:w,connectionMode:S,nodeInternals:C,onError:N}=Jc(lf,io),E=sf(t,C,s);return b?k.createElement(k.Fragment,null,E.map(({level:t,edges:s,isMaxLevel:g})=>k.createElement("svg",{key:t,style:{zIndex:t},width:b,height:w,className:"react-flow__edges react-flow__container"},g&&k.createElement(af,{defaultColor:e,rfId:i}),k.createElement("g",null,s.map(e=>{const[t,s,g]=ef(C.get(e.source)),[b,w,E]=ef(C.get(e.target));if(!g||!E)return null;let j=e.type||"default";r[j]||(null==N||N("011",Xc(j)),j="default");const M=r[j]||r.default,D=S===Nh.Strict?w.target:(w.target??[]).concat(w.source??[]),R=Qu(s.source,e.sourceHandle),P=Qu(D,e.targetHandle),L=(null==R?void 0:R.position)||Bh.Bottom,T=(null==P?void 0:P.position)||Bh.Top,I=!!(e.focusable||v&&void 0===e.focusable),B=e.reconnectable||e.updatable,O=void 0!==u&&(B||x&&void 0===B);if(!R||!P)return null==N||N("008",qc(R,e)),null;const{sourceX:A,sourceY:z,targetX:$,targetY:H}=((e,t,s,i,r,n)=>{const o=Ju(s,e,t),a=Ju(n,i,r);return{sourceX:o.x,sourceY:o.y,targetX:a.x,targetY:a.y}})(t,R,L,b,P,T);return k.createElement(M,{key:e.id,id:e.id,className:An([e.className,n]),type:j,data:e.data,selected:!!e.selected,animated:!!e.animated,hidden:!!e.hidden,label:e.label,labelStyle:e.labelStyle,labelShowBg:e.labelShowBg,labelBgStyle:e.labelBgStyle,labelBgPadding:e.labelBgPadding,labelBgBorderRadius:e.labelBgBorderRadius,style:e.style,source:e.source,target:e.target,sourceHandleId:e.sourceHandle,targetHandleId:e.targetHandle,markerEnd:e.markerEnd,markerStart:e.markerStart,sourceX:A,sourceY:z,targetX:$,targetY:H,sourcePosition:L,targetPosition:T,elementsSelectable:y,onContextMenu:o,onMouseEnter:a,onMouseMove:l,onMouseLeave:c,onClick:h,onEdgeDoubleClick:d,onReconnect:u,onReconnectStart:f,onReconnectEnd:p,reconnectRadius:m,rfId:i,ariaLabel:e.ariaLabel,isFocusable:I,isReconnectable:O,pathOptions:"pathOptions"in e?e.pathOptions:void 0,interactionWidth:e.interactionWidth,disableKeyboardA11y:_})})))),g):null};cf.displayName="EdgeRenderer";var hf=l.memo(cf);const df=e=>`translate(${e.transform[0]}px,${e.transform[1]}px) scale(${e.transform[2]})`;function uf({children:e}){const t=Jc(df);return k.createElement("div",{className:"react-flow__viewport react-flow__container",style:{transform:t}},e)}const ff={[Bh.Left]:Bh.Right,[Bh.Right]:Bh.Left,[Bh.Top]:Bh.Bottom,[Bh.Bottom]:Bh.Top},pf=({nodeId:e,handleType:t,style:s,type:i=Ph.Bezier,CustomComponent:r,connectionStatus:n})=>{var o,a,c;const{fromNode:h,handleId:d,toX:u,toY:f,connectionMode:p}=Jc(l.useCallback(t=>({fromNode:t.nodeInternals.get(e),handleId:t.connectionHandleId,toX:(t.connectionPosition.x-t.transform[0])/t.transform[2],toY:(t.connectionPosition.y-t.transform[1])/t.transform[2],connectionMode:t.connectionMode}),[e]),io),m=null==(o=null==h?void 0:h[gh])?void 0:o.handleBounds;let g=null==m?void 0:m[t];if(p===Nh.Loose&&(g=g||(null==m?void 0:m["source"===t?"target":"source"])),!h||!g)return null;const _=d?g.find(e=>e.id===d):g[0],v=_?_.x+_.width/2:(h.width??0)/2,x=_?_.y+_.height/2:h.height??0,y=((null==(a=h.positionAbsolute)?void 0:a.x)??0)+v,b=((null==(c=h.positionAbsolute)?void 0:c.y)??0)+x,w=null==_?void 0:_.position,S=w?ff[w]:null;if(!w||!S)return null;if(r)return k.createElement(r,{connectionLineType:i,connectionLineStyle:s,fromNode:h,fromHandle:_,fromX:y,fromY:b,toX:u,toY:f,fromPosition:w,toPosition:S,connectionStatus:n});let C="";const N={sourceX:y,sourceY:b,sourcePosition:w,targetX:u,targetY:f,targetPosition:S};return i===Ph.Bezier?[C]=Gh(N):i===Ph.Step?[C]=Kh({...N,borderRadius:0}):i===Ph.SmoothStep?[C]=Kh(N):i===Ph.SimpleBezier?[C]=zh(N):C=`M${y},${b} ${u},${f}`,k.createElement("path",{d:C,fill:"none",className:"react-flow__connection-path",style:s})};pf.displayName="ConnectionLine";const mf=e=>({nodeId:e.connectionNodeId,handleType:e.connectionHandleType,nodesConnectable:e.nodesConnectable,connectionStatus:e.connectionStatus,width:e.width,height:e.height});function gf({containerStyle:e,style:t,type:s,component:i}){const{nodeId:r,handleType:n,nodesConnectable:o,width:a,height:l,connectionStatus:c}=Jc(mf,io);return!!(r&&n&&a&&o)?k.createElement("svg",{style:e,width:a,height:l,className:"react-flow__edges react-flow__connectionline react-flow__container"},k.createElement("g",{className:An(["react-flow__connection",c])},k.createElement(pf,{nodeId:r,handleType:n,style:t,type:s,CustomComponent:i,connectionStatus:c}))):null}function _f(e,t){l.useRef(null),Qc();return l.useMemo(()=>t(e),[e])}const vf=({nodeTypes:e,edgeTypes:t,onMove:s,onMoveStart:i,onMoveEnd:r,onInit:n,onNodeClick:o,onEdgeClick:a,onNodeDoubleClick:c,onEdgeDoubleClick:h,onNodeMouseEnter:d,onNodeMouseMove:u,onNodeMouseLeave:f,onNodeContextMenu:p,onSelectionContextMenu:m,onSelectionStart:g,onSelectionEnd:_,connectionLineType:v,connectionLineStyle:x,connectionLineComponent:y,connectionLineContainerStyle:b,selectionKeyCode:w,selectionOnDrag:S,selectionMode:C,multiSelectionKeyCode:N,panActivationKeyCode:E,zoomActivationKeyCode:j,deleteKeyCode:M,onlyRenderVisibleElements:D,elementsSelectable:R,selectNodesOnDrag:P,defaultViewport:L,translateExtent:T,minZoom:I,maxZoom:B,preventScrolling:O,defaultMarkerColor:A,zoomOnScroll:z,zoomOnPinch:$,panOnScroll:H,panOnScrollSpeed:W,panOnScrollMode:F,zoomOnDoubleClick:K,panOnDrag:V,onPaneClick:U,onPaneMouseEnter:q,onPaneMouseMove:Y,onPaneMouseLeave:X,onPaneScroll:G,onPaneContextMenu:Z,onEdgeContextMenu:J,onEdgeMouseEnter:Q,onEdgeMouseMove:ee,onEdgeMouseLeave:te,onReconnect:se,onReconnectStart:ie,onReconnectEnd:re,reconnectRadius:ne,noDragClassName:oe,noWheelClassName:ae,noPanClassName:le,elevateEdgesOnSelect:ce,disableKeyboardA11y:he,nodeOrigin:de,nodeExtent:ue,rfId:fe})=>{const pe=_f(e,Hu),me=_f(t,Zu);return function(e){const t=nu(),s=l.useRef(!1);l.useEffect(()=>{!s.current&&t.viewportInitialized&&e&&(setTimeout(()=>e(t),1),s.current=!0)},[e,t.viewportInitialized])}(n),k.createElement($u,{onPaneClick:U,onPaneMouseEnter:q,onPaneMouseMove:Y,onPaneMouseLeave:X,onPaneContextMenu:Z,onPaneScroll:G,deleteKeyCode:M,selectionKeyCode:w,selectionOnDrag:S,selectionMode:C,onSelectionStart:g,onSelectionEnd:_,multiSelectionKeyCode:N,panActivationKeyCode:E,zoomActivationKeyCode:j,elementsSelectable:R,onMove:s,onMoveStart:i,onMoveEnd:r,zoomOnScroll:z,zoomOnPinch:$,zoomOnDoubleClick:K,panOnScroll:H,panOnScrollSpeed:W,panOnScrollMode:F,panOnDrag:V,defaultViewport:L,translateExtent:T,minZoom:I,maxZoom:B,onSelectionContextMenu:m,preventScrolling:O,noDragClassName:oe,noWheelClassName:ae,noPanClassName:le,disableKeyboardA11y:he},k.createElement(uf,null,k.createElement(hf,{edgeTypes:me,onEdgeClick:a,onEdgeDoubleClick:h,onlyRenderVisibleElements:D,onEdgeContextMenu:J,onEdgeMouseEnter:Q,onEdgeMouseMove:ee,onEdgeMouseLeave:te,onReconnect:se,onReconnectStart:ie,onReconnectEnd:re,reconnectRadius:ne,defaultMarkerColor:A,noPanClassName:le,elevateEdgesOnSelect:!!ce,disableKeyboardA11y:he,rfId:fe},k.createElement(gf,{style:x,type:v,component:y,containerStyle:b})),k.createElement("div",{className:"react-flow__edgelabel-renderer"}),k.createElement(Ku,{nodeTypes:pe,onNodeClick:o,onNodeDoubleClick:c,onNodeMouseEnter:d,onNodeMouseMove:u,onNodeMouseLeave:f,onNodeContextMenu:p,selectNodesOnDrag:P,onlyRenderVisibleElements:D,noPanClassName:le,noDragClassName:oe,disableKeyboardA11y:he,nodeOrigin:de,nodeExtent:ue,rfId:fe})))};vf.displayName="GraphView";var xf=l.memo(vf);const yf=[[Number.NEGATIVE_INFINITY,Number.NEGATIVE_INFINITY],[Number.POSITIVE_INFINITY,Number.POSITIVE_INFINITY]],bf={rfId:"1",width:0,height:0,transform:[0,0,1],nodeInternals:new Map,edges:[],onNodesChange:null,onEdgesChange:null,hasDefaultNodes:!1,hasDefaultEdges:!1,d3Zoom:null,d3Selection:null,d3ZoomHandler:void 0,minZoom:.5,maxZoom:2,translateExtent:yf,nodeExtent:yf,nodesSelectionActive:!1,userSelectionActive:!1,userSelectionRect:null,connectionNodeId:null,connectionHandleId:null,connectionHandleType:"source",connectionPosition:{x:0,y:0},connectionStatus:null,connectionMode:Nh.Strict,domNode:null,paneDragging:!1,noPanClassName:"nopan",nodeOrigin:[0,0],nodeDragThreshold:0,snapGrid:[15,15],snapToGrid:!1,nodesDraggable:!0,nodesConnectable:!0,nodesFocusable:!0,edgesFocusable:!0,edgesUpdatable:!0,elementsSelectable:!0,elevateNodesOnSelect:!0,fitViewOnInit:!1,fitViewOnInitDone:!1,fitViewOnInitOptions:void 0,onSelectionChange:[],multiSelectionActive:!1,connectionStartHandle:null,connectionEndHandle:null,connectionClickStartHandle:null,connectOnClick:!0,ariaLiveMessage:"",autoPanOnConnect:!0,autoPanOnNodeDrag:!0,connectionRadius:20,onError:(e,t)=>{},isValidConnection:void 0},wf=()=>{return e=(e,t)=>({...bf,setNodes:s=>{const{nodeInternals:i,nodeOrigin:r,elevateNodesOnSelect:n}=t();e({nodeInternals:Zd(s,i,r,n)})},getNodes:()=>Array.from(t().nodeInternals.values()),setEdges:s=>{const{defaultEdgeOptions:i={}}=t();e({edges:s.map(e=>({...i,...e}))})},setDefaultNodesAndEdges:(s,i)=>{const r=void 0!==s,n=void 0!==i,o=r?Zd(s,new Map,t().nodeOrigin,t().elevateNodesOnSelect):new Map;e({nodeInternals:o,edges:n?i:[],hasDefaultNodes:r,hasDefaultEdges:n})},updateNodeDimensions:s=>{const{onNodesChange:i,nodeInternals:r,fitViewOnInit:n,fitViewOnInitDone:o,fitViewOnInitOptions:a,domNode:l,nodeOrigin:c}=t(),h=null==l?void 0:l.querySelector(".react-flow__viewport");if(!h)return;const d=window.getComputedStyle(h),{m22:u}=new window.DOMMatrixReadOnly(d.transform),f=s.reduce((e,t)=>{const s=r.get(t.id);if(null==s?void 0:s.hidden)r.set(s.id,{...s,[gh]:{...s[gh],handleBounds:void 0}});else if(s){const i=rh(t.nodeElement);i.width&&i.height&&(s.width!==i.width||s.height!==i.height||t.forceUpdate)&&(r.set(s.id,{...s,[gh]:{...s[gh],handleBounds:{source:ju(".source",t.nodeElement,u,c),target:ju(".target",t.nodeElement,u,c)}},...i}),e.push({id:s.id,type:"dimensions",dimensions:i}))}return e},[]);Gd(r,c);const p=o||n&&!o&&Jd(t,{initial:!0,...a});e({nodeInternals:new Map(r),fitViewOnInitDone:p}),(null==f?void 0:f.length)>0&&(null==i||i(f))},updateNodePositions:(e,s=!0,i=!1)=>{const{triggerNodeChanges:r}=t();r(e.map(e=>{const t={id:e.id,type:"position",dragging:i};return s&&(t.positionAbsolute=e.positionAbsolute,t.position=e.position),t}))},triggerNodeChanges:s=>{const{onNodesChange:i,nodeInternals:r,hasDefaultNodes:n,nodeOrigin:o,getNodes:a,elevateNodesOnSelect:l}=t();if(null==s?void 0:s.length){if(n){const t=Zd(_u(s,a()),r,o,l);e({nodeInternals:t})}null==i||i(s)}},addSelectedNodes:s=>{const{multiSelectionActive:i,edges:r,getNodes:n}=t();let o,a=null;i?o=s.map(e=>vu(e,!0)):(o=xu(n(),s),a=xu(r,[])),tu({changedNodes:o,changedEdges:a,get:t,set:e})},addSelectedEdges:s=>{const{multiSelectionActive:i,edges:r,getNodes:n}=t();let o,a=null;i?o=s.map(e=>vu(e,!0)):(o=xu(r,s),a=xu(n(),[])),tu({changedNodes:a,changedEdges:o,get:t,set:e})},unselectNodesAndEdges:({nodes:s,edges:i}={})=>{const{edges:r,getNodes:n}=t(),o=i||r;tu({changedNodes:(s||n()).map(e=>(e.selected=!1,vu(e.id,!1))),changedEdges:o.map(e=>vu(e.id,!1)),get:t,set:e})},setMinZoom:s=>{const{d3Zoom:i,maxZoom:r}=t();null==i||i.scaleExtent([s,r]),e({minZoom:s})},setMaxZoom:s=>{const{d3Zoom:i,minZoom:r}=t();null==i||i.scaleExtent([r,s]),e({maxZoom:s})},setTranslateExtent:s=>{var i;null==(i=t().d3Zoom)||i.translateExtent(s),e({translateExtent:s})},resetSelectedElements:()=>{const{edges:s,getNodes:i}=t();tu({changedNodes:i().filter(e=>e.selected).map(e=>vu(e.id,!1)),changedEdges:s.filter(e=>e.selected).map(e=>vu(e.id,!1)),get:t,set:e})},setNodeExtent:s=>{const{nodeInternals:i}=t();i.forEach(e=>{e.positionAbsolute=oh(e.position,s)}),e({nodeExtent:s,nodeInternals:new Map(i)})},panBy:e=>{const{transform:s,width:i,height:r,d3Zoom:n,d3Selection:o,translateExtent:a}=t();if(!n||!o||!e.x&&!e.y)return!1;const l=Rc.translate(s[0]+e.x,s[1]+e.y).scale(s[2]),c=[[0,0],[i,r]],h=null==n?void 0:n.constrain()(l,c,a);return n.transform(o,h),s[0]!==h.x||s[1]!==h.y||s[2]!==h.k},cancelConnection:()=>e({connectionNodeId:bf.connectionNodeId,connectionHandleId:bf.connectionHandleId,connectionHandleType:bf.connectionHandleType,connectionStatus:bf.connectionStatus,connectionStartHandle:bf.connectionStartHandle,connectionEndHandle:bf.connectionEndHandle}),reset:()=>e({...bf})}),t=Object.is,e?so(e,t):so;var e,t},Sf=({children:e})=>{const t=l.useRef(null);return t.current||(t.current=wf()),k.createElement(Wc,{value:t.current},e)};Sf.displayName="ReactFlowProvider";const Cf=({children:e})=>l.useContext(Hc)?k.createElement(k.Fragment,null,e):k.createElement(Sf,null,e);Cf.displayName="ReactFlowWrapper";const kf={input:kd,default:Sd,output:Ed,group:jd},Nf={default:Zh,straight:qh,step:Uh,smoothstep:Vh,simplebezier:$h},Ef=[0,0],jf=[15,15],Mf={x:0,y:0,zoom:1},Df={width:"100%",height:"100%",overflow:"hidden",position:"relative",zIndex:0},Rf=l.forwardRef(({nodes:e,edges:t,defaultNodes:s,defaultEdges:i,className:r,nodeTypes:n=kf,edgeTypes:o=Nf,onNodeClick:a,onEdgeClick:l,onInit:c,onMove:h,onMoveStart:d,onMoveEnd:u,onConnect:f,onConnectStart:p,onConnectEnd:m,onClickConnectStart:g,onClickConnectEnd:_,onNodeMouseEnter:v,onNodeMouseMove:x,onNodeMouseLeave:y,onNodeContextMenu:b,onNodeDoubleClick:w,onNodeDragStart:S,onNodeDrag:C,onNodeDragStop:N,onNodesDelete:E,onEdgesDelete:j,onSelectionChange:M,onSelectionDragStart:D,onSelectionDrag:R,onSelectionDragStop:P,onSelectionContextMenu:L,onSelectionStart:T,onSelectionEnd:I,connectionMode:B=Nh.Strict,connectionLineType:O=Ph.Bezier,connectionLineStyle:A,connectionLineComponent:z,connectionLineContainerStyle:$,deleteKeyCode:H="Backspace",selectionKeyCode:W="Shift",selectionOnDrag:F=!1,selectionMode:K=Dh.Full,panActivationKeyCode:V="Space",multiSelectionKeyCode:U=(bh()?"Meta":"Control"),zoomActivationKeyCode:q=(bh()?"Meta":"Control"),snapToGrid:Y=!1,snapGrid:X=jf,onlyRenderVisibleElements:G=!1,selectNodesOnDrag:Z=!0,nodesDraggable:J,nodesConnectable:Q,nodesFocusable:ee,nodeOrigin:te=Ef,edgesFocusable:se,edgesUpdatable:ie,elementsSelectable:re,defaultViewport:ne=Mf,minZoom:oe=.5,maxZoom:ae=2,translateExtent:le=yf,preventScrolling:ce=!0,nodeExtent:he,defaultMarkerColor:de="#b1b1b7",zoomOnScroll:ue=!0,zoomOnPinch:fe=!0,panOnScroll:pe=!1,panOnScrollSpeed:me=.5,panOnScrollMode:ge=jh.Free,zoomOnDoubleClick:_e=!0,panOnDrag:ve=!0,onPaneClick:xe,onPaneMouseEnter:ye,onPaneMouseMove:be,onPaneMouseLeave:we,onPaneScroll:Se,onPaneContextMenu:Ce,children:ke,onEdgeContextMenu:Ne,onEdgeDoubleClick:Ee,onEdgeMouseEnter:je,onEdgeMouseMove:Me,onEdgeMouseLeave:De,onEdgeUpdate:Re,onEdgeUpdateStart:Pe,onEdgeUpdateEnd:Le,onReconnect:Te,onReconnectStart:Ie,onReconnectEnd:Be,reconnectRadius:Oe=10,edgeUpdaterRadius:Ae=10,onNodesChange:ze,onEdgesChange:$e,noDragClassName:He="nodrag",noWheelClassName:We="nowheel",noPanClassName:Fe="nopan",fitView:Ke=!1,fitViewOptions:Ve,connectOnClick:Ue=!0,attributionPosition:qe,proOptions:Ye,defaultEdgeOptions:Xe,elevateNodesOnSelect:Ge=!0,elevateEdgesOnSelect:Ze=!1,disableKeyboardA11y:Je=!1,autoPanOnConnect:Qe=!0,autoPanOnNodeDrag:et=!0,connectionRadius:tt=20,isValidConnection:st,onError:it,style:rt,id:nt,nodeDragThreshold:ot,...at},lt)=>{const ct=nt||"1";return k.createElement("div",{...at,style:{...rt,...Df},ref:lt,className:An(["react-flow",r]),"data-testid":"rf__wrapper",id:nt},k.createElement(Cf,null,k.createElement(xf,{onInit:c,onMove:h,onMoveStart:d,onMoveEnd:u,onNodeClick:a,onEdgeClick:l,onNodeMouseEnter:v,onNodeMouseMove:x,onNodeMouseLeave:y,onNodeContextMenu:b,onNodeDoubleClick:w,nodeTypes:n,edgeTypes:o,connectionLineType:O,connectionLineStyle:A,connectionLineComponent:z,connectionLineContainerStyle:$,selectionKeyCode:W,selectionOnDrag:F,selectionMode:K,deleteKeyCode:H,multiSelectionKeyCode:U,panActivationKeyCode:V,zoomActivationKeyCode:q,onlyRenderVisibleElements:G,selectNodesOnDrag:Z,defaultViewport:ne,translateExtent:le,minZoom:oe,maxZoom:ae,preventScrolling:ce,zoomOnScroll:ue,zoomOnPinch:fe,zoomOnDoubleClick:_e,panOnScroll:pe,panOnScrollSpeed:me,panOnScrollMode:ge,panOnDrag:ve,onPaneClick:xe,onPaneMouseEnter:ye,onPaneMouseMove:be,onPaneMouseLeave:we,onPaneScroll:Se,onPaneContextMenu:Ce,onSelectionContextMenu:L,onSelectionStart:T,onSelectionEnd:I,onEdgeContextMenu:Ne,onEdgeDoubleClick:Ee,onEdgeMouseEnter:je,onEdgeMouseMove:Me,onEdgeMouseLeave:De,onReconnect:Te??Re,onReconnectStart:Ie??Pe,onReconnectEnd:Be??Le,reconnectRadius:Oe??Ae,defaultMarkerColor:de,noDragClassName:He,noWheelClassName:We,noPanClassName:Fe,elevateEdgesOnSelect:Ze,rfId:ct,disableKeyboardA11y:Je,nodeOrigin:te,nodeExtent:he}),k.createElement(Ad,{nodes:e,edges:t,defaultNodes:s,defaultEdges:i,onConnect:f,onConnectStart:p,onConnectEnd:m,onClickConnectStart:g,onClickConnectEnd:_,nodesDraggable:J,nodesConnectable:Q,nodesFocusable:ee,edgesFocusable:se,edgesUpdatable:ie,elementsSelectable:re,elevateNodesOnSelect:Ge,minZoom:oe,maxZoom:ae,nodeExtent:he,onNodesChange:ze,onEdgesChange:$e,snapToGrid:Y,snapGrid:X,connectionMode:B,translateExtent:le,connectOnClick:Ue,defaultEdgeOptions:Xe,fitView:Ke,fitViewOptions:Ve,onNodesDelete:E,onEdgesDelete:j,onNodeDragStart:S,onNodeDrag:C,onNodeDragStop:N,onSelectionDrag:R,onSelectionDragStart:D,onSelectionDragStop:P,noPanClassName:Fe,nodeOrigin:te,rfId:ct,autoPanOnConnect:Qe,autoPanOnNodeDrag:et,onError:it,connectionRadius:tt,isValidConnection:st,nodeDragThreshold:ot}),k.createElement(Td,{onSelectionChange:M}),ke,k.createElement(sh,{proOptions:Ye,position:qe}),k.createElement(Vd,{rfId:ct,disableKeyboardA11y:Je})))});Rf.displayName="ReactFlow";const Pf=e=>{var t;return null==(t=e.domNode)?void 0:t.querySelector(".react-flow__edgelabel-renderer")};function Lf({children:e}){const t=Jc(Pf);return t?Ye.createPortal(e,t):null}function Tf(e,t){if(Object.is(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[s,i]of e)if(!Object.is(i,t.get(s)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const s of e)if(!t.has(s))return!1;return!0}const s=Object.keys(e);if(s.length!==Object.keys(t).length)return!1;for(const i of s)if(!Object.prototype.hasOwnProperty.call(t,i)||!Object.is(e[i],t[i]))return!1;return!0}const If=({id:e,x:t,y:s,width:i,height:r,style:n,color:o,strokeColor:a,strokeWidth:l,className:c,borderRadius:h,shapeRendering:d,onClick:u,selected:f})=>{const{background:p,backgroundColor:m}=n||{},g=o||p||m;return k.createElement("rect",{className:An(["react-flow__minimap-node",{selected:f},c]),x:t,y:s,rx:h,ry:h,width:i,height:r,fill:g,stroke:a,strokeWidth:l,shapeRendering:d,onClick:u?t=>u(t,e):void 0})};If.displayName="MiniMapNode";var Bf=l.memo(If);const Of=e=>e.nodeOrigin,Af=e=>e.getNodes().filter(e=>!e.hidden&&e.width&&e.height),zf=e=>e instanceof Function?e:()=>e;var $f=l.memo(function({nodeStrokeColor:e="transparent",nodeColor:t="#e2e2e2",nodeClassName:s="",nodeBorderRadius:i=5,nodeStrokeWidth:r=2,nodeComponent:n=Bf,onClick:o}){const a=Jc(Af,Tf),l=Jc(Of),c=zf(t),h=zf(e),d=zf(s),u="undefined"==typeof window||window.chrome?"crispEdges":"geometricPrecision";return k.createElement(k.Fragment,null,a.map(e=>{const{x:t,y:s}=rd(e,l).positionAbsolute;return k.createElement(n,{key:e.id,x:t,y:s,width:e.width,height:e.height,style:e.style,selected:e.selected,className:d(e),color:c(e),borderRadius:i,strokeColor:h(e),strokeWidth:r,shapeRendering:u,onClick:o,id:e.id})}))});const Hf=e=>{const t=e.getNodes(),s={x:-e.transform[0]/e.transform[2],y:-e.transform[1]/e.transform[2],width:e.width/e.transform[2],height:e.height/e.transform[2]};return{viewBB:s,boundingRect:t.length>0?(i=nd(t,e.nodeOrigin),r=s,uh(hh(dh(i),dh(r)))):s,rfId:e.rfId};var i,r};function Wf({style:e,className:t,nodeStrokeColor:s="transparent",nodeColor:i="#e2e2e2",nodeClassName:r="",nodeBorderRadius:n=5,nodeStrokeWidth:o=2,nodeComponent:a,maskColor:c="rgb(240, 240, 240, 0.6)",maskStrokeColor:h="none",maskStrokeWidth:d=1,position:u="bottom-right",onClick:f,onNodeClick:p,pannable:m=!1,zoomable:g=!1,ariaLabel:_="React Flow mini map",inversePan:v=!1,zoomStep:x=10,offsetScale:y=5}){const b=Qc(),w=l.useRef(null),{boundingRect:S,viewBB:C,rfId:N}=Jc(Hf,Tf),E=(null==e?void 0:e.width)??200,j=(null==e?void 0:e.height)??150,M=S.width/E,D=S.height/j,R=Math.max(M,D),P=R*E,L=R*j,T=y*R,I=S.x-(P-S.width)/2-T,B=S.y-(L-S.height)/2-T,O=P+2*T,A=L+2*T,z=`react-flow__minimap-desc-${N}`,$=l.useRef(0);$.current=R,l.useEffect(()=>{if(w.current){const e=wa(w.current),t=e=>{const{transform:t,d3Selection:s,d3Zoom:i}=b.getState();if("wheel"!==e.sourceEvent.type||!s||!i)return;const r=-e.sourceEvent.deltaY*(1===e.sourceEvent.deltaMode?.05:e.sourceEvent.deltaMode?1:.002)*x,n=t[2]*Math.pow(2,r);i.scaleTo(s,n)},s=e=>{const{transform:t,d3Selection:s,d3Zoom:i,translateExtent:r,width:n,height:o}=b.getState();if("mousemove"!==e.sourceEvent.type||!s||!i)return;const a=$.current*Math.max(1,t[2])*(v?-1:1),l={x:t[0]-e.sourceEvent.movementX*a,y:t[1]-e.sourceEvent.movementY*a},c=[[0,0],[n,o]],h=Rc.translate(l.x,l.y).scale(t[2]),d=i.constrain()(h,c,r);i.transform(s,d)},i=$c().on("zoom",m?s:null).on("zoom.wheel",g?t:null);return e.call(i),()=>{e.on("zoom",null)}}},[m,g,v,x]);const H=f?e=>{const t=Sa(e);f(e,{x:t[0],y:t[1]})}:void 0,W=p?(e,t)=>{const s=b.getState().nodeInternals.get(t);p(e,s)}:void 0;return k.createElement(th,{position:u,style:e,className:An(["react-flow__minimap",t]),"data-testid":"rf__minimap"},k.createElement("svg",{width:E,height:j,viewBox:`${I} ${B} ${O} ${A}`,role:"img","aria-labelledby":z,ref:w,onClick:H},_&&k.createElement("title",{id:z},_),k.createElement($f,{onClick:W,nodeColor:i,nodeStrokeColor:s,nodeBorderRadius:n,nodeClassName:r,nodeStrokeWidth:o,nodeComponent:a}),k.createElement("path",{className:"react-flow__minimap-mask",d:`M${I-T},${B-T}h${O+2*T}v${A+2*T}h${-O-2*T}z\n M${C.x},${C.y}h${C.width}v${C.height}h${-C.width}z`,fill:c,fillRule:"evenodd",stroke:h,strokeWidth:d,pointerEvents:"none"})))}Wf.displayName="MiniMap";var Ff=l.memo(Wf);function Kf(e,t){if(Object.is(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[s,i]of e)if(!Object.is(i,t.get(s)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const s of e)if(!t.has(s))return!1;return!0}const s=Object.keys(e);if(s.length!==Object.keys(t).length)return!1;for(const i of s)if(!Object.prototype.hasOwnProperty.call(t,i)||!Object.is(e[i],t[i]))return!1;return!0}function Vf(){return k.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32"},k.createElement("path",{d:"M32 18.133H18.133V32h-4.266V18.133H0v-4.266h13.867V0h4.266v13.867H32z"}))}function Uf(){return k.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 5"},k.createElement("path",{d:"M0 0h32v4.2H0z"}))}function qf(){return k.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 30"},k.createElement("path",{d:"M3.692 4.63c0-.53.4-.938.939-.938h5.215V0H4.708C2.13 0 0 2.054 0 4.63v5.216h3.692V4.631zM27.354 0h-5.2v3.692h5.17c.53 0 .984.4.984.939v5.215H32V4.631A4.624 4.624 0 0027.354 0zm.954 24.83c0 .532-.4.94-.939.94h-5.215v3.768h5.215c2.577 0 4.631-2.13 4.631-4.707v-5.139h-3.692v5.139zm-23.677.94c-.531 0-.939-.4-.939-.94v-5.138H0v5.139c0 2.577 2.13 4.707 4.708 4.707h5.138V25.77H4.631z"}))}function Yf(){return k.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32"},k.createElement("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0 8 0 4.571 3.429 4.571 7.619v3.048H3.048A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047zm4.724-13.866H7.467V7.619c0-2.59 2.133-4.724 4.723-4.724 2.591 0 4.724 2.133 4.724 4.724v3.048z"}))}function Xf(){return k.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 25 32"},k.createElement("path",{d:"M21.333 10.667H19.81V7.619C19.81 3.429 16.38 0 12.19 0c-4.114 1.828-1.37 2.133.305 2.438 1.676.305 4.42 2.59 4.42 5.181v3.048H3.047A3.056 3.056 0 000 13.714v15.238A3.056 3.056 0 003.048 32h18.285a3.056 3.056 0 003.048-3.048V13.714a3.056 3.056 0 00-3.048-3.047zM12.19 24.533a3.056 3.056 0 01-3.047-3.047 3.056 3.056 0 013.047-3.048 3.056 3.056 0 013.048 3.048 3.056 3.056 0 01-3.048 3.047z"}))}const Gf=({children:e,className:t,...s})=>k.createElement("button",{type:"button",className:An(["react-flow__controls-button",t]),...s},e);Gf.displayName="ControlButton";const Zf=e=>({isInteractive:e.nodesDraggable||e.nodesConnectable||e.elementsSelectable,minZoomReached:e.transform[2]<=e.minZoom,maxZoomReached:e.transform[2]>=e.maxZoom}),Jf=({style:e,showZoom:t=!0,showFitView:s=!0,showInteractive:i=!0,fitViewOptions:r,onZoomIn:n,onZoomOut:o,onFitView:a,onInteractiveChange:c,className:h,children:d,position:u="bottom-left"})=>{const f=Qc(),[p,m]=l.useState(!1),{isInteractive:g,minZoomReached:_,maxZoomReached:v}=Jc(Zf,Kf),{zoomIn:x,zoomOut:y,fitView:b}=nu();if(l.useEffect(()=>{m(!0)},[]),!p)return null;return k.createElement(th,{className:An(["react-flow__controls",h]),position:u,style:e,"data-testid":"rf__controls"},t&&k.createElement(k.Fragment,null,k.createElement(Gf,{onClick:()=>{x(),null==n||n()},className:"react-flow__controls-zoomin",title:"zoom in","aria-label":"zoom in",disabled:v},k.createElement(Vf,null)),k.createElement(Gf,{onClick:()=>{y(),null==o||o()},className:"react-flow__controls-zoomout",title:"zoom out","aria-label":"zoom out",disabled:_},k.createElement(Uf,null))),s&&k.createElement(Gf,{className:"react-flow__controls-fitview",onClick:()=>{b(r),null==a||a()},title:"fit view","aria-label":"fit view"},k.createElement(qf,null)),i&&k.createElement(Gf,{className:"react-flow__controls-interactive",onClick:()=>{f.setState({nodesDraggable:!g,nodesConnectable:!g,elementsSelectable:!g}),null==c||c(!g)},title:"toggle interactivity","aria-label":"toggle interactivity"},g?k.createElement(Xf,null):k.createElement(Yf,null)),d)};Jf.displayName="Controls";var Qf,ep,tp=l.memo(Jf);function sp(e,t){if(Object.is(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;if(e instanceof Map&&t instanceof Map){if(e.size!==t.size)return!1;for(const[s,i]of e)if(!Object.is(i,t.get(s)))return!1;return!0}if(e instanceof Set&&t instanceof Set){if(e.size!==t.size)return!1;for(const s of e)if(!t.has(s))return!1;return!0}const s=Object.keys(e);if(s.length!==Object.keys(t).length)return!1;for(const i of s)if(!Object.prototype.hasOwnProperty.call(t,i)||!Object.is(e[i],t[i]))return!1;return!0}function ip({color:e,dimensions:t,lineWidth:s}){return k.createElement("path",{stroke:e,strokeWidth:s,d:`M${t[0]/2} 0 V${t[1]} M0 ${t[1]/2} H${t[0]}`})}function rp({color:e,radius:t}){return k.createElement("circle",{cx:t,cy:t,r:t,fill:e})}(ep=Qf||(Qf={})).Lines="lines",ep.Dots="dots",ep.Cross="cross";const np={[Qf.Dots]:"#91919a",[Qf.Lines]:"#eee",[Qf.Cross]:"#e2e2e2"},op={[Qf.Dots]:1,[Qf.Lines]:1,[Qf.Cross]:6},ap=e=>({transform:e.transform,patternId:`pattern-${e.rfId}`});function lp({id:e,variant:t=Qf.Dots,gap:s=20,size:i,lineWidth:r=1,offset:n=2,color:o,style:a,className:c}){const h=l.useRef(null),{transform:d,patternId:u}=Jc(ap,sp),f=o||np[t],p=i||op[t],m=t===Qf.Dots,g=t===Qf.Cross,_=Array.isArray(s)?s:[s,s],v=[_[0]*d[2]||1,_[1]*d[2]||1],x=p*d[2],y=g?[x,x]:v,b=m?[x/n,x/n]:[y[0]/n,y[1]/n];return k.createElement("svg",{className:An(["react-flow__background",c]),style:{...a,position:"absolute",width:"100%",height:"100%",top:0,left:0},ref:h,"data-testid":"rf__background"},k.createElement("pattern",{id:u+e,x:d[0]%v[0],y:d[1]%v[1],width:v[0],height:v[1],patternUnits:"userSpaceOnUse",patternTransform:`translate(-${b[0]},-${b[1]})`},m?k.createElement(rp,{color:f,radius:x/n}):k.createElement(ip,{dimensions:y,color:f,lineWidth:r})),k.createElement("rect",{x:"0",y:"0",width:"100%",height:"100%",fill:`url(#${u+e})`}))}lp.displayName="Background";var cp=l.memo(lp);function hp(e,t){switch(t.type){case"add_variable":return e.variables.some(e=>e.key===t.variable.key)?e:{...e,variables:[...e.variables,t.variable]};case"remove_variable":return{...e,variables:e.variables.filter(e=>e.key!==t.key)};case"update_variable":return{...e,variables:e.variables.map(e=>e.key===t.key?{...e,...t.patch}:e)};case"add_node":return{...e,nodes:[...e.nodes,t.node]};case"remove_node":return{...e,nodes:e.nodes.filter(e=>e.id!==t.nodeId),edges:e.edges.filter(e=>e.source!==t.nodeId&&e.target!==t.nodeId)};case"update_node":return{...e,nodes:e.nodes.map(e=>e.id===t.nodeId?{...e,...t.patch}:e)};case"move_node":return{...e,nodes:e.nodes.map(e=>e.id===t.nodeId?{...e,position:t.position}:e)};case"add_edge":{const s=t.sourceHandle??"default";if(e.edges.some(e=>e.source===t.source&&(e.sourceHandle??"default")===s&&e.target===t.target))return e;const i={id:In("e"),source:t.source,sourceHandle:s,target:t.target};return{...e,edges:[...e.edges,i]}}case"remove_edge":return{...e,edges:e.edges.filter(e=>e.id!==t.edgeId)};case"set_track_name":return{...e,trackName:t.name};case"set_adapter":return{...e,adapter:t.adapter};case"replace":return t.flow;default:return e}}const dp=l.createContext(null);function up({value:e,children:t}){return p.jsx(dp.Provider,{value:e,children:t})}function fp(){const e=l.useContext(dp);if(!e)throw new Error("useGraphDispatch outside GraphProvider");return e.dispatch}function pp(e){const t=l.useContext(dp);return(null==t?void 0:t.nodeStates)?t.nodeStates.get(e)??null:null}const mp=[{type:"user_input",icon:"💬",label:"用户输入"},{type:"llm",icon:"🤖",label:"LLM 调用"},{type:"if",icon:"🔀",label:"逻辑判断"}];function gp(e,t){const s=In("n");switch(e){case"user_input":return{id:s,type:"user_input",position:t,fields:[]};case"llm":return{id:s,type:"llm",position:t,promptTemplate:"",inputs:[],outputs:[]};case"if":return{id:s,type:"if",position:t,conditionExpr:""};default:throw new Error(`unknown node type: ${e}`)}}function _p(){const e=fp();return p.jsxs("aside",{className:"w-32 border-r bg-white p-2 flex flex-col gap-2",children:[p.jsx("div",{className:"text-xs text-gray-500 px-1",children:"拖入画布"}),mp.map(t=>p.jsxs("div",{draggable:!0,onDragStart:e=>{e.dataTransfer.setData("application/x-ccweb-flow-node",t.type),e.dataTransfer.effectAllowed="move"},onClick:()=>{const s=gp(t.type,{x:200,y:200});e({type:"add_node",node:s})},className:"cursor-grab rounded border bg-gray-50 hover:bg-blue-50 px-2 py-2 text-sm flex items-center gap-1",children:[p.jsx("span",{children:t.icon}),p.jsx("span",{children:t.label})]},t.type))]})}function vp({nodeId:e,icon:t,label:s,hoverColor:i="hover:text-red-600"}){const r=fp();return p.jsxs("div",{className:"flex items-center gap-2 mb-1",children:[p.jsx("span",{className:"text-lg",children:t}),p.jsx("span",{className:"font-medium flex-1",children:s}),p.jsx("button",{type:"button",className:`nodrag text-gray-400 ${i} px-1 text-base leading-none`,onClick:t=>{t.stopPropagation(),r({type:"remove_node",nodeId:e})},onPointerDown:e=>{e.stopPropagation()},title:"删除节点",children:"×"})]})}const xp={user_input:function({id:e,data:t,selected:s}){const i=pp(e);return p.jsxs("div",{className:["rounded-lg border-2 px-3 py-2 bg-pink-50 min-w-[240px]",s?"border-blue-500 shadow":"border-pink-300",(r=i,"active"===r?"border-amber-500 ring-2 ring-amber-200 animate-pulse":"completed"===r?"border-green-600 ring-1 ring-green-200":"failed"===r?"border-red-600 ring-2 ring-red-200":"skipped"===r?"opacity-50 line-through":"")].join(" "),children:[p.jsx(bd,{type:"target",position:Bh.Top}),p.jsx(vp,{nodeId:e,icon:"💬",label:"用户输入"}),p.jsx("div",{className:"font-mono text-sm text-gray-700",children:0===t.fields.length?p.jsx("div",{className:"text-gray-400",children:"(无字段)"}):t.fields.map((e,t)=>p.jsxs("div",{className:"pl-1",children:[e.varKey," ",p.jsxs("span",{className:"text-xs text-gray-400",children:["(",e.uiHint??"text",")"]})]},t))}),p.jsx(bd,{type:"source",position:Bh.Bottom})]});var r},llm:function({id:e,data:t,selected:s}){const i=pp(e);return p.jsxs("div",{className:["rounded-lg border-2 px-3 py-2 bg-orange-50 min-w-[280px] max-w-[360px]",s?"border-blue-500 shadow":"border-orange-300",(r=i,"active"===r?"border-amber-500 ring-2 ring-amber-200 animate-pulse":"completed"===r?"border-green-600 ring-1 ring-green-200":"failed"===r?"border-red-600 ring-2 ring-red-200":"skipped"===r?"opacity-50 line-through":"")].join(" "),children:[p.jsx(bd,{type:"target",position:Bh.Top}),p.jsx(vp,{nodeId:e,icon:"🤖",label:"LLM 调用"}),p.jsxs("div",{className:"font-mono text-xs text-gray-700",children:[p.jsxs("div",{className:"truncate",children:["prompt: ",t.promptTemplate.slice(0,60),t.promptTemplate.length>60?"…":""]}),p.jsxs("div",{className:"text-xs text-gray-500 mt-1",children:[t.inputs.length," 输入 → ",t.outputs.length," 输出"]})]}),p.jsx(bd,{type:"source",position:Bh.Bottom})]});var r},if:function({id:e,data:t,selected:s}){const i=pp(e);return p.jsxs("div",{className:["rounded-lg border-2 px-3 py-2 bg-sky-50 min-w-[240px]",s?"border-blue-500 shadow":"border-sky-300",(r=i,"active"===r?"border-amber-500 ring-2 ring-amber-200 animate-pulse":"completed"===r?"border-green-600 ring-1 ring-green-200":"failed"===r?"border-red-600 ring-2 ring-red-200":"skipped"===r?"opacity-50 line-through":"")].join(" "),children:[p.jsx(bd,{type:"target",position:Bh.Top}),p.jsx(vp,{nodeId:e,icon:"🔀",label:"逻辑判断"}),p.jsxs("div",{className:"font-mono text-sm text-gray-700",children:["if (",t.conditionExpr||"<空条件>",")"]}),p.jsx(bd,{type:"source",position:Bh.Bottom,id:"true",style:{left:"30%",background:"#10b981"}}),p.jsx(bd,{type:"source",position:Bh.Bottom,id:"false",style:{left:"70%",background:"#ef4444"}}),p.jsxs("div",{className:"flex justify-between text-xs text-gray-400 mt-1 px-2",children:[p.jsx("span",{className:"text-green-600",children:"true"}),p.jsx("span",{className:"text-red-600",children:"false"})]})]});var r}},yp={deletable:function(e){const{id:t,sourceX:s,sourceY:i,targetX:r,targetY:n,sourcePosition:o,targetPosition:a,selected:c,style:h,markerEnd:d}=e,u=fp(),[f,m]=l.useState(!1),[g,_,v]=Gh({sourceX:s,sourceY:i,sourcePosition:o,targetX:r,targetY:n,targetPosition:a});return p.jsxs(p.Fragment,{children:[p.jsx(wh,{id:t,path:g,markerEnd:d,style:h}),p.jsx("path",{d:g,fill:"none",stroke:"transparent",strokeWidth:20,onMouseEnter:()=>m(!0),onMouseLeave:()=>m(!1),style:{cursor:"pointer"}}),p.jsx(Lf,{children:(f||c)&&p.jsx("div",{style:{position:"absolute",transform:`translate(-50%, -50%) translate(${_}px, ${v}px)`,pointerEvents:"all"},className:"nodrag nopan",onMouseEnter:()=>m(!0),onMouseLeave:()=>m(!1),children:p.jsx("button",{type:"button",onClick:e=>{e.stopPropagation(),u({type:"remove_edge",edgeId:t})},className:"rounded-full bg-white border border-gray-300 text-gray-500 hover:text-red-600 hover:border-red-400 w-5 h-5 leading-none text-sm shadow",title:"删除连线",children:"×"})})})]})}},bp={type:"deletable"};function wp({flow:e,dispatch:t,selectedNodeId:s,onSelect:i}){const r=l.useRef(null),n=nu(),o=l.useMemo(()=>function(e){const t=new Map;if(0===e.nodes.length)return t;const s=new Map;for(const a of e.nodes)s.set(a.id,0);for(const a of e.edges)null!==a.target&&s.set(a.target,(s.get(a.target)??0)+1);const i=e.nodes.filter(e=>0===(s.get(e.id)??0)),r=new Set,n=i.map(e=>e.id);let o=1;for(;n.length>0;){const s=n.shift();if(r.has(s))continue;r.add(s),t.set(s,o++);const i=e.edges.filter(e=>e.source===s&&null!==e.target);for(const e of i)e.target&&!r.has(e.target)&&n.push(e.target)}for(const a of e.nodes)r.has(a.id)||t.set(a.id,o++);return t}(e),[e]),a=l.useMemo(()=>e.nodes.map(e=>({id:e.id,type:e.type,position:e.position,data:e,selected:e.id===s})),[e.nodes,s]),c=l.useMemo(()=>e.edges.filter(e=>null!==e.target).map(e=>({id:e.id,source:e.source,target:e.target,sourceHandle:"default"===e.sourceHandle?null:e.sourceHandle??null,type:"deletable"})),[e.edges]),h=l.useCallback(e=>{for(const r of e)"position"===r.type&&r.position?t({type:"move_node",nodeId:r.id,position:r.position}):"remove"===r.type?t({type:"remove_node",nodeId:r.id}):"select"===r.type&&(r.selected?i(r.id):s===r.id&&i(null))},[t,i,s]),d=l.useCallback(e=>{for(const s of e)"remove"===s.type&&t({type:"remove_edge",edgeId:s.id})},[t]),u=l.useCallback(e=>{if(!e.source||!e.target)return;const s="true"===e.sourceHandle||"false"===e.sourceHandle?e.sourceHandle:"default";t({type:"add_edge",source:e.source,sourceHandle:s,target:e.target})},[t]);return p.jsxs("div",{ref:r,className:"flex-1 h-full relative",onDragOver:e=>{e.preventDefault(),e.dataTransfer.dropEffect="move"},onDrop:e=>{e.preventDefault();const s=e.dataTransfer.getData("application/x-ccweb-flow-node");if(!s)return;const i=gp(s,n.screenToFlowPosition({x:e.clientX,y:e.clientY}));t({type:"add_node",node:i})},children:[p.jsxs(Rf,{nodes:a,edges:c,onNodesChange:h,onEdgesChange:d,onConnect:u,nodeTypes:xp,edgeTypes:yp,defaultEdgeOptions:bp,deleteKeyCode:["Delete","Backspace"],fitView:!0,children:[p.jsx(cp,{}),p.jsx(tp,{}),p.jsx(Ff,{})]}),p.jsx("div",{className:"absolute inset-0 pointer-events-none",children:e.nodes.map(e=>{const t=o.get(e.id);if(void 0===t)return null;const s=n.flowToScreenPosition({x:e.position.x,y:e.position.y});return s?p.jsxs("div",{className:"absolute text-xs text-gray-500 font-mono bg-white/80 px-1 rounded",style:{left:s.x-4,top:s.y-16},children:["#",t]},`label-${e.id}`):null})})]})}const Sp=/^[a-zA-Z_][a-zA-Z0-9_]*$/;function Cp(e,t){const s="@"===t?/@\{([^}]*)\}/g:/\$\{([^}]*)\}/g,i=new Set,r=[];let n;for(;null!==(n=s.exec(e));){const e=n[1]??"";Sp.test(e)&&!i.has(e)&&(i.add(e),r.push(e))}return r}function kp(e){return Cp(e,"@")}function Np(e){return Cp(e,"$")}const Ep=/^[a-zA-Z_][a-zA-Z0-9_]*$/,jp=new Set(["claude-code","codex","qwen","gemini"]);function Mp({flow:e,projectId:t,filename:s,dirty:i,runStatus:r,onSaved:n,onClose:o,onRunStarted:a,onCancelled:c}){const[h,d]=l.useState(!1),[u,f]=l.useState(null),m=async()=>{if(i)alert("请先保存");else try{const{runId:e}=await function(e,t){return Pn("POST",`/api/projects/${e}/track-flows/file/${encodeURIComponent(t)}/run`,{})}(t,s);a(e)}catch(R_){alert(`运行失败:${R_.message}`)}},g="idle"===r||"completed"===r||"failed"===r||"cancelled"===r;return p.jsxs("header",{className:"border-b bg-white px-3 py-2 flex items-center gap-2",children:[p.jsx("button",{onClick:o,className:"text-sm text-gray-600 hover:text-black",children:"←"}),p.jsx("div",{className:"font-mono text-sm",children:s}),i&&p.jsx("span",{className:"text-xs text-orange-500",children:"●"}),p.jsx("div",{className:"flex-1"}),p.jsx("button",{onClick:async()=>{f(null);const i=function(e){const t=[];jp.has(e.adapter)||t.push({level:"error",message:`非法 adapter: ${e.adapter}`});const s=new Set;for(const i of e.variables)Ep.test(i.key)||t.push({level:"error",message:`变量 key "${i.key}" 不是合法 identifier`,variableKey:i.key}),s.has(i.key)?t.push({level:"error",message:`变量 key "${i.key}" 重名(duplicate)`,variableKey:i.key}):s.add(i.key);for(const i of e.nodes)if("llm"===i.type){const e=kp(i.promptTemplate),r=Np(i.promptTemplate);for(const n of[...e,...r])s.has(n)||t.push({level:"error",message:`LLM 节点 ${i.id} 引用未声明变量 "${n}"`,nodeId:i.id})}else if("user_input"===i.type)for(const e of i.fields)s.has(e.varKey)||t.push({level:"error",message:`用户输入节点 ${i.id} 字段引用未声明变量 "${e.varKey}"`,nodeId:i.id});if(0===e.nodes.length)t.push({level:"error",message:"空 flow(无任何节点 / 缺入口)"});else{const s=new Map;for(const t of e.nodes)s.set(t.id,0);for(const t of e.edges)null!==t.target&&s.set(t.target,(s.get(t.target)??0)+1);const i=e.nodes.filter(e=>0===(s.get(e.id)??0));0===i.length?t.push({level:"error",message:"无入口节点(图中存在环且无 in-degree=0 节点)"}):i.length>1&&t.push({level:"error",message:`多入口节点(不允许):${i.map(e=>e.id).join(", ")}`})}return{ok:0===t.filter(e=>"error"===e.level).length,errors:t}}(e);if(i.ok){d(!0);try{const i=On(e.variables);await Ln(t,s,e,i),n()}catch(R_){f(`保存失败:${R_.message}`)}finally{d(!1)}}else f(`无法保存:${i.errors.map(e=>e.message).join("; ")}`)},disabled:h,className:"text-sm px-3 py-1 rounded bg-blue-600 text-white hover:bg-blue-700 disabled:opacity-50",children:h?"保存中…":"保存"}),g?p.jsx("button",{onClick:()=>{m()},disabled:i,title:i?"请先保存":"运行工作轨",className:"text-sm px-3 py-1 rounded bg-green-600 text-white hover:bg-green-700 disabled:opacity-40",children:"▶ 运行"}):p.jsx("button",{onClick:()=>{(async()=>{try{await Tn(t,s)}catch{}c()})()},className:"text-sm px-3 py-1 rounded bg-red-600 text-white hover:bg-red-700",children:"■ 取消"}),u&&p.jsx("div",{className:"text-xs text-red-600 ml-2 max-w-md truncate",title:u,children:u})]})}const Dp=/^[a-zA-Z_][a-zA-Z0-9_]*$/;function Rp({value:e,onChange:t,placeholder:s}){const[i,r]=l.useState(!1),n=Dp.test(e)||""===e;return p.jsxs("div",{children:[p.jsx("input",{type:"text",value:e,placeholder:s,onChange:e=>t(e.target.value),onBlur:()=>r(!0),className:["w-full px-2 py-1 rounded border text-sm font-mono",i&&!n?"border-red-500":"border-gray-300"].join(" ")}),i&&!n&&p.jsx("div",{className:"text-xs text-red-600 mt-1",children:"仅允许字母/数字/下划线,不能以数字开头"})]})}function Pp({flow:e}){const t=fp();return p.jsxs("aside",{className:"w-72 border-r bg-white p-3 overflow-y-auto",children:[p.jsxs("div",{className:"flex items-center justify-between mb-2",children:[p.jsx("div",{className:"text-sm font-medium",children:"变量声明"}),p.jsx("button",{type:"button",onClick:()=>{const s=`var${e.variables.length+1}`;t({type:"add_variable",variable:{key:s,description:"",initialValue:null}})},className:"text-xs px-2 py-0.5 rounded border hover:bg-blue-50",children:"+ 新增"})]}),0===e.variables.length&&p.jsx("div",{className:"text-xs text-gray-400",children:"(无变量)"}),p.jsx("div",{className:"space-y-2",children:e.variables.map(e=>p.jsx(Lp,{variable:e,dispatch:t},e.key))})]})}function Lp({variable:e,dispatch:t}){const s=s=>{t({type:"update_variable",key:e.key,patch:s})},i=e=>{if(""===e||"null"===e)return null;if("true"===e)return!0;if("false"===e)return!1;const t=Number(e);return!Number.isNaN(t)&&/^[0-9.+-]+$/.test(e)?t:e};return p.jsxs("div",{className:"border rounded p-2 bg-gray-50 space-y-1",children:[p.jsxs("div",{className:"flex gap-1 items-start",children:[p.jsx("div",{className:"flex-1",children:p.jsx(Rp,{value:e.key,onChange:s=>{s!==e.key&&(t({type:"remove_variable",key:e.key}),t({type:"add_variable",variable:{...e,key:s}}))},placeholder:"变量名"})}),p.jsx("button",{type:"button",onClick:()=>{window.confirm(`删除变量 "${e.key}"?`)&&t({type:"remove_variable",key:e.key})},className:"text-xs text-red-500 hover:text-red-700 px-1",title:"删除",children:"×"})]}),p.jsx("input",{type:"text",value:e.description,onChange:e=>s({description:e.target.value}),placeholder:"变量描述(含义)",className:"w-full px-2 py-1 rounded border text-sm"}),p.jsx("input",{type:"text",value:(r=e.initialValue,null==r?"":"string"==typeof r?r:JSON.stringify(r)),onChange:e=>s({initialValue:i(e.target.value)}),placeholder:"初始值(可空)",className:"w-full px-2 py-1 rounded border text-sm font-mono"})]});var r}function Tp({value:e,variables:t,onChange:s,onCreateVariable:i,rows:r=5,placeholder:n}){const o=l.useRef(null),[a,c]=l.useState(null),h=a?t.filter(e=>e.key.toLowerCase().includes(a.filter.toLowerCase())):[],d=!!i,u=h.length+(d?1:0),f=()=>c(null),m=t=>{if(!a||!o.current)return;const i=e.slice(0,a.startPos),r=e.slice(o.current.selectionStart),n=`${a.trigger}{${t}}`;s(i+n+r);const l=i.length+n.length;setTimeout(()=>{o.current&&(o.current.focus(),o.current.setSelectionRange(l,l))},0),f()};return l.useEffect(()=>{if(!a)return;const e=e=>{o.current&&!o.current.contains(e.target)&&f()};return document.addEventListener("mousedown",e),()=>document.removeEventListener("mousedown",e)},[a]),p.jsxs("div",{className:"relative",children:[p.jsx("textarea",{ref:o,value:e,onChange:e=>{const t=e.target.value,i=e.target.selectionStart;s(t);const r=t[i-1];if("@"!==r&&"$"!==r||a){if(a){const e=t.slice(a.startPos+1,i);if(!/^[a-zA-Z0-9_]*$/.test(e))return void f();c({...a,filter:e,selectedIndex:0})}}else c({trigger:r,startPos:i-1,filter:"",selectedIndex:0})},onKeyDown:e=>{if(a)if("Escape"===e.key)e.preventDefault(),f();else if("ArrowDown"===e.key)e.preventDefault(),c({...a,selectedIndex:Math.min(a.selectedIndex+1,u-1)});else if("ArrowUp"===e.key)e.preventDefault(),c({...a,selectedIndex:Math.max(a.selectedIndex-1,0)});else if("Enter"===e.key||"Tab"===e.key){if(0===u)return;e.preventDefault();const t=a.selectedIndex;if(t<h.length)m(h[t].key);else if(d&&i){const e=window.prompt("新变量名(key,valid identifier):",a.filter||"");e&&/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(e)&&(i(e),m(e))}}},rows:r,placeholder:n,className:"w-full px-2 py-1 rounded border text-sm font-mono"}),a&&u>0&&p.jsxs("div",{className:"absolute left-0 right-0 top-full mt-1 max-h-60 overflow-y-auto rounded border bg-white shadow-lg z-50",children:[h.map((e,t)=>p.jsxs("div",{className:["px-2 py-1 cursor-pointer text-sm",t===a.selectedIndex?"bg-blue-100":"hover:bg-gray-50"].join(" "),onMouseDown:t=>{t.preventDefault(),m(e.key)},onMouseEnter:()=>c({...a,selectedIndex:t}),children:[p.jsxs("span",{className:"font-mono",children:[a.trigger,e.key]}),e.description&&p.jsx("span",{className:"text-xs text-gray-400 ml-2",children:e.description})]},e.key)),d&&p.jsx("div",{className:["px-2 py-1 cursor-pointer text-sm border-t text-blue-600",a.selectedIndex===h.length?"bg-blue-100":"hover:bg-gray-50"].join(" "),onMouseDown:e=>{e.preventDefault();const t=window.prompt("新变量名(key,valid identifier):",a.filter||"");t&&/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(t)&&i&&(i(t),m(t))},onMouseEnter:()=>c({...a,selectedIndex:h.length}),children:"+ 新建变量"})]})]})}function Ip({flow:e,selectedNodeId:t}){const s=fp(),i=e.nodes.find(e=>e.id===t)??null;return i?p.jsxs("aside",{className:"w-96 border-l bg-white p-4 overflow-y-auto",children:[p.jsxs("div",{className:"text-xs text-gray-500 mb-2",children:["节点 ID: ",i.id]}),p.jsxs("div",{className:"text-xs text-gray-500 mb-3",children:["类型: ",(r=i.type,"user_input"===r?"用户输入":"llm"===r?"LLM 调用":"逻辑判断")]}),"user_input"===i.type&&p.jsx(Bp,{node:i,variables:e.variables,dispatch:s}),"llm"===i.type&&p.jsx(Op,{node:i,variables:e.variables,dispatch:s}),"if"===i.type&&p.jsx(Ap,{node:i,dispatch:s}),p.jsx("div",{className:"mt-6 pt-3 border-t",children:p.jsx("button",{type:"button",onClick:()=>{window.confirm(`确定删除节点 "${i.id}"?相关连线一起删除。`)&&s({type:"remove_node",nodeId:i.id})},className:"w-full px-3 py-1.5 rounded border border-red-300 text-red-600 hover:bg-red-50 text-sm",children:"删除节点"})})]}):p.jsx("aside",{className:"w-96 border-l bg-white p-4 text-sm text-gray-400",children:"选中节点编辑字段"});var r}function Bp({node:e,variables:t,dispatch:s}){const i=t=>s({type:"update_node",nodeId:e.id,patch:t}),r=(t,s)=>i({fields:e.fields.map((e,i)=>i===t?{...e,...s}:e)});return p.jsxs("div",{className:"space-y-3",children:[p.jsx("label",{className:"text-xs text-gray-500 block",children:"绑定变量"}),0===e.fields.length&&p.jsx("div",{className:"text-xs text-gray-400",children:"(无字段)"}),e.fields.map((s,n)=>p.jsxs("div",{className:"border rounded p-2 bg-gray-50 space-y-1",children:[p.jsxs("div",{className:"flex gap-1",children:[p.jsx("select",{value:s.varKey,onChange:e=>r(n,{varKey:e.target.value}),className:"flex-1 px-2 py-1 rounded border text-sm",children:t.map(e=>p.jsxs("option",{value:e.key,children:[e.key," — ",e.description]},e.key))}),p.jsx("button",{onClick:()=>{return t=n,i({fields:e.fields.filter((e,s)=>s!==t)});var t},className:"text-xs text-red-500 px-2",children:"×"})]}),p.jsxs("select",{value:s.uiHint??"text",onChange:e=>r(n,{uiHint:e.target.value}),className:"w-full px-2 py-1 rounded border text-sm",children:[p.jsx("option",{value:"text",children:"text"}),p.jsx("option",{value:"textarea",children:"textarea"}),p.jsx("option",{value:"number",children:"number"}),p.jsx("option",{value:"bool",children:"bool"}),p.jsx("option",{value:"enum",children:"enum"})]})]},n)),p.jsx("button",{onClick:()=>{if(0===t.length)return void alert("请先在左侧变量声明面板中添加变量");const s={varKey:t[0].key,uiHint:"text"};i({fields:[...e.fields,s]})},className:"text-sm text-blue-600",children:"+ 添加字段"})]})}function Op({node:e,variables:t,dispatch:s}){return p.jsxs("div",{className:"space-y-3",children:[p.jsxs("div",{children:[p.jsx("label",{className:"text-xs text-gray-500 block mb-1",children:"Prompt 模板"}),p.jsx(Tp,{value:e.promptTemplate,variables:t,onChange:t=>{var i;i={promptTemplate:t,inputs:kp(t),outputs:Np(t)},s({type:"update_node",nodeId:e.id,patch:i})},onCreateVariable:e=>{s({type:"add_variable",variable:{key:e,description:"",initialValue:null}})},rows:6,placeholder:"@{var} 引用输入,${var} 标记输出"})]}),p.jsxs("div",{className:"text-xs text-gray-500",children:["自动推导:",e.inputs.length," 输入(",e.inputs.join(", ")||"—",")/ ",e.outputs.length," 输出(",e.outputs.join(", ")||"—",")"]})]})}function Ap({node:e,dispatch:t}){return p.jsxs("div",{className:"space-y-3",children:[p.jsx("label",{className:"text-xs text-gray-500 block",children:"条件表达式"}),p.jsx("input",{type:"text",value:e.conditionExpr,onChange:s=>t({type:"update_node",nodeId:e.id,patch:{conditionExpr:s.target.value}}),placeholder:"例:has_error == true",className:"w-full px-2 py-1 rounded border text-sm font-mono"}),p.jsx("div",{className:"text-xs text-gray-400",children:"支持:变量名、字面量(null/true/false/数字/字符串)、比较运算(==、!=、>、<、>=、<=)、逻辑(&& ||)。求值在 M2b 实现。"})]})}function zp({flow:e,run:t}){return"idle"===t.status?null:p.jsxs("div",{className:"border-t bg-gray-50 px-3 py-2 text-xs space-y-1 max-h-64 overflow-y-auto",children:[p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsx("span",{className:"font-medium",children:"运行状态:"}),p.jsx("span",{className:Hp(t.status),children:$p(t.status)}),t.runId&&p.jsx("span",{className:"text-gray-400 font-mono",children:t.runId}),t.currentNodeId&&p.jsxs("span",{children:["当前: ",t.currentNodeId]})]}),t.quota&&p.jsxs("div",{className:"flex gap-4 text-gray-600",children:[void 0!==t.quota.iterRemaining&&p.jsxs("span",{children:["节点剩余迭代: ",t.quota.iterRemaining]}),p.jsxs("span",{children:["LLM 调用剩余: ",t.quota.llmCallsRemaining]}),p.jsxs("span",{children:["运行剩余: ",Math.floor(t.quota.durationRemainingMs/1e3),"s"]})]}),t.error&&p.jsxs("div",{className:"text-red-600",children:["错误: ",t.error]}),p.jsxs("div",{className:"mt-2",children:[p.jsx("div",{className:"text-gray-500 mb-1",children:"变量值实时:"}),p.jsx("div",{className:"font-mono space-y-0.5",children:e.variables.map(e=>p.jsxs("div",{className:"flex gap-2",children:[p.jsx("span",{className:"text-blue-700",children:e.key}),p.jsxs("span",{className:"text-gray-400",children:["(",e.description,")"]}),p.jsxs("span",{children:["= ",Wp(t.vars[e.key]??null)]})]},e.key))})]})]})}function $p(e){switch(e){case"running":return"运行中";case"waiting_user_input":return"等待用户输入";case"completed":return"完成";case"failed":return"失败";case"cancelled":return"已取消";default:return e}}function Hp(e){switch(e){case"running":return"text-blue-600";case"waiting_user_input":return"text-amber-600";case"completed":return"text-green-600";case"failed":return"text-red-600";case"cancelled":return"text-gray-500";default:return"text-gray-600"}}function Wp(e){return null==e?"null":"string"==typeof e?JSON.stringify(e):"number"==typeof e||"boolean"==typeof e?String(e):JSON.stringify(e)}function Fp({open:e,flow:t,pending:s,onSubmit:i,onCancel:r}){const[n,o]=l.useState({});return p.jsx(Xe,{open:e,onOpenChange:e=>{e||r()},children:p.jsxs(Ge,{children:[p.jsx(Ze,{className:"fixed inset-0 bg-black/40 z-[60]"}),p.jsxs(Je,{className:"fixed left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-[480px] bg-white rounded-lg z-[60] p-6",children:[p.jsx(Qe,{className:"text-lg font-semibold mb-4",children:"需要您输入"}),p.jsx("div",{className:"space-y-3",children:s.fields.map(e=>{const s=t.variables.find(t=>t.key===e.varKey),i=s?`${e.varKey}(${s.description})`:e.varKey,r=n[e.varKey]??"";return p.jsxs("div",{children:[p.jsx("label",{className:"text-sm text-gray-600 block mb-1",children:i}),"textarea"===e.uiHint?p.jsx("textarea",{value:r,onChange:t=>o({...n,[e.varKey]:t.target.value}),rows:4,className:"w-full px-2 py-1 rounded border text-sm font-mono"}):"enum"===e.uiHint&&e.variants?p.jsxs("select",{value:r,onChange:t=>o({...n,[e.varKey]:t.target.value}),className:"w-full px-2 py-1 rounded border text-sm",children:[p.jsx("option",{value:"",children:"(请选择)"}),e.variants.map(e=>p.jsx("option",{value:e,children:e},e))]}):"number"===e.uiHint?p.jsx("input",{type:"number",value:r,onChange:t=>o({...n,[e.varKey]:Number(t.target.value)}),className:"w-full px-2 py-1 rounded border text-sm font-mono"}):"bool"===e.uiHint?p.jsx("input",{type:"checkbox",checked:!!n[e.varKey],onChange:t=>o({...n,[e.varKey]:t.target.checked})}):p.jsx("input",{type:"text",value:r,onChange:t=>o({...n,[e.varKey]:t.target.value}),className:"w-full px-2 py-1 rounded border text-sm font-mono"})]},e.varKey)})}),p.jsxs("div",{className:"mt-6 flex justify-end gap-2",children:[p.jsx("button",{onClick:r,className:"text-sm px-3 py-1 rounded border",children:"取消运行"}),p.jsx("button",{onClick:()=>{i(n)},className:"text-sm px-3 py-1 rounded bg-blue-600 text-white",children:"提交"})]})]})]})})}const Kp={runId:null,status:"idle",nodeStates:new Map,vars:{},error:null,currentNodeId:null,pendingUserInput:null,quota:null};function Vp(){const[e,t]=l.useState(Kp),s=l.useRef(null),i=l.useCallback(()=>{s.current=null,t(Kp)},[]),r=l.useCallback(e=>{s.current=e,t(t=>({...t,runId:e,status:"running",nodeStates:new Map,vars:{},error:null}))},[]);return l.useEffect(()=>{const e=e=>{const i=e.detail;(null==i?void 0:i.type)&&i.type.startsWith("flow_")&&(s.current&&i.runId&&i.runId!==s.current||t(e=>function(e,t){const s=t.type;if("flow_started"===s)return{...e,status:"running",vars:t.initialVars??{}};if("flow_node_active"===s){const s=new Map(e.nodeStates);return s.set(t.nodeId,"active"),{...e,currentNodeId:t.nodeId,nodeStates:s,quota:t.quota??e.quota}}if("flow_node_completed"===s){const s=new Map(e.nodeStates);return s.set(t.nodeId,"completed"),{...e,nodeStates:s}}if("flow_node_failed"===s){const s=new Map(e.nodeStates);return t.nodeId&&s.set(t.nodeId,"failed"),{...e,status:"failed",nodeStates:s,error:t.reason??null}}if("flow_var_changed"===s)return{...e,vars:{...e.vars,[t.key]:t.value}};if("flow_user_input_required"===s)return{...e,status:"waiting_user_input",pendingUserInput:{nodeId:t.nodeId,fields:t.fields}};if("flow_done"===s)return{...e,status:"completed",currentNodeId:null};if("flow_cancelled"===s)return{...e,status:"cancelled"};if("flow_error"===s)return{...e,status:"failed",error:t.message??"unknown"};return e}(e,i)))};return window.addEventListener("ccweb:flow-msg",e),()=>window.removeEventListener("ccweb:flow-msg",e)},[]),{state:e,attachRunId:r,reset:i}}function Up({projectId:e,filename:t,isNew:s,onClose:i}){const[r,n]=l.useReducer(hp,function(e,t="claude-code"){return Bn(e,t)}(t.replace(/\.flow$/,""))),[o,a]=l.useState(s?{kind:"ready"}:{kind:"loading"}),[c,h]=l.useState(null),[d,u]=l.useState(!1),{state:f,attachRunId:m,reset:g}=Vp();l.useEffect(()=>{if(s)return;let i=!1;return(async()=>{try{const s=await function(e,t){return Pn("GET",`/api/projects/${e}/track-flows/file/${encodeURIComponent(t)}`)}(e,t);if(i)return;const r=function(e){if(!e||"object"!=typeof e)return{ok:!1,reason:"not an object"};const t=e;return 3!==t.version?{ok:!1,reason:`unsupported version: ${t.version}`}:"string"!=typeof t.trackName?{ok:!1,reason:"trackName missing"}:"string"!=typeof t.adapter?{ok:!1,reason:"adapter missing"}:Array.isArray(t.variables)&&Array.isArray(t.nodes)&&Array.isArray(t.edges)?{ok:!0,flow:t}:{ok:!1,reason:"variables/nodes/edges must be arrays"}}(s.flow);if(!r.ok||!r.flow)return void a({kind:"error",message:`flow 解析失败:${r.reason}`});const o=s.trainJson?function(e,t){const s=new Set(e.variables.map(e=>e.key)),i=new Set(Object.keys(t)),r=[...s].filter(e=>!i.has(e)),n=[...i].filter(e=>!s.has(e));return{ok:0===r.length&&0===n.length,missingKeys:r,extraKeys:n}}(r.flow,s.trainJson):{ok:!0,missingKeys:[],extraKeys:[]};o.ok||a({kind:"desync",message:`train.json 与 variables 失同步(缺 ${o.missingKeys.length} / 多 ${o.extraKeys.length})`}),n({type:"replace",flow:r.flow}),o.ok&&a({kind:"ready"})}catch(R_){i||a({kind:"error",message:R_.message})}})(),()=>{i=!0}},[e,t,s]),l.useEffect(()=>{"ready"!==o.kind&&"desync"!==o.kind||u(!0)},[r]);const _=async s=>{if(f.runId)try{await function(e,t,s,i){return Pn("POST",`/api/projects/${e}/track-flows/file/${encodeURIComponent(t)}/user_input`,{runId:s,values:i})}(e,t,f.runId,s)}catch(R_){alert(`提交失败:${R_.message}`)}};return"loading"===o.kind?p.jsx("div",{className:"flex items-center justify-center h-full text-gray-400",children:"加载中…"}):"error"===o.kind?p.jsxs("div",{className:"flex flex-col items-center justify-center h-full text-red-600 gap-2 max-w-md mx-auto p-6",children:[p.jsx("div",{className:"font-medium",children:"加载失败"}),p.jsx("div",{className:"text-sm",children:o.message}),p.jsx("button",{onClick:i,className:"text-sm px-3 py-1 rounded border mt-2",children:"关闭"})]}):p.jsxs(Sf,{children:[p.jsx(up,{value:{dispatch:n,nodeStates:f.nodeStates},children:p.jsxs("div",{className:"flex flex-col h-full",children:[p.jsx(Mp,{flow:r,projectId:e,filename:t,dirty:d,runStatus:f.status,onSaved:()=>u(!1),onClose:()=>{if(d){if(!window.confirm("未保存的修改将丢失。确认关闭吗?"))return}i()},onRunStarted:m,onCancelled:g}),"desync"===o.kind&&p.jsxs("div",{className:"bg-amber-50 border-b border-amber-200 px-3 py-1 text-xs text-amber-800",children:["⚠ ",o.message,"(保存时将以当前 variables 重新派生 train.json)"]}),p.jsxs("div",{className:"flex-1 flex overflow-hidden",children:[p.jsx(_p,{}),p.jsx(Pp,{flow:r}),p.jsx(wp,{flow:r,dispatch:n,selectedNodeId:c,onSelect:h}),p.jsx(Ip,{flow:r,selectedNodeId:c})]}),p.jsx(zp,{flow:r,run:f})]})}),f.pendingUserInput&&p.jsx(Fp,{open:!0,flow:r,pending:f.pendingUserInput,onSubmit:e=>{_(e)},onCancel:()=>{(async()=>{if(f.runId){try{await Tn(e,t,f.runId)}catch{}g()}})()}})]})}function qp({projectId:e,open:t,onOpenChange:s}){const[i,r]=l.useState([]),[n,o]=l.useState(!1),[a,c]=l.useState(null),[h,d]=l.useState(null),[u,f]=l.useState(!1),m=async()=>{if(t){o(!0),c(null);try{const t=await function(e){return Pn("GET",`/api/projects/${e}/track-flows`)}(e);r(t.files)}catch(R_){c(R_.message)}finally{o(!1)}}};l.useEffect(()=>{m()},[t,e]);const g=async t=>{if(window.confirm(`删除 ${t}?`))try{await function(e,t){return Pn("DELETE",`/api/projects/${e}/track-flows/file/${encodeURIComponent(t)}`)}(e,t),await m()}catch(R_){alert(R_.message)}};return p.jsx(Xe,{open:t,onOpenChange:s,children:p.jsxs(Ge,{children:[p.jsx(Ze,{className:"fixed inset-0 bg-black/40 z-50"}),p.jsx(Je,{className:"fixed left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-[90vw] h-[85vh] bg-white rounded-lg z-50 flex flex-col",children:h?p.jsx(Up,{projectId:e,filename:h.filename,isNew:h.isNew,onClose:()=>{d(null),m()}}):p.jsxs(p.Fragment,{children:[p.jsxs("div",{className:"border-b p-3 flex items-center gap-2",children:[p.jsx(Qe,{className:"font-medium",children:"工作轨(v3)"}),p.jsx("div",{className:"flex-1"}),p.jsx("button",{type:"button",onClick:async()=>{const t=window.prompt("工作轨名(filename,不含 .flow 后缀):");if(!t)return;const s=t.trim();if(/^[a-zA-Z0-9_一-鿿぀-ヿㇰ-ㇿ-]+$/.test(s)){f(!0);try{const t=Bn(s),i=On(t.variables);await Ln(e,`${s}.flow`,t,i),await m(),d({filename:`${s}.flow`,isNew:!1})}catch(R_){alert(R_.message)}finally{f(!1)}}else alert("名字只允许字母/数字/下划线/中文/连字符")},disabled:u,className:"text-sm px-3 py-1 rounded bg-blue-600 text-white hover:bg-blue-700 disabled:opacity-50",children:u?"创建中…":"+ 新建工作轨"}),p.jsx(et,{className:"text-sm text-gray-500 hover:text-gray-800 px-2",children:"关闭"})]}),p.jsxs("div",{className:"flex-1 overflow-y-auto p-4",children:[n&&p.jsx("div",{className:"text-sm text-gray-400",children:"加载中…"}),a&&p.jsxs("div",{className:"text-sm text-red-600",children:["错误:",a]}),!n&&!a&&0===i.length&&p.jsx("div",{className:"text-sm text-gray-400 text-center py-12",children:'暂无工作轨。点击右上角"新建工作轨"开始。'}),i.map(e=>p.jsxs("div",{className:"flex items-center gap-2 px-2 py-2 rounded hover:bg-gray-50 cursor-pointer",onClick:()=>d({filename:e.filename,isNew:!1}),children:[p.jsx("span",{className:"text-base",children:"🕸️"}),p.jsxs("div",{className:"flex-1",children:[p.jsx("div",{className:"text-sm font-mono",children:e.filename}),p.jsxs("div",{className:"text-xs text-gray-400",children:[(e.size/1024).toFixed(1)," KB · ",new Date(e.mtimeMs).toLocaleString()]})]}),p.jsx("button",{type:"button",onClick:t=>{t.stopPropagation(),g(e.filename)},className:"text-xs text-red-500 hover:text-red-700 px-2",children:"删除"})]},e.filename))]})]})})]})})}function Yp(e){return p.jsx(qp,{...e})}function Xp({projectId:e,state:t,running:s,onRefresh:i}){if(!t)return null;let r=p.jsx(tt,{className:"h-3 w-3 animate-spin"}),n="text-blue-600 dark:text-blue-400",o="运行中";switch(t.status){case"running":r=p.jsx(tt,{className:"h-3 w-3 animate-spin"}),n="text-blue-600 dark:text-blue-400",o="运行中";break;case"paused":r=p.jsx(tt,{className:"h-3 w-3"}),n="text-amber-600 dark:text-amber-400",o="等待输入";break;case"completed":r=p.jsx(os,{className:"h-3 w-3"}),n="text-emerald-600 dark:text-emerald-400",o="已完成";break;case"failed":r=p.jsx(hs,{className:"h-3 w-3"}),n="text-red-600 dark:text-red-400",o="失败";break;case"cancelled":r=p.jsx(hs,{className:"h-3 w-3"}),n="text-muted-foreground",o="已取消";break;default:r=p.jsx(tt,{className:"h-3 w-3"})}return p.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[p.jsxs("span",{className:`flex items-center gap-1 ${n}`,children:[r,p.jsx("span",{className:"font-medium",children:o})]}),p.jsx("span",{className:"text-muted-foreground font-mono truncate max-w-[200px]",children:t.trackFilename}),void 0!==t.currentTaskIndex&&p.jsxs("span",{className:"text-muted-foreground",children:["#",t.currentTaskIndex]}),s&&p.jsx(W,{size:"sm",variant:"ghost",onClick:async()=>{try{await Promise.reject(new Error("track run API not available in v3 M0")),f.success("已请求中止"),i()}catch(e){f.error(e instanceof Error?e.message:"中止失败")}},title:"中止",className:"h-6 w-6 p-0",children:p.jsx(b,{className:"h-3 w-3"})}),"failed"===t.status&&t.error&&p.jsxs("span",{className:"text-red-600 dark:text-red-400 truncate max-w-[300px] font-mono",title:`${t.error.errorType}${t.error.code?` [${t.error.code}]`:""}: ${t.error.message}`,children:[t.error.code?`[${t.error.code}] `:"",t.error.message]})]})}function Gp({projectId:e,open:t,request:s,onSubmitted:i}){const r=a(),[n,o]=l.useState(()=>{var e;const t={};for(const i of s.fields)switch(i.type){case"bool":t[i.key]=!1;break;case"number":t[i.key]=0;break;case"enum":t[i.key]=(null==(e=i.variants)?void 0:e[0])??"";break;default:t[i.key]=""}return t}),[c,h]=l.useState(!1),d=(e,t)=>{o(s=>({...s,[e]:t}))};return p.jsx(Se,{open:t,onOpenChange:()=>{},children:p.jsxs(Ce,{className:"max-w-lg",onPointerDownOutside:e=>e.preventDefault(),onEscapeKeyDown:e=>e.preventDefault(),children:[p.jsx(ke,{children:p.jsx(Ne,{children:"工作轨需要输入"})}),p.jsx("div",{className:"space-y-3",children:s.fields.map(e=>p.jsxs("div",{className:"space-y-1.5",children:[p.jsxs(je,{className:"text-xs text-muted-foreground",children:[e.label," ",p.jsxs("span",{className:"opacity-60 font-mono",children:["(",e.key,")"]})]}),"text"===e.type&&p.jsx(V,{value:n[e.key]??"",placeholder:e.placeholder,onChange:t=>d(e.key,t.target.value)}),"number"===e.type&&p.jsx(V,{type:"number",value:String(n[e.key]??""),placeholder:e.placeholder,onChange:t=>{const s=Number(t.target.value);d(e.key,Number.isNaN(s)?"":s)}}),"bool"===e.type&&p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsx("input",{type:"checkbox",checked:!!n[e.key],onChange:t=>d(e.key,t.target.checked),className:"h-4 w-4"}),p.jsx("span",{className:"text-sm",children:n[e.key]?"是":"否"})]}),"enum"===e.type&&p.jsxs(Jt,{value:n[e.key]??"",onValueChange:t=>d(e.key,t),children:[p.jsx(Qt,{children:p.jsx(es,{placeholder:"选择..."})}),p.jsx(ts,{children:(e.variants??[]).map(e=>p.jsx(ss,{value:e,children:e},e))})]})]},e.key))}),p.jsxs("div",{className:"flex justify-between items-center gap-2 pt-2",children:[p.jsx(W,{onClick:async()=>{if(await r({description:"中止整个工作轨运行?正在等待的 LLM 调用会被取消。",confirmLabel:"中止",destructive:!0}))try{await Promise.reject(new Error("track run API not available in v3 M0")),f.success("已请求中止"),i()}catch(e){f.error(e instanceof Error?e.message:"中止失败")}},variant:"ghost",size:"sm",disabled:c,className:"text-muted-foreground hover:text-destructive",children:"中止运行"}),p.jsx(W,{onClick:async()=>{h(!0);try{await(s.requestId,Promise.reject(new Error("track run API not available in v3 M0"))),i()}catch(e){f.error(e instanceof Error?e.message:"提交失败")}finally{h(!1)}},disabled:c,size:"sm",children:c?"提交中…":"提交"})]})]})})}function Zp(e){const[t,s]=l.useState(null),[i,r]=l.useState(!1),[n,o]=l.useState(null),a=l.useRef(e);a.current=e;const c=l.useCallback(async()=>{const e=a.current;if(e)try{const t=await Promise.resolve({running:!1,state:null,pendingAskUser:null});if(e!==a.current)return;s(t.state),r(t.running),o(t.pendingAskUser)}catch{}},[]),h=l.useRef(5e3),d=!!t||i||!!n;return l.useEffect(()=>{if(!e)return;const t=e=>{const t=e.detail;if(t&&t.type)switch(t.type){case"track_status_change":{const e=t;if(s(e.state),r("running"===e.state.status||"paused"===e.state.status),"failed"===e.state.status&&e.state.error){const t=e.state.error.code?`[${e.state.error.code}] `:"";f.error(`工作轨失败: ${t}${e.state.error.message}`)}else"cancelled"===e.state.status&&f.info("工作轨已取消");break}case"track_ask_user":{const e=t;o({runId:e.runId,requestId:e.requestId,fields:e.fields});break}case"track_run_complete":t.ok||o(null);break}};return window.addEventListener("ccweb:track-msg",t),()=>window.removeEventListener("ccweb:track-msg",t)},[e]),l.useEffect(()=>{if(!e)return s(null),r(!1),void o(null);let t=null;const i=d?5e3:3e4;h.current=i;const n=()=>{c(),t=setInterval(()=>{c()},i)},a=()=>{null!==t&&(clearInterval(t),t=null)},l=()=>{document.hidden?a():t||n()};return document.hidden||n(),document.addEventListener("visibilitychange",l),()=>{a(),document.removeEventListener("visibilitychange",l)}},[e,c,d]),{state:t,running:i,pendingAskUser:n,refresh:c}}var Jp=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"].reduce((e,t)=>{const s=st(`Primitive.${t}`),i=l.forwardRef((e,i)=>{const{asChild:r,...n}=e,o=r?s:t;return"undefined"!=typeof window&&(window[Symbol.for("radix-ui")]=!0),p.jsx(o,{...n,ref:i})});return i.displayName=`Primitive.${t}`,{...e,[t]:i}},{}),Qp="horizontal",em=["horizontal","vertical"],tm=l.forwardRef((e,t)=>{const{decorative:s,orientation:i=Qp,...r}=e,n=function(e){return em.includes(e)}(i)?i:Qp,o=s?{role:"none"}:{"aria-orientation":"vertical"===n?n:void 0,role:"separator"};return p.jsx(Jp.div,{"data-orientation":n,...o,...r,ref:t})});tm.displayName="Separator";var sm=tm;const im=l.forwardRef(({className:e,orientation:t="horizontal",decorative:s=!0,...i},r)=>p.jsx(sm,{ref:r,decorative:s,orientation:t,className:m("shrink-0 bg-border","horizontal"===t?"h-[1px] w-full":"h-full w-[1px]",e),...i}));im.displayName=sm.displayName;const rm=[{tool:"claude",label:"Claude Code",supportsContinue:!0},{tool:"codex",label:"Codex",supportsContinue:!0},{tool:"gemini",label:"Gemini CLI",supportsContinue:!0},{tool:"opencode",label:"OpenCode",supportsContinue:!1},{tool:"qwen",label:"Qwen Code",supportsContinue:!1},{tool:"terminal",label:"Bare Shell",supportsContinue:!1}];function nm(e){var t;return(null==(t=rm.find(t=>t.tool===e))?void 0:t.label)??String(e??"")}function om(e){var t;return(null==(t=rm.find(t=>t.tool===e))?void 0:t.supportsContinue)??!1}function am({open:e,onOpenChange:t,currentCliTool:s,loading:i,onConfirm:r}){const{t:n}=it(),[o,a]=l.useState(null),[c,h]=l.useState(!1),[d,u]=l.useState(null);l.useEffect(()=>{e&&(a(null),h(!1),u(null))},[e]),l.useEffect(()=>{o&&!om(o)&&h(!1)},[o]);const f=!!o&&om(o);return p.jsx(Se,{open:e,onOpenChange:t,children:p.jsxs(Ce,{className:"max-w-lg",children:[p.jsxs(ke,{children:[p.jsx(Ne,{children:n("switch_cli.title")}),p.jsx(Ee,{children:n("switch_cli.description",{current:nm(s)})})]}),p.jsxs("div",{className:"space-y-4",children:[p.jsxs("div",{className:"space-y-2",children:[p.jsx("div",{className:"text-sm font-medium",children:n("switch_cli.target_label")}),p.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 gap-2",children:rm.map(e=>{const t=e.tool===s,r=e.tool===o;return p.jsxs("button",{type:"button",disabled:t||i,onClick:()=>a(e.tool),className:m("text-left px-3 py-2 rounded-md border text-sm transition-colors",r?"border-primary bg-accent":"border-border hover:bg-accent/50",t&&"opacity-50 cursor-not-allowed"),children:[p.jsx("div",{className:"font-medium",children:e.label}),p.jsx("div",{className:"text-xs text-muted-foreground",children:t?n("switch_cli.tag_current"):e.supportsContinue?n("switch_cli.tag_supports_continue"):n("switch_cli.tag_no_continue")})]},e.tool)})})]}),p.jsxs("div",{className:"space-y-2",children:[p.jsx("div",{className:"text-sm font-medium",children:n("switch_cli.mode_label")}),p.jsxs("div",{className:"grid grid-cols-1 gap-2",children:[p.jsxs("button",{type:"button",disabled:i,onClick:()=>h(!1),className:m("text-left px-3 py-2 rounded-md border text-sm transition-colors",c?"border-border hover:bg-accent/50":"border-primary bg-accent"),children:[p.jsx("div",{className:"font-medium",children:n("switch_cli.mode_fresh")}),p.jsx("div",{className:"text-xs text-muted-foreground",children:n("switch_cli.mode_fresh_hint")})]}),p.jsxs("button",{type:"button",disabled:i||!o||!f,onClick:()=>h(!0),title:o&&!f?n("switch_cli.mode_continue_unsupported",{tool:nm(o)}):void 0,className:m("text-left px-3 py-2 rounded-md border text-sm transition-colors",c?"border-primary bg-accent":"border-border hover:bg-accent/50",(!o||!f)&&"opacity-50 cursor-not-allowed"),children:[p.jsx("div",{className:"font-medium",children:n("switch_cli.mode_continue")}),p.jsx("div",{className:"text-xs text-muted-foreground",children:o&&!f?n("switch_cli.mode_continue_unsupported",{tool:nm(o)}):n("switch_cli.mode_continue_hint")})]})]})]}),d&&p.jsx("div",{className:"text-xs text-red-500 break-words",children:d})]}),p.jsxs(Me,{children:[p.jsx(W,{variant:"outline",onClick:()=>t(!1),disabled:i,children:n("switch_cli.cancel")}),p.jsx(W,{onClick:()=>{(async()=>{if(o){u(null);try{await r(o,c)}catch(e){u(e instanceof Error?e.message:String(e))}}})()},disabled:!o||i,children:n(i?"switch_cli.confirming":"switch_cli.confirm")})]})]})})}function lm({status:e}){return p.jsxs("span",{className:m("inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full border",{running:"bg-green-500/10 text-green-600 border-green-500/20",stopped:"bg-muted text-muted-foreground border-border",restarting:"bg-yellow-500/10 text-yellow-600 border-yellow-500/20"}[e]),children:[p.jsx("span",{className:m("w-1.5 h-1.5 rounded-full",{"bg-green-500":"running"===e,"bg-muted-foreground":"stopped"===e,"bg-yellow-400 animate-pulse":"restarting"===e})}),e.charAt(0).toUpperCase()+e.slice(1)]})}function cm({project:e,projectId:t,showFileTree:s,showShortcuts:i,showChatOverlay:r,onToggleFileTree:n,onToggleShortcuts:o,onToggleChatOverlay:a,onProjectUpdate:c}){const{t:h}=it(),d=rt(),[u,g]=l.useState(!1),[_,v]=l.useState(!1),[w,S]=l.useState(0),[C,k]=l.useState(!1),[N,E]=l.useState(!1),[j,M]=l.useState(!1),[D,R]=l.useState(!1),[L,T]=l.useState(!1),[I,B]=l.useState(!1),O=Zp(e.id);nt({onStart:e=>{e.projectId===t&&S(0)},onProgress:e=>{e.projectId===t&&S(e.filesTransferred)},onDone:e=>{e.projectId===t&&S(0)}}),l.useEffect(()=>{const e=()=>E(!!document.fullscreenElement);return document.addEventListener("fullscreenchange",e),()=>document.removeEventListener("fullscreenchange",e)},[]);const A=ot(e=>e.updateProject);return p.jsx("header",{className:"border-b border-border flex-shrink-0 bg-muted/50",children:p.jsxs("div",{className:"px-3 h-12 flex items-center gap-2",children:[p.jsx(W,{variant:"ghost",size:"icon",className:"h-7 w-7",onClick:()=>d("/"),children:p.jsx(at,{className:"h-4 w-4"})}),p.jsx(im,{orientation:"vertical",className:"h-5 mx-0.5"}),p.jsx(W,{variant:"ghost",size:"icon",className:m("h-7 w-7",s&&"bg-accent"),onClick:n,title:h("project_header.toggle_file_tree"),children:p.jsx(ks,{className:"h-4 w-4"})}),p.jsx(W,{variant:"ghost",size:"icon",className:m("h-7 w-7",i&&"bg-accent"),onClick:o,title:h("project_header.toggle_right_panel"),children:p.jsx(Ns,{className:"h-4 w-4"})}),"terminal"!==e.cliTool&&p.jsx(W,{variant:"ghost",size:"icon",className:m("h-7 w-7",r&&"bg-accent"),onClick:a,title:h("project_header.toggle_chat_overlay"),children:p.jsx(ws,{className:"h-4 w-4"})}),"terminal"!==e.cliTool&&p.jsxs(p.Fragment,{children:[p.jsx(W,{variant:"ghost",size:"icon",className:"h-7 w-7",onClick:()=>T(!0),title:"任务流(旧)",children:p.jsx(Ls,{className:"h-4 w-4"})}),p.jsx(W,{variant:"ghost",size:"icon",className:"h-7 w-7",onClick:()=>B(!0),title:"工作轨",children:p.jsx(Ps,{className:"h-4 w-4"})})]}),p.jsxs("div",{className:"flex-1 min-w-0 flex items-center gap-2 ml-2",children:[p.jsx("h1",{className:"font-semibold text-foreground truncate text-sm",children:e.name}),p.jsx(lm,{status:e.status}),p.jsx(lt,{variant:"outline",className:"text-xs",children:"unlimited"===e.permissionMode?"Unlimited":"Limited"}),O.state&&p.jsx(Xp,{projectId:e.id,state:O.state,running:O.running,onRefresh:O.refresh}),p.jsxs("button",{type:"button",onClick:()=>M(!0),disabled:D,title:`${h("project_header.switch_cli_title")} (${nm(e.cliTool)})`,className:"inline-flex items-center gap-1 text-xs px-2 py-0.5 rounded-full border border-border bg-background hover:bg-accent transition-colors disabled:opacity-50 flex-shrink-0",children:[p.jsx(P,{className:"h-3 w-3"}),p.jsx("span",{className:"font-medium hidden sm:inline",children:nm(e.cliTool)})]}),p.jsx("span",{className:"text-xs text-muted-foreground font-mono truncate hidden lg:block",children:e.folderPath})]}),p.jsx(ct,{}),p.jsx(ht,{}),p.jsx(W,{variant:"ghost",size:"icon",className:"h-7 w-7",onClick:()=>{document.fullscreenElement?document.exitFullscreen():document.documentElement.requestFullscreen()},title:h(N?"project_header.fullscreen_exit":"project_header.fullscreen_enter"),children:N?p.jsx(x,{className:"h-3.5 w-3.5"}):p.jsx(y,{className:"h-3.5 w-3.5"})}),p.jsx(im,{orientation:"vertical",className:"h-5 mx-0.5"}),_?p.jsxs(W,{variant:"outline",size:"sm",className:"flex-shrink-0",onClick:()=>{(async()=>{if(_&&!C){k(!0);try{(await ut(t)).cancelled?f.info(h("project_header.sync_cancelled")):f.error(h("project_header.sync_cancel_failed"))}catch(e){f.error(e instanceof Error?e.message:h("project_header.sync_cancel_failed")),k(!1)}}})()},disabled:C,title:h("project_header.sync_cancel_title"),children:[C?p.jsx(tt,{className:"h-3.5 w-3.5 mr-1.5 animate-spin"}):p.jsx(b,{className:"h-3.5 w-3.5 mr-1.5"}),p.jsx("span",{className:"tabular-nums",children:w>0?h("project_header.sync_progress_label",{files:w}):h("project_header.sync_progress_label_empty")})]}):p.jsxs(W,{variant:"outline",size:"sm",className:"flex-shrink-0",onClick:()=>{(async()=>{if(!_){v(!0),S(0);try{const e=await ft(t);e.skipped?f.info(h("project_header.sync_skipped")):e.ok?f.success(h("project_header.sync_success",{files:e.filesTransferred,seconds:Math.round(e.durationMs/1e3)})):"cancelled"===e.reason||f.error(e.reason?h("project_header.sync_failed_with_reason",{reason:e.reason}):h("project_header.sync_failed"))}catch(e){f.error(e instanceof Error?e.message:h("project_header.sync_failed"))}finally{v(!1),S(0),k(!1)}}})()},title:h("project_header.sync_button_title"),children:[p.jsx(dt,{className:"h-3.5 w-3.5 mr-1.5"}),h("project_header.sync")]}),p.jsx(am,{open:j,onOpenChange:e=>{D||M(e)},currentCliTool:e.cliTool,loading:D,onConfirm:async(t,s)=>{R(!0);try{const i=await pt(e.id,t,s);c(i),A(i),M(!1),f.success(h("switch_cli.switched_toast",{tool:nm(t)}))}catch(i){const e=i instanceof Error?i.message:String(i);throw f.error(h("switch_cli.switch_failed",{reason:e})),i}finally{R(!1)}}}),p.jsx(Rn,{projectId:t,open:L,onOpenChange:T}),p.jsx(Yp,{projectId:e.id,open:I,onOpenChange:B}),O.pendingAskUser&&p.jsx(Gp,{projectId:e.id,open:!!O.pendingAskUser,request:O.pendingAskUser,onSubmitted:()=>O.refresh()}),"stopped"===e.status&&p.jsxs(W,{variant:"outline",size:"sm",className:"flex-shrink-0",onClick:()=>{(async()=>{g(!0);try{c(await mt(e.id))}catch(t){console.error(t)}finally{g(!1)}})()},disabled:u,children:[p.jsx(js,{className:"h-3.5 w-3.5 mr-1.5"}),"Start"]})]})})}
15
+ /**
16
+ * Copyright (c) 2014-2024 The xterm.js authors. All rights reserved.
17
+ * @license MIT
18
+ *
19
+ * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
20
+ * @license MIT
21
+ *
22
+ * Originally forked from (with the author's permission):
23
+ * Fabrice Bellard's javascript vt100 for jslinux:
24
+ * http://bellard.org/jslinux/
25
+ * Copyright (c) 2011 Fabrice Bellard
26
+ */var hm=Object.defineProperty,dm=Object.getOwnPropertyDescriptor,um=(e,t,s,i)=>{for(var r,n=i>1?void 0:i?dm(t,s):t,o=e.length-1;o>=0;o--)(r=e[o])&&(n=(i?r(t,s,n):r(n))||n);return i&&n&&hm(t,s,n),n},fm=(e,t)=>(s,i)=>t(s,i,e),pm="Terminal input",mm=()=>pm,gm=e=>pm=e,_m="Too much output to announce, navigate to rows manually to read",vm=()=>_m,xm=e=>_m=e;function ym(e,t,s,i){e=function(e,t){return t?"[200~"+e+"[201~":e}(e=function(e){return e.replace(/\r?\n/g,"\r")}(e),s.decPrivateModes.bracketedPasteMode&&!0!==i.rawOptions.ignoreBracketedPasteMode),s.triggerDataEvent(e,!0),t.value=""}function bm(e,t,s){let i=s.getBoundingClientRect(),r=e.clientX-i.left-10,n=e.clientY-i.top-10;t.style.width="20px",t.style.height="20px",t.style.left=`${r}px`,t.style.top=`${n}px`,t.style.zIndex="1000",t.focus()}function wm(e,t,s,i,r){bm(e,t,s),r&&i.rightClickSelect(e),t.value=i.selectionText,t.select()}function Sm(e){return e>65535?(e-=65536,String.fromCharCode(55296+(e>>10))+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)}function Cm(e,t=0,s=e.length){let i="";for(let r=t;r<s;++r){let t=e[r];t>65535?(t-=65536,i+=String.fromCharCode(55296+(t>>10))+String.fromCharCode(t%1024+56320)):i+=String.fromCharCode(t)}return i}var km=class{constructor(){this._interim=0}clear(){this._interim=0}decode(e,t){let s=e.length;if(!s)return 0;let i=0,r=0;if(this._interim){let s=e.charCodeAt(r++);56320<=s&&s<=57343?t[i++]=1024*(this._interim-55296)+s-56320+65536:(t[i++]=this._interim,t[i++]=s),this._interim=0}for(let n=r;n<s;++n){let r=e.charCodeAt(n);if(55296<=r&&r<=56319){if(++n>=s)return this._interim=r,i;let o=e.charCodeAt(n);56320<=o&&o<=57343?t[i++]=1024*(r-55296)+o-56320+65536:(t[i++]=r,t[i++]=o);continue}65279!==r&&(t[i++]=r)}return i}},Nm=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(e,t){let s=e.length;if(!s)return 0;let i,r,n,o,a=0,l=0,c=0;if(this.interim[0]){let i=!1,r=this.interim[0];r&=192==(224&r)?31:224==(240&r)?15:7;let n,o=0;for(;(n=63&this.interim[++o])&&o<4;)r<<=6,r|=n;let l=192==(224&this.interim[0])?2:224==(240&this.interim[0])?3:4,h=l-o;for(;c<h;){if(c>=s)return 0;if(n=e[c++],128!=(192&n)){c--,i=!0;break}this.interim[o++]=n,r<<=6,r|=63&n}i||(2===l?r<128?c--:t[a++]=r:3===l?r<2048||r>=55296&&r<=57343||65279===r||(t[a++]=r):r<65536||r>1114111||(t[a++]=r)),this.interim.fill(0)}let h=s-4,d=c;for(;d<s;){for(;!(!(d<h)||128&(i=e[d])||128&(r=e[d+1])||128&(n=e[d+2])||128&(o=e[d+3]));)t[a++]=i,t[a++]=r,t[a++]=n,t[a++]=o,d+=4;if(i=e[d++],i<128)t[a++]=i;else if(192==(224&i)){if(d>=s)return this.interim[0]=i,a;if(r=e[d++],128!=(192&r)){d--;continue}if(l=(31&i)<<6|63&r,l<128){d--;continue}t[a++]=l}else if(224==(240&i)){if(d>=s)return this.interim[0]=i,a;if(r=e[d++],128!=(192&r)){d--;continue}if(d>=s)return this.interim[0]=i,this.interim[1]=r,a;if(n=e[d++],128!=(192&n)){d--;continue}if(l=(15&i)<<12|(63&r)<<6|63&n,l<2048||l>=55296&&l<=57343||65279===l)continue;t[a++]=l}else if(240==(248&i)){if(d>=s)return this.interim[0]=i,a;if(r=e[d++],128!=(192&r)){d--;continue}if(d>=s)return this.interim[0]=i,this.interim[1]=r,a;if(n=e[d++],128!=(192&n)){d--;continue}if(d>=s)return this.interim[0]=i,this.interim[1]=r,this.interim[2]=n,a;if(o=e[d++],128!=(192&o)){d--;continue}if(l=(7&i)<<18|(63&r)<<12|(63&n)<<6|63&o,l<65536||l>1114111)continue;t[a++]=l}}return a}},Em=" ",jm=class e{constructor(){this.fg=0,this.bg=0,this.extended=new Mm}static toColorRGB(e){return[e>>>16&255,e>>>8&255,255&e]}static fromColorRGB(e){return(255&e[0])<<16|(255&e[1])<<8|255&e[2]}clone(){let t=new e;return t.fg=this.fg,t.bg=this.bg,t.extended=this.extended.clone(),t}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&0!==this.extended.underlineStyle?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return!(50331648&~this.fg)}isBgRGB(){return!(50331648&~this.bg)}isFgPalette(){return 16777216==(50331648&this.fg)||33554432==(50331648&this.fg)}isBgPalette(){return 16777216==(50331648&this.bg)||33554432==(50331648&this.bg)}isFgDefault(){return!(50331648&this.fg)}isBgDefault(){return!(50331648&this.bg)}isAttributeDefault(){return 0===this.fg&&0===this.bg}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?!(50331648&~this.extended.underlineColor):this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?16777216==(50331648&this.extended.underlineColor)||33554432==(50331648&this.extended.underlineColor):this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?!(50331648&this.extended.underlineColor):this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}},Mm=class e{constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(e){this._ext&=-67108864,this._ext|=67108863&e}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){let e=(3758096384&this._ext)>>29;return e<0?4294967288^e:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}clone(){return new e(this._ext,this._urlId)}isEmpty(){return 0===this.underlineStyle&&0===this._urlId}},Dm=class e extends jm{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new Mm,this.combinedData=""}static fromCharData(t){let s=new e;return s.setFromCharData(t),s}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?Sm(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(e){this.fg=e[0],this.bg=0;let t=!1;if(e[1].length>2)t=!0;else if(2===e[1].length){let s=e[1].charCodeAt(0);if(55296<=s&&s<=56319){let i=e[1].charCodeAt(1);56320<=i&&i<=57343?this.content=1024*(s-55296)+i-56320+65536|e[2]<<22:t=!0}else t=!0}else this.content=e[1].charCodeAt(0)|e[2]<<22;t&&(this.combinedData=e[1],this.content=2097152|e[2]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}},Rm="di$target",Pm="di$dependencies",Lm=new Map;function Tm(e){if(Lm.has(e))return Lm.get(e);let t=function(e,s,i){if(3!==arguments.length)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");!function(e,t,s){t[Rm]===t?t[Pm].push({id:e,index:s}):(t[Pm]=[{id:e,index:s}],t[Rm]=t)}(t,e,i)};return t._id=e,Lm.set(e,t),t}var Im=Tm("BufferService"),Bm=Tm("CoreMouseService"),Om=Tm("CoreService"),Am=Tm("CharsetService"),zm=Tm("InstantiationService"),$m=Tm("LogService"),Hm=Tm("OptionsService"),Wm=Tm("OscLinkService"),Fm=Tm("UnicodeService"),Km=Tm("DecorationService"),Vm=class{constructor(e,t,s){this._bufferService=e,this._optionsService=t,this._oscLinkService=s}provideLinks(e,t){var s;let i=this._bufferService.buffer.lines.get(e-1);if(!i)return void t(void 0);let r=[],n=this._optionsService.rawOptions.linkHandler,o=new Dm,a=i.getTrimmedLength(),l=-1,c=-1,h=!1;for(let d=0;d<a;d++)if(-1!==c||i.hasContent(d)){if(i.loadCell(d,o),o.hasExtendedAttrs()&&o.extended.urlId){if(-1===c){c=d,l=o.extended.urlId;continue}h=o.extended.urlId!==l}else-1!==c&&(h=!0);if(h||-1!==c&&d===a-1){let t=null==(s=this._oscLinkService.getLinkData(l))?void 0:s.uri;if(t){let s={start:{x:c+1,y:e},end:{x:d+(h||d!==a-1?0:1),y:e}},i=!1;if(!(null==n?void 0:n.allowNonHttpProtocols))try{let e=new URL(t);["http:","https:"].includes(e.protocol)||(i=!0)}catch{i=!0}i||r.push({text:t,range:s,activate:(e,t)=>n?n.activate(e,t,s):Um(e,t),hover:(e,t)=>{var i;return null==(i=null==n?void 0:n.hover)?void 0:i.call(n,e,t,s)},leave:(e,t)=>{var i;return null==(i=null==n?void 0:n.leave)?void 0:i.call(n,e,t,s)}})}h=!1,o.hasExtendedAttrs()&&o.extended.urlId?(c=d,l=o.extended.urlId):(c=-1,l=-1)}}t(r)}};function Um(e,t){if(confirm(`Do you want to navigate to ${t}?\n\nWARNING: This link could potentially be dangerous`)){let e=window.open();if(e){try{e.opener=null}catch{}e.location.href=t}else console.warn("Opening link blocked as opener could not be cleared")}}Vm=um([fm(0,Im),fm(1,Hm),fm(2,Wm)],Vm);var qm=Tm("CharSizeService"),Ym=Tm("CoreBrowserService"),Xm=Tm("MouseService"),Gm=Tm("RenderService"),Zm=Tm("SelectionService"),Jm=Tm("CharacterJoinerService"),Qm=Tm("ThemeService"),eg=Tm("LinkProviderService"),tg=new class{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(e){setTimeout(()=>{throw e.stack?lg.isErrorNoTelemetry(e)?new lg(e.message+"\n\n"+e.stack):new Error(e.message+"\n\n"+e.stack):e},0)}}addListener(e){return this.listeners.push(e),()=>{this._removeListener(e)}}emit(e){this.listeners.forEach(t=>{t(e)})}_removeListener(e){this.listeners.splice(this.listeners.indexOf(e),1)}setUnexpectedErrorHandler(e){this.unexpectedErrorHandler=e}getUnexpectedErrorHandler(){return this.unexpectedErrorHandler}onUnexpectedError(e){this.unexpectedErrorHandler(e),this.emit(e)}onUnexpectedExternalError(e){this.unexpectedErrorHandler(e)}};function sg(e){(function(e){return e instanceof rg||e instanceof Error&&e.name===ig&&e.message===ig})(e)||tg.onUnexpectedError(e)}var ig="Canceled";var rg=class extends Error{constructor(){super(ig),this.name=this.message}};var ng,og,ag,lg=class e extends Error{constructor(e){super(e),this.name="CodeExpectedError"}static fromError(t){if(t instanceof e)return t;let s=new e;return s.message=t.message,s.stack=t.stack,s}static isErrorNoTelemetry(e){return"CodeExpectedError"===e.name}},cg=class e extends Error{constructor(t){super(t||"An unexpected bug occurred."),Object.setPrototypeOf(this,e.prototype)}};function hg(e,t=0){return e[e.length-(1+t)]}function dg(e,t){let s,i=this,r=!1;return function(){return r||(r=!0,t||(s=e.apply(i,arguments))),s}}function ug(e){if(ag.is(e)){let t=[];for(let s of e)if(s)try{s.dispose()}catch(t_){t.push(t_)}if(1===t.length)throw t[0];if(t.length>1)throw new AggregateError(t,"Encountered errors while disposing of store");return Array.isArray(e)?[]:e}if(e)return e.dispose(),e}function fg(e){return{dispose:dg(()=>{e()})}}(og=ng||(ng={})).isLessThan=function(e){return e<0},og.isLessThanOrEqual=function(e){return e<=0},og.isGreaterThan=function(e){return e>0},og.isNeitherLessOrGreaterThan=function(e){return 0===e},og.greaterThan=1,og.lessThan=-1,og.neitherLessOrGreaterThan=0,(e=>{function t(e){return e&&"object"==typeof e&&"function"==typeof e[Symbol.iterator]}e.is=t;let s=Object.freeze([]);function*i(e){yield e}e.empty=function(){return s},e.single=i,e.wrap=function(e){return t(e)?e:i(e)},e.from=function(e){return e||s},e.reverse=function*(e){for(let t=e.length-1;t>=0;t--)yield e[t]},e.isEmpty=function(e){return!e||!0===e[Symbol.iterator]().next().done},e.first=function(e){return e[Symbol.iterator]().next().value},e.some=function(e,t){let s=0;for(let i of e)if(t(i,s++))return!0;return!1},e.find=function(e,t){for(let s of e)if(t(s))return s},e.filter=function*(e,t){for(let s of e)t(s)&&(yield s)},e.map=function*(e,t){let s=0;for(let i of e)yield t(i,s++)},e.flatMap=function*(e,t){let s=0;for(let i of e)yield*t(i,s++)},e.concat=function*(...e){for(let t of e)yield*t},e.reduce=function(e,t,s){let i=s;for(let r of e)i=t(i,r);return i},e.slice=function*(e,t,s=e.length){for(t<0&&(t+=e.length),s<0?s+=e.length:s>e.length&&(s=e.length);t<s;t++)yield e[t]},e.consume=function(t,s=Number.POSITIVE_INFINITY){let i=[];if(0===s)return[i,t];let r=t[Symbol.iterator]();for(let n=0;n<s;n++){let t=r.next();if(t.done)return[i,e.empty()];i.push(t.value)}return[i,{[Symbol.iterator]:()=>r}]},e.asyncToArray=async function(e){let t=[];for await(let s of e)t.push(s);return Promise.resolve(t)}})(ag||(ag={}));var pg=class e{constructor(){this._toDispose=new Set,this._isDisposed=!1}dispose(){this._isDisposed||(this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(0!==this._toDispose.size)try{ug(this._toDispose)}finally{this._toDispose.clear()}}add(t){if(!t)return t;if(t===this)throw new Error("Cannot register a disposable on itself!");return this._isDisposed?e.DISABLE_DISPOSED_WARNING||console.warn(new Error("Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!").stack):this._toDispose.add(t),t}delete(e){if(e){if(e===this)throw new Error("Cannot dispose a disposable on itself!");this._toDispose.delete(e),e.dispose()}}deleteAndLeak(e){e&&this._toDispose.has(e)&&this._toDispose.delete(e)}};pg.DISABLE_DISPOSED_WARNING=!1;var mg=pg,gg=class{constructor(){this._store=new mg,this._store}dispose(){this._store.dispose()}_register(e){if(e===this)throw new Error("Cannot register a disposable on itself!");return this._store.add(e)}};gg.None=Object.freeze({dispose(){}});var _g=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(e){var t;this._isDisposed||e===this._value||(null==(t=this._value)||t.dispose(),this._value=e)}clear(){this.value=void 0}dispose(){var e;this._isDisposed=!0,null==(e=this._value)||e.dispose(),this._value=void 0}clearAndLeak(){let e=this._value;return this._value=void 0,e}},vg="object"==typeof window?window:globalThis,xg=class e{constructor(t){this.element=t,this.next=e.Undefined,this.prev=e.Undefined}};xg.Undefined=new xg(void 0);var yg,bg=xg,wg=class{constructor(){this._first=bg.Undefined,this._last=bg.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===bg.Undefined}clear(){let e=this._first;for(;e!==bg.Undefined;){let t=e.next;e.prev=bg.Undefined,e.next=bg.Undefined,e=t}this._first=bg.Undefined,this._last=bg.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,t){let s=new bg(e);if(this._first===bg.Undefined)this._first=s,this._last=s;else if(t){let e=this._last;this._last=s,s.prev=e,e.next=s}else{let e=this._first;this._first=s,s.next=e,e.prev=s}this._size+=1;let i=!1;return()=>{i||(i=!0,this._remove(s))}}shift(){if(this._first!==bg.Undefined){let e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==bg.Undefined){let e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==bg.Undefined&&e.next!==bg.Undefined){let t=e.prev;t.next=e.next,e.next.prev=t}else e.prev===bg.Undefined&&e.next===bg.Undefined?(this._first=bg.Undefined,this._last=bg.Undefined):e.next===bg.Undefined?(this._last=this._last.prev,this._last.next=bg.Undefined):e.prev===bg.Undefined&&(this._first=this._first.next,this._first.prev=bg.Undefined);this._size-=1}*[Symbol.iterator](){let e=this._first;for(;e!==bg.Undefined;)yield e.element,e=e.next}},Sg=globalThis.performance&&"function"==typeof globalThis.performance.now,Cg=class e{static create(t){return new e(t)}constructor(e){this._now=Sg&&!1===e?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}reset(){this._startTime=this._now(),this._stopTime=-1}elapsed(){return-1!==this._stopTime?this._stopTime-this._startTime:this._now()-this._startTime}};(e=>{function t(e){return(t,s=null,i)=>{let r,n=!1;return r=e(e=>{if(!n)return r?r.dispose():n=!0,t.call(s,e)},null,i),n&&r.dispose(),r}}function s(e,t,s){return r((s,i=null,r)=>e(e=>s.call(i,t(e)),null,r),s)}function i(e,t,s){return r((s,i=null,r)=>e(e=>t(e)&&s.call(i,e),null,r),s)}function r(e,t){let s,i=new Tg({onWillAddFirstListener(){s=e(i.fire,i)},onDidRemoveLastListener(){null==s||s.dispose()}});return null==t||t.add(i),i.event}function n(e,t,s=100,i=!1,r=!1,n,o){let a,l,c,h,d=0,u=new Tg({leakWarningThreshold:n,onWillAddFirstListener(){a=e(e=>{d++,l=t(l,e),i&&!c&&(u.fire(l),l=void 0),h=()=>{let e=l;l=void 0,c=void 0,(!i||d>1)&&u.fire(e),d=0},"number"==typeof s?(clearTimeout(c),c=setTimeout(h,s)):void 0===c&&(c=0,queueMicrotask(h))})},onWillRemoveListener(){r&&d>0&&(null==h||h())},onDidRemoveLastListener(){h=void 0,a.dispose()}});return null==o||o.add(u),u.event}e.None=()=>gg.None,e.defer=function(e,t){return n(e,()=>{},0,void 0,!0,void 0,t)},e.once=t,e.map=s,e.forEach=function(e,t,s){return r((s,i=null,r)=>e(e=>{t(e),s.call(i,e)},null,r),s)},e.filter=i,e.signal=function(e){return e},e.any=function(...e){return(t,s=null,i)=>function(e,t){return t instanceof Array?t.push(e):t&&t.add(e),e}(function(...e){return fg(()=>ug(e))}(...e.map(e=>e(e=>t.call(s,e)))),i)},e.reduce=function(e,t,i,r){let n=i;return s(e,e=>(n=t(n,e),n),r)},e.debounce=n,e.accumulate=function(t,s=0,i){return e.debounce(t,(e,t)=>e?(e.push(t),e):[t],s,void 0,!0,void 0,i)},e.latch=function(e,t=(e,t)=>e===t,s){let r,n=!0;return i(e,e=>{let s=n||!t(e,r);return n=!1,r=e,s},s)},e.split=function(t,s,i){return[e.filter(t,s,i),e.filter(t,e=>!s(e),i)]},e.buffer=function(e,t=!1,s=[],i){let r=s.slice(),n=e(e=>{r?r.push(e):a.fire(e)});i&&i.add(n);let o=()=>{null==r||r.forEach(e=>a.fire(e)),r=null},a=new Tg({onWillAddFirstListener(){n||(n=e(e=>a.fire(e)),i&&i.add(n))},onDidAddFirstListener(){r&&(t?setTimeout(o):o())},onDidRemoveLastListener(){n&&n.dispose(),n=null}});return i&&i.add(a),a.event},e.chain=function(e,t){return(s,i,r)=>{let n=t(new a);return e(function(e){let t=n.evaluate(e);t!==o&&s.call(i,t)},void 0,r)}};let o=Symbol("HaltChainable");class a{constructor(){this.steps=[]}map(e){return this.steps.push(e),this}forEach(e){return this.steps.push(t=>(e(t),t)),this}filter(e){return this.steps.push(t=>e(t)?t:o),this}reduce(e,t){let s=t;return this.steps.push(t=>(s=e(s,t),s)),this}latch(e=(e,t)=>e===t){let t,s=!0;return this.steps.push(i=>{let r=s||!e(i,t);return s=!1,t=i,r?i:o}),this}evaluate(e){for(let t of this.steps)if((e=t(e))===o)break;return e}}e.fromNodeEventEmitter=function(e,t,s=e=>e){let i=(...e)=>r.fire(s(...e)),r=new Tg({onWillAddFirstListener:()=>e.on(t,i),onDidRemoveLastListener:()=>e.removeListener(t,i)});return r.event},e.fromDOMEventEmitter=function(e,t,s=e=>e){let i=(...e)=>r.fire(s(...e)),r=new Tg({onWillAddFirstListener:()=>e.addEventListener(t,i),onDidRemoveLastListener:()=>e.removeEventListener(t,i)});return r.event},e.toPromise=function(e){return new Promise(s=>t(e)(s))},e.fromPromise=function(e){let t=new Tg;return e.then(e=>{t.fire(e)},()=>{t.fire(void 0)}).finally(()=>{t.dispose()}),t.event},e.forward=function(e,t){return e(e=>t.fire(e))},e.runAndSubscribe=function(e,t,s){return t(s),e(e=>t(e))};class l{constructor(e,t){this._observable=e,this._counter=0,this._hasChanged=!1;let s={onWillAddFirstListener:()=>{e.addObserver(this)},onDidRemoveLastListener:()=>{e.removeObserver(this)}};this.emitter=new Tg(s),t&&t.add(this.emitter)}beginUpdate(e){this._counter++}handlePossibleChange(e){}handleChange(e,t){this._hasChanged=!0}endUpdate(e){this._counter--,0===this._counter&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}e.fromObservable=function(e,t){return new l(e,t).emitter.event},e.fromObservableLight=function(e){return(t,s,i)=>{let r=0,n=!1,o={beginUpdate(){r++},endUpdate(){r--,0===r&&(e.reportChanges(),n&&(n=!1,t.call(s)))},handlePossibleChange(){},handleChange(){n=!0}};e.addObserver(o),e.reportChanges();let a={dispose(){e.removeObserver(o)}};return i instanceof mg?i.add(a):Array.isArray(i)&&i.push(a),a}}})(yg||(yg={}));var kg=class e{constructor(t){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${t}_${e._idPool++}`,e.all.add(this)}start(e){this._stopWatch=new Cg,this.listenerCount=e}stop(){if(this._stopWatch){let e=this._stopWatch.elapsed();this.durations.push(e),this.elapsedOverall+=e,this.invocationCount+=1,this._stopWatch=void 0}}};kg.all=new Set,kg._idPool=0;var Ng=kg,Eg=class e{constructor(t,s,i=(e._idPool++).toString(16).padStart(3,"0")){this._errorHandler=t,this.threshold=s,this.name=i,this._warnCountdown=0}dispose(){var e;null==(e=this._stacks)||e.clear()}check(e,t){let s=this.threshold;if(s<=0||t<s)return;this._stacks||(this._stacks=new Map);let i=this._stacks.get(e.value)||0;if(this._stacks.set(e.value,i+1),this._warnCountdown-=1,this._warnCountdown<=0){this._warnCountdown=.5*s;let[e,i]=this.getMostFrequentStack(),r=`[${this.name}] potential listener LEAK detected, having ${t} listeners already. MOST frequent listener (${i}):`;console.warn(r),console.warn(e);let n=new Dg(r,e);this._errorHandler(n)}return()=>{let t=this._stacks.get(e.value)||0;this._stacks.set(e.value,t-1)}}getMostFrequentStack(){if(!this._stacks)return;let e,t=0;for(let[s,i]of this._stacks)(!e||t<i)&&(e=[s,i],t=i);return e}};Eg._idPool=1;var jg=Eg,Mg=class e{constructor(e){this.value=e}static create(){let t=new Error;return new e(t.stack??"")}print(){console.warn(this.value.split("\n").slice(2).join("\n"))}},Dg=class extends Error{constructor(e,t){super(e),this.name="ListenerLeakError",this.stack=t}},Rg=class extends Error{constructor(e,t){super(e),this.name="ListenerRefusalError",this.stack=t}},Pg=0,Lg=class{constructor(e){this.value=e,this.id=Pg++}},Tg=class{constructor(e){var t,s,i,r;this._size=0,this._options=e,this._leakageMon=(null==(t=this._options)?void 0:t.leakWarningThreshold)?new jg((null==e?void 0:e.onListenerError)??sg,(null==(s=this._options)?void 0:s.leakWarningThreshold)??-1):void 0,this._perfMon=(null==(i=this._options)?void 0:i._profName)?new Ng(this._options._profName):void 0,this._deliveryQueue=null==(r=this._options)?void 0:r.deliveryQueue}dispose(){var e,t,s,i;this._disposed||(this._disposed=!0,(null==(e=this._deliveryQueue)?void 0:e.current)===this&&this._deliveryQueue.reset(),this._listeners&&(this._listeners=void 0,this._size=0),null==(s=null==(t=this._options)?void 0:t.onDidRemoveLastListener)||s.call(t),null==(i=this._leakageMon)||i.dispose())}get event(){return this._event??(this._event=(e,t,s)=>{var i,r,n,o,a;if(this._leakageMon&&this._size>this._leakageMon.threshold**2){let e=`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;console.warn(e);let t=this._leakageMon.getMostFrequentStack()??["UNKNOWN stack",-1],s=new Rg(`${e}. HINT: Stack shows most frequent listener (${t[1]}-times)`,t[0]);return((null==(i=this._options)?void 0:i.onListenerError)||sg)(s),gg.None}if(this._disposed)return gg.None;t&&(e=e.bind(t));let l,c=new Lg(e);this._leakageMon&&this._size>=Math.ceil(.2*this._leakageMon.threshold)&&(c.stack=Mg.create(),l=this._leakageMon.check(c.stack,this._size+1)),this._listeners?this._listeners instanceof Lg?(this._deliveryQueue??(this._deliveryQueue=new Ig),this._listeners=[this._listeners,c]):this._listeners.push(c):(null==(n=null==(r=this._options)?void 0:r.onWillAddFirstListener)||n.call(r,this),this._listeners=c,null==(a=null==(o=this._options)?void 0:o.onDidAddFirstListener)||a.call(o,this)),this._size++;let h=fg(()=>{null==l||l(),this._removeListener(c)});return s instanceof mg?s.add(h):Array.isArray(s)&&s.push(h),h}),this._event}_removeListener(e){var t,s,i,r;if(null==(s=null==(t=this._options)?void 0:t.onWillRemoveListener)||s.call(t,this),!this._listeners)return;if(1===this._size)return this._listeners=void 0,null==(r=null==(i=this._options)?void 0:i.onDidRemoveLastListener)||r.call(i,this),void(this._size=0);let n=this._listeners,o=n.indexOf(e);if(-1===o)throw console.log("disposed?",this._disposed),console.log("size?",this._size),console.log("arr?",JSON.stringify(this._listeners)),new Error("Attempted to dispose unknown listener");this._size--,n[o]=void 0;let a=this._deliveryQueue.current===this;if(2*this._size<=n.length){let e=0;for(let t=0;t<n.length;t++)n[t]?n[e++]=n[t]:a&&(this._deliveryQueue.end--,e<this._deliveryQueue.i&&this._deliveryQueue.i--);n.length=e}}_deliver(e,t){var s;if(!e)return;let i=(null==(s=this._options)?void 0:s.onListenerError)||sg;if(i)try{e.value(t)}catch(r){i(r)}else e.value(t)}_deliverQueue(e){let t=e.current._listeners;for(;e.i<e.end;)this._deliver(t[e.i++],e.value);e.reset()}fire(e){var t,s,i,r;if((null==(t=this._deliveryQueue)?void 0:t.current)&&(this._deliverQueue(this._deliveryQueue),null==(s=this._perfMon)||s.stop()),null==(i=this._perfMon)||i.start(this._size),this._listeners)if(this._listeners instanceof Lg)this._deliver(this._listeners,e);else{let t=this._deliveryQueue;t.enqueue(this,e,this._listeners.length),this._deliverQueue(t)}null==(r=this._perfMon)||r.stop()}hasListeners(){return this._size>0}},Ig=class{constructor(){this.i=-1,this.end=0}enqueue(e,t,s){this.i=0,this.end=s,this.current=e,this.value=t}reset(){this.i=this.end,this.current=void 0,this.value=void 0}},Bg=class{constructor(){this.mapWindowIdToZoomLevel=new Map,this._onDidChangeZoomLevel=new Tg,this.onDidChangeZoomLevel=this._onDidChangeZoomLevel.event,this.mapWindowIdToZoomFactor=new Map,this._onDidChangeFullscreen=new Tg,this.onDidChangeFullscreen=this._onDidChangeFullscreen.event,this.mapWindowIdToFullScreen=new Map}getZoomLevel(e){return this.mapWindowIdToZoomLevel.get(this.getWindowId(e))??0}setZoomLevel(e,t){if(this.getZoomLevel(t)===e)return;let s=this.getWindowId(t);this.mapWindowIdToZoomLevel.set(s,e),this._onDidChangeZoomLevel.fire(s)}getZoomFactor(e){return this.mapWindowIdToZoomFactor.get(this.getWindowId(e))??1}setZoomFactor(e,t){this.mapWindowIdToZoomFactor.set(this.getWindowId(t),e)}setFullscreen(e,t){if(this.isFullscreen(t)===e)return;let s=this.getWindowId(t);this.mapWindowIdToFullScreen.set(s,e),this._onDidChangeFullscreen.fire(s)}isFullscreen(e){return!!this.mapWindowIdToFullScreen.get(this.getWindowId(e))}getWindowId(e){return e.vscodeWindowId}};Bg.INSTANCE=new Bg;var Og=Bg;Og.INSTANCE.onDidChangeZoomLevel,Og.INSTANCE.onDidChangeFullscreen;var Ag="object"==typeof navigator?navigator.userAgent:"",zg=Ag.indexOf("Firefox")>=0,$g=Ag.indexOf("AppleWebKit")>=0,Hg=Ag.indexOf("Chrome")>=0,Wg=!Hg&&Ag.indexOf("Safari")>=0;Ag.indexOf("Electron/"),Ag.indexOf("Android");var Fg=!1;if("function"==typeof vg.matchMedia){let e=vg.matchMedia("(display-mode: standalone) or (display-mode: window-controls-overlay)"),t=vg.matchMedia("(display-mode: fullscreen)");Fg=e.matches,function(e,t,s){"string"==typeof t&&(t=e.matchMedia(t)),t.addEventListener("change",s)}(vg,e,({matches:e})=>{Fg&&t.matches||(Fg=e)})}var Kg,Vg,Ug="en",qg=!1,Yg=!1,Xg=!1,Gg=!1,Zg=Ug,Jg=globalThis;typeof Jg.vscode<"u"&&typeof Jg.vscode.process<"u"?Vg=Jg.vscode.process:typeof process<"u"&&"string"==typeof(null==(e=null==process?void 0:process.versions)?void 0:e.node)&&(Vg=process);var Qg="string"==typeof(null==(t=null==Vg?void 0:Vg.versions)?void 0:t.electron)&&"renderer"===(null==Vg?void 0:Vg.type);if("object"==typeof Vg){qg="win32"===Vg.platform,Yg="darwin"===Vg.platform,(Xg="linux"===Vg.platform)&&!!Vg.env.SNAP&&Vg.env.SNAP_REVISION,!!Vg.env.CI||Vg.env.BUILD_ARTIFACTSTAGINGDIRECTORY,Zg=Ug;let e=Vg.env.VSCODE_NLS_CONFIG;if(e)try{let t=JSON.parse(e);t.userLocale,t.osLocale,Zg=t.resolvedLanguage||Ug,null==(s=t.languagePack)?void 0:s.translationsConfigFile}catch{}Gg=!0}else"object"!=typeof navigator||Qg?console.error("Unable to resolve platform."):(qg=(Kg=navigator.userAgent).indexOf("Windows")>=0,Yg=Kg.indexOf("Macintosh")>=0,(Kg.indexOf("Macintosh")>=0||Kg.indexOf("iPad")>=0||Kg.indexOf("iPhone")>=0)&&!!navigator.maxTouchPoints&&navigator.maxTouchPoints,Xg=Kg.indexOf("Linux")>=0,null==Kg||Kg.indexOf("Mobi"),Zg=globalThis._VSCODE_NLS_LANGUAGE||Ug,navigator.language.toLowerCase());var e_,t_,s_=qg,i_=Yg,r_=Xg,n_=Gg,o_=Kg,a_=Zg;(t_=e_||(e_={})).value=function(){return a_},t_.isDefaultVariant=function(){return 2===a_.length?"en"===a_:a_.length>=3&&"e"===a_[0]&&"n"===a_[1]&&"-"===a_[2]},t_.isDefault=function(){return"en"===a_};var l_="function"==typeof Jg.postMessage&&!Jg.importScripts;(()=>{if(l_){let e=[];Jg.addEventListener("message",t=>{if(t.data&&t.data.vscodeScheduleAsyncWork)for(let s=0,i=e.length;s<i;s++){let i=e[s];if(i.id===t.data.vscodeScheduleAsyncWork)return e.splice(s,1),void i.callback()}});let t=0;return s=>{let i=++t;e.push({id:i,callback:s}),Jg.postMessage({vscodeScheduleAsyncWork:i},"*")}}})();var c_=!!(o_&&o_.indexOf("Chrome")>=0);o_&&o_.indexOf("Firefox"),!c_&&o_&&o_.indexOf("Safari"),o_&&o_.indexOf("Edg/"),o_&&o_.indexOf("Android");var h_="object"==typeof navigator?navigator:{};n_||document.queryCommandSupported&&document.queryCommandSupported("copy")||h_&&h_.clipboard&&h_.clipboard.writeText,n_||h_&&h_.clipboard&&h_.clipboard.readText;var d_,u_,f_=class{constructor(){this._keyCodeToStr=[],this._strToKeyCode=Object.create(null)}define(e,t){this._keyCodeToStr[e]=t,this._strToKeyCode[t.toLowerCase()]=e}keyCodeToStr(e){return this._keyCodeToStr[e]}strToKeyCode(e){return this._strToKeyCode[e.toLowerCase()]||0}},p_=new f_,m_=new f_,g_=new f_,__=new Array(230);(u_=d_||(d_={})).toString=function(e){return p_.keyCodeToStr(e)},u_.fromString=function(e){return p_.strToKeyCode(e)},u_.toUserSettingsUS=function(e){return m_.keyCodeToStr(e)},u_.toUserSettingsGeneral=function(e){return g_.keyCodeToStr(e)},u_.fromUserSettings=function(e){return m_.strToKeyCode(e)||g_.strToKeyCode(e)},u_.toElectronAccelerator=function(e){if(e>=98&&e<=113)return null;switch(e){case 16:return"Up";case 18:return"Down";case 15:return"Left";case 17:return"Right"}return p_.keyCodeToStr(e)};var v_=class e{constructor(e,t,s,i,r){this.ctrlKey=e,this.shiftKey=t,this.altKey=s,this.metaKey=i,this.keyCode=r}equals(t){return t instanceof e&&this.ctrlKey===t.ctrlKey&&this.shiftKey===t.shiftKey&&this.altKey===t.altKey&&this.metaKey===t.metaKey&&this.keyCode===t.keyCode}getHashCode(){return`K${this.ctrlKey?"1":"0"}${this.shiftKey?"1":"0"}${this.altKey?"1":"0"}${this.metaKey?"1":"0"}${this.keyCode}`}isModifierKey(){return 0===this.keyCode||5===this.keyCode||57===this.keyCode||6===this.keyCode||4===this.keyCode}toKeybinding(){return new x_([this])}isDuplicateModifierCase(){return this.ctrlKey&&5===this.keyCode||this.shiftKey&&4===this.keyCode||this.altKey&&6===this.keyCode||this.metaKey&&57===this.keyCode}},x_=class{constructor(e){if(0===e.length)throw new Error(`Illegal argument: ${"chords"}`);this.chords=e}getHashCode(){let e="";for(let t=0,s=this.chords.length;t<s;t++)0!==t&&(e+=";"),e+=this.chords[t].getHashCode();return e}equals(e){if(null===e||this.chords.length!==e.chords.length)return!1;for(let t=0;t<this.chords.length;t++)if(!this.chords[t].equals(e.chords[t]))return!1;return!0}};var y_=i_?256:2048,b_=i_?2048:256,w_=class{constructor(e){var t;this._standardKeyboardEventBrand=!0;let s=e;this.browserEvent=s,this.target=s.target,this.ctrlKey=s.ctrlKey,this.shiftKey=s.shiftKey,this.altKey=s.altKey,this.metaKey=s.metaKey,this.altGraphKey=null==(t=s.getModifierState)?void 0:t.call(s,"AltGraph"),this.keyCode=function(e){if(e.charCode){let t=String.fromCharCode(e.charCode).toUpperCase();return d_.fromString(t)}let t=e.keyCode;if(3===t)return 7;if(zg)switch(t){case 59:return 85;case 60:if(r_)return 97;break;case 61:return 86;case 107:return 109;case 109:return 111;case 173:return 88;case 224:if(i_)return 57}else if($g){if(i_&&93===t)return 57;if(!i_&&92===t)return 57}return __[t]||0}(s),this.code=s.code,this.ctrlKey=this.ctrlKey||5===this.keyCode,this.altKey=this.altKey||6===this.keyCode,this.shiftKey=this.shiftKey||4===this.keyCode,this.metaKey=this.metaKey||57===this.keyCode,this._asKeybinding=this._computeKeybinding(),this._asKeyCodeChord=this._computeKeyCodeChord()}preventDefault(){this.browserEvent&&this.browserEvent.preventDefault&&this.browserEvent.preventDefault()}stopPropagation(){this.browserEvent&&this.browserEvent.stopPropagation&&this.browserEvent.stopPropagation()}toKeyCodeChord(){return this._asKeyCodeChord}equals(e){return this._asKeybinding===e}_computeKeybinding(){let e=0;5!==this.keyCode&&4!==this.keyCode&&6!==this.keyCode&&57!==this.keyCode&&(e=this.keyCode);let t=0;return this.ctrlKey&&(t|=y_),this.altKey&&(t|=512),this.shiftKey&&(t|=1024),this.metaKey&&(t|=b_),t|=e,t}_computeKeyCodeChord(){let e=0;return 5!==this.keyCode&&4!==this.keyCode&&6!==this.keyCode&&57!==this.keyCode&&(e=this.keyCode),new v_(this.ctrlKey,this.shiftKey,this.altKey,this.metaKey,e)}},S_=new WeakMap;function C_(e){if(!e.parent||e.parent===e)return null;try{let t=e.location,s=e.parent.location;if("null"!==t.origin&&"null"!==s.origin&&t.origin!==s.origin)return null}catch{return null}return e.parent}var k_,N_=class{static getSameOriginWindowChain(e){let t=S_.get(e);if(!t){t=[],S_.set(e,t);let s,i=e;do{s=C_(i),s?t.push({window:new WeakRef(i),iframeElement:i.frameElement||null}):t.push({window:new WeakRef(i),iframeElement:null}),i=s}while(i)}return t.slice(0)}static getPositionOfChildWindowRelativeToAncestorWindow(e,t){if(!t||e===t)return{top:0,left:0};let s=0,i=0,r=this.getSameOriginWindowChain(e);for(let n of r){let e=n.window.deref();if(s+=(null==e?void 0:e.scrollY)??0,i+=(null==e?void 0:e.scrollX)??0,e===t||!n.iframeElement)break;let r=n.iframeElement.getBoundingClientRect();s+=r.top,i+=r.left}return{top:s,left:i}}},E_=class{constructor(e,t){this.timestamp=Date.now(),this.browserEvent=t,this.leftButton=0===t.button,this.middleButton=1===t.button,this.rightButton=2===t.button,this.buttons=t.buttons,this.target=t.target,this.detail=t.detail||1,"dblclick"===t.type&&(this.detail=2),this.ctrlKey=t.ctrlKey,this.shiftKey=t.shiftKey,this.altKey=t.altKey,this.metaKey=t.metaKey,"number"==typeof t.pageX?(this.posx=t.pageX,this.posy=t.pageY):(this.posx=t.clientX+this.target.ownerDocument.body.scrollLeft+this.target.ownerDocument.documentElement.scrollLeft,this.posy=t.clientY+this.target.ownerDocument.body.scrollTop+this.target.ownerDocument.documentElement.scrollTop);let s=N_.getPositionOfChildWindowRelativeToAncestorWindow(e,t.view);this.posx-=s.left,this.posy-=s.top}preventDefault(){this.browserEvent.preventDefault()}stopPropagation(){this.browserEvent.stopPropagation()}},j_=class{constructor(e,t=0,s=0){var i;this.browserEvent=e||null,this.target=e?e.target||e.targetNode||e.srcElement:null,this.deltaY=s,this.deltaX=t;let r=!1;if(Hg){let e=navigator.userAgent.match(/Chrome\/(\d+)/);r=(e?parseInt(e[1]):123)<=122}if(e){let t=e,s=e,n=(null==(i=e.view)?void 0:i.devicePixelRatio)||1;if(typeof t.wheelDeltaY<"u")this.deltaY=r?t.wheelDeltaY/(120*n):t.wheelDeltaY/120;else if(typeof s.VERTICAL_AXIS<"u"&&s.axis===s.VERTICAL_AXIS)this.deltaY=-s.detail/3;else if("wheel"===e.type){let t=e;t.deltaMode===t.DOM_DELTA_LINE?this.deltaY=zg&&!i_?-e.deltaY/3:-e.deltaY:this.deltaY=-e.deltaY/40}if(typeof t.wheelDeltaX<"u")this.deltaX=Wg&&s_?-t.wheelDeltaX/120:r?t.wheelDeltaX/(120*n):t.wheelDeltaX/120;else if(typeof s.HORIZONTAL_AXIS<"u"&&s.axis===s.HORIZONTAL_AXIS)this.deltaX=-e.detail/3;else if("wheel"===e.type){let t=e;t.deltaMode===t.DOM_DELTA_LINE?this.deltaX=zg&&!i_?-e.deltaX/3:-e.deltaX:this.deltaX=-e.deltaX/40}0===this.deltaY&&0===this.deltaX&&e.wheelDelta&&(this.deltaY=r?e.wheelDelta/(120*n):e.wheelDelta/120)}}preventDefault(){var e;null==(e=this.browserEvent)||e.preventDefault()}stopPropagation(){var e;null==(e=this.browserEvent)||e.stopPropagation()}},M_=Object.freeze(function(e,t){let s=setTimeout(e.bind(t),0);return{dispose(){clearTimeout(s)}}});(e=>{e.isCancellationToken=function(t){return t===e.None||t===e.Cancelled||t instanceof P_||!(!t||"object"!=typeof t)&&("boolean"==typeof t.isCancellationRequested&&"function"==typeof t.onCancellationRequested)},e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:yg.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:M_})})(k_||(k_={}));var D_,R_,P_=class{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?M_:(this._emitter||(this._emitter=new Tg),this._emitter.event)}dispose(){this._emitter&&(this._emitter.dispose(),this._emitter=null)}},L_=class{constructor(e,t){this._isDisposed=!1,this._token=-1,"function"==typeof e&&"number"==typeof t&&this.setIfNotSet(e,t)}dispose(){this.cancel(),this._isDisposed=!0}cancel(){-1!==this._token&&(clearTimeout(this._token),this._token=-1)}cancelAndSet(e,t){if(this._isDisposed)throw new cg("Calling 'cancelAndSet' on a disposed TimeoutTimer");this.cancel(),this._token=setTimeout(()=>{this._token=-1,e()},t)}setIfNotSet(e,t){if(this._isDisposed)throw new cg("Calling 'setIfNotSet' on a disposed TimeoutTimer");-1===this._token&&(this._token=setTimeout(()=>{this._token=-1,e()},t))}},T_=class{constructor(){this.disposable=void 0,this.isDisposed=!1}cancel(){var e;null==(e=this.disposable)||e.dispose(),this.disposable=void 0}cancelAndSet(e,t,s=globalThis){if(this.isDisposed)throw new cg("Calling 'cancelAndSet' on a disposed IntervalTimer");this.cancel();let i=s.setInterval(()=>{e()},t);this.disposable=fg(()=>{s.clearInterval(i),this.disposable=void 0})}dispose(){this.cancel(),this.isDisposed=!0}};(R_=D_||(D_={})).settled=async function(e){let t,s=await Promise.all(e.map(e=>e.then(e=>e,e=>{t||(t=e)})));if(typeof t<"u")throw t;return s},R_.withAsyncBody=function(e){return new Promise(async(t,s)=>{try{await e(t,s)}catch(u_){s(u_)}})};var I_=class e{static fromArray(t){return new e(e=>{e.emitMany(t)})}static fromPromise(t){return new e(async e=>{e.emitMany(await t)})}static fromPromises(t){return new e(async e=>{await Promise.all(t.map(async t=>e.emitOne(await t)))})}static merge(t){return new e(async e=>{await Promise.all(t.map(async t=>{for await(let s of t)e.emitOne(s)}))})}constructor(e,t){this._state=0,this._results=[],this._error=null,this._onReturn=t,this._onStateChanged=new Tg,queueMicrotask(async()=>{let t={emitOne:e=>this.emitOne(e),emitMany:e=>this.emitMany(e),reject:e=>this.reject(e)};try{await Promise.resolve(e(t)),this.resolve()}catch(s){this.reject(s)}finally{t.emitOne=void 0,t.emitMany=void 0,t.reject=void 0}})}[Symbol.asyncIterator](){let e=0;return{next:async()=>{for(;;){if(2===this._state)throw this._error;if(e<this._results.length)return{done:!1,value:this._results[e++]};if(1===this._state)return{done:!0,value:void 0};await yg.toPromise(this._onStateChanged.event)}},return:async()=>{var e;return null==(e=this._onReturn)||e.call(this),{done:!0,value:void 0}}}}static map(t,s){return new e(async e=>{for await(let i of t)e.emitOne(s(i))})}map(t){return e.map(this,t)}static filter(t,s){return new e(async e=>{for await(let i of t)s(i)&&e.emitOne(i)})}filter(t){return e.filter(this,t)}static coalesce(t){return e.filter(t,e=>!!e)}coalesce(){return e.coalesce(this)}static async toPromise(e){let t=[];for await(let s of e)t.push(s);return t}toPromise(){return e.toPromise(this)}emitOne(e){0===this._state&&(this._results.push(e),this._onStateChanged.fire())}emitMany(e){0===this._state&&(this._results=this._results.concat(e),this._onStateChanged.fire())}resolve(){0===this._state&&(this._state=1,this._onStateChanged.fire())}reject(e){0===this._state&&(this._state=2,this._error=e,this._onStateChanged.fire())}};I_.EMPTY=I_.fromArray([]);var{getWindow:B_,getWindowId:O_,onDidRegisterWindow:A_}=function(){let e=new Map,t={window:vg,disposables:new mg};e.set(vg.vscodeWindowId,t);let s=new Tg,i=new Tg,r=new Tg;return{onDidRegisterWindow:s.event,onWillUnregisterWindow:r.event,onDidUnregisterWindow:i.event,registerWindow(t){if(e.has(t.vscodeWindowId))return gg.None;let n=new mg,o={window:t,disposables:n.add(new mg)};return e.set(t.vscodeWindowId,o),n.add(fg(()=>{e.delete(t.vscodeWindowId),i.fire(t)})),n.add($_(t,V_.BEFORE_UNLOAD,()=>{r.fire(t)})),s.fire(o),n},getWindows:()=>e.values(),getWindowsCount:()=>e.size,getWindowId:e=>e.vscodeWindowId,hasWindow:t=>e.has(t),getWindowById:function(s,i){return("number"==typeof s?e.get(s):void 0)??(i?t:void 0)},getWindow(e){var t;let s=e;if(null==(t=null==s?void 0:s.ownerDocument)?void 0:t.defaultView)return s.ownerDocument.defaultView.window;let i=e;return(null==i?void 0:i.view)?i.view.window:vg},getDocument:e=>B_(e).document}}(),z_=class{constructor(e,t,s,i){this._node=e,this._type=t,this._handler=s,this._options=i||!1,this._node.addEventListener(this._type,this._handler,this._options)}dispose(){this._handler&&(this._node.removeEventListener(this._type,this._handler,this._options),this._node=null,this._handler=null)}};function $_(e,t,s,i){return new z_(e,t,s,i)}var H_,W_=function(e,t,s,i){return $_(e,t,s,i)},F_=class extends T_{constructor(e){super(),this.defaultTarget=e&&B_(e)}cancelAndSet(e,t,s){return super.cancelAndSet(e,t,s??this.defaultTarget)}},K_=class{constructor(e,t=0){this._runner=e,this.priority=t,this._canceled=!1}dispose(){this._canceled=!0}execute(){if(!this._canceled)try{this._runner()}catch(ww){sg(ww)}}static sort(e,t){return t.priority-e.priority}};!function(){let e=new Map,t=new Map,s=new Map,i=new Map;H_=(r,n,o=0)=>{let a=O_(r),l=new K_(n,o),c=e.get(a);return c||(c=[],e.set(a,c)),c.push(l),s.get(a)||(s.set(a,!0),r.requestAnimationFrame(()=>(r=>{s.set(r,!1);let n=e.get(r)??[];for(t.set(r,n),e.set(r,[]),i.set(r,!0);n.length>0;)n.sort(K_.sort),n.shift().execute();i.set(r,!1)})(a))),l}}();var V_={CLICK:"click",MOUSE_DOWN:"mousedown",MOUSE_OVER:"mouseover",MOUSE_LEAVE:"mouseleave",MOUSE_WHEEL:"wheel",POINTER_UP:"pointerup",POINTER_DOWN:"pointerdown",POINTER_MOVE:"pointermove",KEY_DOWN:"keydown",KEY_UP:"keyup",BEFORE_UNLOAD:"beforeunload",CHANGE:"change",FOCUS:"focus",BLUR:"blur",INPUT:"input"},U_=class{constructor(e){this.domNode=e,this._maxWidth="",this._width="",this._height="",this._top="",this._left="",this._bottom="",this._right="",this._paddingTop="",this._paddingLeft="",this._paddingBottom="",this._paddingRight="",this._fontFamily="",this._fontWeight="",this._fontSize="",this._fontStyle="",this._fontFeatureSettings="",this._fontVariationSettings="",this._textDecoration="",this._lineHeight="",this._letterSpacing="",this._className="",this._display="",this._position="",this._visibility="",this._color="",this._backgroundColor="",this._layerHint=!1,this._contain="none",this._boxShadow=""}setMaxWidth(e){let t=q_(e);this._maxWidth!==t&&(this._maxWidth=t,this.domNode.style.maxWidth=this._maxWidth)}setWidth(e){let t=q_(e);this._width!==t&&(this._width=t,this.domNode.style.width=this._width)}setHeight(e){let t=q_(e);this._height!==t&&(this._height=t,this.domNode.style.height=this._height)}setTop(e){let t=q_(e);this._top!==t&&(this._top=t,this.domNode.style.top=this._top)}setLeft(e){let t=q_(e);this._left!==t&&(this._left=t,this.domNode.style.left=this._left)}setBottom(e){let t=q_(e);this._bottom!==t&&(this._bottom=t,this.domNode.style.bottom=this._bottom)}setRight(e){let t=q_(e);this._right!==t&&(this._right=t,this.domNode.style.right=this._right)}setPaddingTop(e){let t=q_(e);this._paddingTop!==t&&(this._paddingTop=t,this.domNode.style.paddingTop=this._paddingTop)}setPaddingLeft(e){let t=q_(e);this._paddingLeft!==t&&(this._paddingLeft=t,this.domNode.style.paddingLeft=this._paddingLeft)}setPaddingBottom(e){let t=q_(e);this._paddingBottom!==t&&(this._paddingBottom=t,this.domNode.style.paddingBottom=this._paddingBottom)}setPaddingRight(e){let t=q_(e);this._paddingRight!==t&&(this._paddingRight=t,this.domNode.style.paddingRight=this._paddingRight)}setFontFamily(e){this._fontFamily!==e&&(this._fontFamily=e,this.domNode.style.fontFamily=this._fontFamily)}setFontWeight(e){this._fontWeight!==e&&(this._fontWeight=e,this.domNode.style.fontWeight=this._fontWeight)}setFontSize(e){let t=q_(e);this._fontSize!==t&&(this._fontSize=t,this.domNode.style.fontSize=this._fontSize)}setFontStyle(e){this._fontStyle!==e&&(this._fontStyle=e,this.domNode.style.fontStyle=this._fontStyle)}setFontFeatureSettings(e){this._fontFeatureSettings!==e&&(this._fontFeatureSettings=e,this.domNode.style.fontFeatureSettings=this._fontFeatureSettings)}setFontVariationSettings(e){this._fontVariationSettings!==e&&(this._fontVariationSettings=e,this.domNode.style.fontVariationSettings=this._fontVariationSettings)}setTextDecoration(e){this._textDecoration!==e&&(this._textDecoration=e,this.domNode.style.textDecoration=this._textDecoration)}setLineHeight(e){let t=q_(e);this._lineHeight!==t&&(this._lineHeight=t,this.domNode.style.lineHeight=this._lineHeight)}setLetterSpacing(e){let t=q_(e);this._letterSpacing!==t&&(this._letterSpacing=t,this.domNode.style.letterSpacing=this._letterSpacing)}setClassName(e){this._className!==e&&(this._className=e,this.domNode.className=this._className)}toggleClassName(e,t){this.domNode.classList.toggle(e,t),this._className=this.domNode.className}setDisplay(e){this._display!==e&&(this._display=e,this.domNode.style.display=this._display)}setPosition(e){this._position!==e&&(this._position=e,this.domNode.style.position=this._position)}setVisibility(e){this._visibility!==e&&(this._visibility=e,this.domNode.style.visibility=this._visibility)}setColor(e){this._color!==e&&(this._color=e,this.domNode.style.color=this._color)}setBackgroundColor(e){this._backgroundColor!==e&&(this._backgroundColor=e,this.domNode.style.backgroundColor=this._backgroundColor)}setLayerHinting(e){this._layerHint!==e&&(this._layerHint=e,this.domNode.style.transform=this._layerHint?"translate3d(0px, 0px, 0px)":"")}setBoxShadow(e){this._boxShadow!==e&&(this._boxShadow=e,this.domNode.style.boxShadow=e)}setContain(e){this._contain!==e&&(this._contain=e,this.domNode.style.contain=this._contain)}setAttribute(e,t){this.domNode.setAttribute(e,t)}removeAttribute(e){this.domNode.removeAttribute(e)}appendChild(e){this.domNode.appendChild(e.domNode)}removeChild(e){this.domNode.removeChild(e.domNode)}};function q_(e){return"number"==typeof e?`${e}px`:e}function Y_(e){return new U_(e)}var X_,G_,Z_=class{constructor(){this._hooks=new mg,this._pointerMoveCallback=null,this._onStopCallback=null}dispose(){this.stopMonitoring(!1),this._hooks.dispose()}stopMonitoring(e,t){if(!this.isMonitoring())return;this._hooks.clear(),this._pointerMoveCallback=null;let s=this._onStopCallback;this._onStopCallback=null,e&&s&&s(t)}isMonitoring(){return!!this._pointerMoveCallback}startMonitoring(e,t,s,i,r){this.isMonitoring()&&this.stopMonitoring(!1),this._pointerMoveCallback=i,this._onStopCallback=r;let n=e;try{e.setPointerCapture(t),this._hooks.add(fg(()=>{try{e.releasePointerCapture(t)}catch{}}))}catch{n=B_(e)}this._hooks.add($_(n,V_.POINTER_MOVE,e=>{e.buttons===s?(e.preventDefault(),this._pointerMoveCallback(e)):this.stopMonitoring(!0)})),this._hooks.add($_(n,V_.POINTER_UP,e=>this.stopMonitoring(!0)))}};(G_=X_||(X_={})).Tap="-xterm-gesturetap",G_.Change="-xterm-gesturechange",G_.Start="-xterm-gesturestart",G_.End="-xterm-gesturesend",G_.Contextmenu="-xterm-gesturecontextmenu";var J_=class e extends gg{constructor(){super(),this.dispatched=!1,this.targets=new wg,this.ignoreTargets=new wg,this.activeTouches={},this.handle=null,this._lastSetTapCountTime=0,this._register(yg.runAndSubscribe(A_,({window:e,disposables:t})=>{t.add($_(e.document,"touchstart",e=>this.onTouchStart(e),{passive:!1})),t.add($_(e.document,"touchend",t=>this.onTouchEnd(e,t))),t.add($_(e.document,"touchmove",e=>this.onTouchMove(e),{passive:!1}))},{window:vg,disposables:this._store}))}static addTarget(t){if(!e.isTouchDevice())return gg.None;return e.INSTANCE||(e.INSTANCE=new e),fg(e.INSTANCE.targets.push(t))}static ignoreTarget(t){if(!e.isTouchDevice())return gg.None;return e.INSTANCE||(e.INSTANCE=new e),fg(e.INSTANCE.ignoreTargets.push(t))}static isTouchDevice(){return"ontouchstart"in vg||navigator.maxTouchPoints>0}dispose(){this.handle&&(this.handle.dispose(),this.handle=null),super.dispose()}onTouchStart(e){let t=Date.now();this.handle&&(this.handle.dispose(),this.handle=null);for(let s=0,i=e.targetTouches.length;s<i;s++){let i=e.targetTouches.item(s);this.activeTouches[i.identifier]={id:i.identifier,initialTarget:i.target,initialTimeStamp:t,initialPageX:i.pageX,initialPageY:i.pageY,rollingTimestamps:[t],rollingPageX:[i.pageX],rollingPageY:[i.pageY]};let r=this.newGestureEvent(X_.Start,i.target);r.pageX=i.pageX,r.pageY=i.pageY,this.dispatchEvent(r)}this.dispatched&&(e.preventDefault(),e.stopPropagation(),this.dispatched=!1)}onTouchEnd(t,s){let i=Date.now(),r=Object.keys(this.activeTouches).length;for(let n=0,o=s.changedTouches.length;n<o;n++){let o=s.changedTouches.item(n);if(!this.activeTouches.hasOwnProperty(String(o.identifier))){console.warn("move of an UNKNOWN touch",o);continue}let a=this.activeTouches[o.identifier],l=Date.now()-a.initialTimeStamp;if(l<e.HOLD_DELAY&&Math.abs(a.initialPageX-hg(a.rollingPageX))<30&&Math.abs(a.initialPageY-hg(a.rollingPageY))<30){let e=this.newGestureEvent(X_.Tap,a.initialTarget);e.pageX=hg(a.rollingPageX),e.pageY=hg(a.rollingPageY),this.dispatchEvent(e)}else if(l>=e.HOLD_DELAY&&Math.abs(a.initialPageX-hg(a.rollingPageX))<30&&Math.abs(a.initialPageY-hg(a.rollingPageY))<30){let e=this.newGestureEvent(X_.Contextmenu,a.initialTarget);e.pageX=hg(a.rollingPageX),e.pageY=hg(a.rollingPageY),this.dispatchEvent(e)}else if(1===r){let e=hg(a.rollingPageX),s=hg(a.rollingPageY),r=hg(a.rollingTimestamps)-a.rollingTimestamps[0],n=e-a.rollingPageX[0],o=s-a.rollingPageY[0],l=[...this.targets].filter(e=>a.initialTarget instanceof Node&&e.contains(a.initialTarget));this.inertia(t,l,i,Math.abs(n)/r,n>0?1:-1,e,Math.abs(o)/r,o>0?1:-1,s)}this.dispatchEvent(this.newGestureEvent(X_.End,a.initialTarget)),delete this.activeTouches[o.identifier]}this.dispatched&&(s.preventDefault(),s.stopPropagation(),this.dispatched=!1)}newGestureEvent(e,t){let s=document.createEvent("CustomEvent");return s.initEvent(e,!1,!0),s.initialTarget=t,s.tapCount=0,s}dispatchEvent(t){if(t.type===X_.Tap){let s=(new Date).getTime(),i=0;i=s-this._lastSetTapCountTime>e.CLEAR_TAP_COUNT_TIME?1:2,this._lastSetTapCountTime=s,t.tapCount=i}else(t.type===X_.Change||t.type===X_.Contextmenu)&&(this._lastSetTapCountTime=0);if(t.initialTarget instanceof Node){for(let s of this.ignoreTargets)if(s.contains(t.initialTarget))return;let e=[];for(let s of this.targets)if(s.contains(t.initialTarget)){let i=0,r=t.initialTarget;for(;r&&r!==s;)i++,r=r.parentElement;e.push([i,s])}e.sort((e,t)=>e[0]-t[0]);for(let[s,i]of e)i.dispatchEvent(t),this.dispatched=!0}}inertia(t,s,i,r,n,o,a,l,c){this.handle=H_(t,()=>{let h=Date.now(),d=h-i,u=0,f=0,p=!0;r+=e.SCROLL_FRICTION*d,a+=e.SCROLL_FRICTION*d,r>0&&(p=!1,u=n*r*d),a>0&&(p=!1,f=l*a*d);let m=this.newGestureEvent(X_.Change);m.translationX=u,m.translationY=f,s.forEach(e=>e.dispatchEvent(m)),p||this.inertia(t,s,h,r,n,o+u,a,l,c+f)})}onTouchMove(e){let t=Date.now();for(let s=0,i=e.changedTouches.length;s<i;s++){let i=e.changedTouches.item(s);if(!this.activeTouches.hasOwnProperty(String(i.identifier))){console.warn("end of an UNKNOWN touch",i);continue}let r=this.activeTouches[i.identifier],n=this.newGestureEvent(X_.Change,r.initialTarget);n.translationX=i.pageX-hg(r.rollingPageX),n.translationY=i.pageY-hg(r.rollingPageY),n.pageX=i.pageX,n.pageY=i.pageY,this.dispatchEvent(n),r.rollingPageX.length>3&&(r.rollingPageX.shift(),r.rollingPageY.shift(),r.rollingTimestamps.shift()),r.rollingPageX.push(i.pageX),r.rollingPageY.push(i.pageY),r.rollingTimestamps.push(t)}this.dispatched&&(e.preventDefault(),e.stopPropagation(),this.dispatched=!1)}};J_.SCROLL_FRICTION=-.005,J_.HOLD_DELAY=700,J_.CLEAR_TAP_COUNT_TIME=400,um([function(e,t,s){let i=null,r=null;if("function"==typeof s.value?(i="value",r=s.value,0!==r.length&&console.warn("Memoize should only be used in functions with zero parameters")):"function"==typeof s.get&&(i="get",r=s.get),!r)throw new Error("not supported");let n=`$memoize$${t}`;s[i]=function(...e){return this.hasOwnProperty(n)||Object.defineProperty(this,n,{configurable:!1,enumerable:!1,writable:!1,value:r.apply(this,e)}),this[n]}}],J_,"isTouchDevice",1);var Q_=J_,ev=class extends gg{onclick(e,t){this._register($_(e,V_.CLICK,s=>t(new E_(B_(e),s))))}onmousedown(e,t){this._register($_(e,V_.MOUSE_DOWN,s=>t(new E_(B_(e),s))))}onmouseover(e,t){this._register($_(e,V_.MOUSE_OVER,s=>t(new E_(B_(e),s))))}onmouseleave(e,t){this._register($_(e,V_.MOUSE_LEAVE,s=>t(new E_(B_(e),s))))}onkeydown(e,t){this._register($_(e,V_.KEY_DOWN,e=>t(new w_(e))))}onkeyup(e,t){this._register($_(e,V_.KEY_UP,e=>t(new w_(e))))}oninput(e,t){this._register($_(e,V_.INPUT,t))}onblur(e,t){this._register($_(e,V_.BLUR,t))}onfocus(e,t){this._register($_(e,V_.FOCUS,t))}onchange(e,t){this._register($_(e,V_.CHANGE,t))}ignoreGesture(e){return Q_.ignoreTarget(e)}},tv=class extends ev{constructor(e){super(),this._onActivate=e.onActivate,this.bgDomNode=document.createElement("div"),this.bgDomNode.className="arrow-background",this.bgDomNode.style.position="absolute",this.bgDomNode.style.width=e.bgWidth+"px",this.bgDomNode.style.height=e.bgHeight+"px",typeof e.top<"u"&&(this.bgDomNode.style.top="0px"),typeof e.left<"u"&&(this.bgDomNode.style.left="0px"),typeof e.bottom<"u"&&(this.bgDomNode.style.bottom="0px"),typeof e.right<"u"&&(this.bgDomNode.style.right="0px"),this.domNode=document.createElement("div"),this.domNode.className=e.className,this.domNode.style.position="absolute",this.domNode.style.width="11px",this.domNode.style.height="11px",typeof e.top<"u"&&(this.domNode.style.top=e.top+"px"),typeof e.left<"u"&&(this.domNode.style.left=e.left+"px"),typeof e.bottom<"u"&&(this.domNode.style.bottom=e.bottom+"px"),typeof e.right<"u"&&(this.domNode.style.right=e.right+"px"),this._pointerMoveMonitor=this._register(new Z_),this._register(W_(this.bgDomNode,V_.POINTER_DOWN,e=>this._arrowPointerDown(e))),this._register(W_(this.domNode,V_.POINTER_DOWN,e=>this._arrowPointerDown(e))),this._pointerdownRepeatTimer=this._register(new F_),this._pointerdownScheduleRepeatTimer=this._register(new L_)}_arrowPointerDown(e){if(!(e.target&&e.target instanceof Element))return;this._onActivate(),this._pointerdownRepeatTimer.cancel(),this._pointerdownScheduleRepeatTimer.cancelAndSet(()=>{this._pointerdownRepeatTimer.cancelAndSet(()=>this._onActivate(),1e3/24,B_(e))},200),this._pointerMoveMonitor.startMonitoring(e.target,e.pointerId,e.buttons,e=>{},()=>{this._pointerdownRepeatTimer.cancel(),this._pointerdownScheduleRepeatTimer.cancel()}),e.preventDefault()}},sv=class e{constructor(e,t,s,i,r,n,o){this._forceIntegerValues=e,this._scrollStateBrand=void 0,this._forceIntegerValues&&(t|=0,s|=0,i|=0,r|=0,n|=0,o|=0),this.rawScrollLeft=i,this.rawScrollTop=o,t<0&&(t=0),i+t>s&&(i=s-t),i<0&&(i=0),r<0&&(r=0),o+r>n&&(o=n-r),o<0&&(o=0),this.width=t,this.scrollWidth=s,this.scrollLeft=i,this.height=r,this.scrollHeight=n,this.scrollTop=o}equals(e){return this.rawScrollLeft===e.rawScrollLeft&&this.rawScrollTop===e.rawScrollTop&&this.width===e.width&&this.scrollWidth===e.scrollWidth&&this.scrollLeft===e.scrollLeft&&this.height===e.height&&this.scrollHeight===e.scrollHeight&&this.scrollTop===e.scrollTop}withScrollDimensions(t,s){return new e(this._forceIntegerValues,typeof t.width<"u"?t.width:this.width,typeof t.scrollWidth<"u"?t.scrollWidth:this.scrollWidth,s?this.rawScrollLeft:this.scrollLeft,typeof t.height<"u"?t.height:this.height,typeof t.scrollHeight<"u"?t.scrollHeight:this.scrollHeight,s?this.rawScrollTop:this.scrollTop)}withScrollPosition(t){return new e(this._forceIntegerValues,this.width,this.scrollWidth,typeof t.scrollLeft<"u"?t.scrollLeft:this.rawScrollLeft,this.height,this.scrollHeight,typeof t.scrollTop<"u"?t.scrollTop:this.rawScrollTop)}createScrollEvent(e,t){let s=this.width!==e.width,i=this.scrollWidth!==e.scrollWidth,r=this.scrollLeft!==e.scrollLeft,n=this.height!==e.height,o=this.scrollHeight!==e.scrollHeight,a=this.scrollTop!==e.scrollTop;return{inSmoothScrolling:t,oldWidth:e.width,oldScrollWidth:e.scrollWidth,oldScrollLeft:e.scrollLeft,width:this.width,scrollWidth:this.scrollWidth,scrollLeft:this.scrollLeft,oldHeight:e.height,oldScrollHeight:e.scrollHeight,oldScrollTop:e.scrollTop,height:this.height,scrollHeight:this.scrollHeight,scrollTop:this.scrollTop,widthChanged:s,scrollWidthChanged:i,scrollLeftChanged:r,heightChanged:n,scrollHeightChanged:o,scrollTopChanged:a}}},iv=class extends gg{constructor(e){super(),this._scrollableBrand=void 0,this._onScroll=this._register(new Tg),this.onScroll=this._onScroll.event,this._smoothScrollDuration=e.smoothScrollDuration,this._scheduleAtNextAnimationFrame=e.scheduleAtNextAnimationFrame,this._state=new sv(e.forceIntegerValues,0,0,0,0,0,0),this._smoothScrolling=null}dispose(){this._smoothScrolling&&(this._smoothScrolling.dispose(),this._smoothScrolling=null),super.dispose()}setSmoothScrollDuration(e){this._smoothScrollDuration=e}validateScrollPosition(e){return this._state.withScrollPosition(e)}getScrollDimensions(){return this._state}setScrollDimensions(e,t){var s;let i=this._state.withScrollDimensions(e,t);this._setState(i,!!this._smoothScrolling),null==(s=this._smoothScrolling)||s.acceptScrollDimensions(this._state)}getFutureScrollPosition(){return this._smoothScrolling?this._smoothScrolling.to:this._state}getCurrentScrollPosition(){return this._state}setScrollPositionNow(e){let t=this._state.withScrollPosition(e);this._smoothScrolling&&(this._smoothScrolling.dispose(),this._smoothScrolling=null),this._setState(t,!1)}setScrollPositionSmooth(e,t){if(0===this._smoothScrollDuration)return this.setScrollPositionNow(e);if(this._smoothScrolling){e={scrollLeft:typeof e.scrollLeft>"u"?this._smoothScrolling.to.scrollLeft:e.scrollLeft,scrollTop:typeof e.scrollTop>"u"?this._smoothScrolling.to.scrollTop:e.scrollTop};let s,i=this._state.withScrollPosition(e);if(this._smoothScrolling.to.scrollLeft===i.scrollLeft&&this._smoothScrolling.to.scrollTop===i.scrollTop)return;s=t?new ov(this._smoothScrolling.from,i,this._smoothScrolling.startTime,this._smoothScrolling.duration):this._smoothScrolling.combine(this._state,i,this._smoothScrollDuration),this._smoothScrolling.dispose(),this._smoothScrolling=s}else{let t=this._state.withScrollPosition(e);this._smoothScrolling=ov.start(this._state,t,this._smoothScrollDuration)}this._smoothScrolling.animationFrameDisposable=this._scheduleAtNextAnimationFrame(()=>{this._smoothScrolling&&(this._smoothScrolling.animationFrameDisposable=null,this._performSmoothScrolling())})}hasPendingScrollAnimation(){return!!this._smoothScrolling}_performSmoothScrolling(){if(!this._smoothScrolling)return;let e=this._smoothScrolling.tick(),t=this._state.withScrollPosition(e);if(this._setState(t,!0),this._smoothScrolling){if(e.isDone)return this._smoothScrolling.dispose(),void(this._smoothScrolling=null);this._smoothScrolling.animationFrameDisposable=this._scheduleAtNextAnimationFrame(()=>{this._smoothScrolling&&(this._smoothScrolling.animationFrameDisposable=null,this._performSmoothScrolling())})}}_setState(e,t){let s=this._state;s.equals(e)||(this._state=e,this._onScroll.fire(this._state.createScrollEvent(s,t)))}},rv=class{constructor(e,t,s){this.scrollLeft=e,this.scrollTop=t,this.isDone=s}};function nv(e,t){let s=t-e;return function(t){return e+s*function(e){return 1-function(e){return Math.pow(e,3)}(1-e)}(t)}}var ov=class e{constructor(e,t,s,i){this.from=e,this.to=t,this.duration=i,this.startTime=s,this.animationFrameDisposable=null,this._initAnimations()}_initAnimations(){this.scrollLeft=this._initAnimation(this.from.scrollLeft,this.to.scrollLeft,this.to.width),this.scrollTop=this._initAnimation(this.from.scrollTop,this.to.scrollTop,this.to.height)}_initAnimation(e,t,s){if(Math.abs(e-t)>2.5*s){let i,r;return e<t?(i=e+.75*s,r=t-.75*s):(i=e-.75*s,r=t+.75*s),function(e,t,s){return function(i){return i<s?e(i/s):t((i-s)/(1-s))}}(nv(e,i),nv(r,t),.33)}return nv(e,t)}dispose(){null!==this.animationFrameDisposable&&(this.animationFrameDisposable.dispose(),this.animationFrameDisposable=null)}acceptScrollDimensions(e){this.to=e.withScrollPosition(this.to),this._initAnimations()}tick(){return this._tick(Date.now())}_tick(e){let t=(e-this.startTime)/this.duration;if(t<1){let e=this.scrollLeft(t),s=this.scrollTop(t);return new rv(e,s,!1)}return new rv(this.to.scrollLeft,this.to.scrollTop,!0)}combine(t,s,i){return e.start(t,s,i)}static start(t,s,i){i+=10;let r=Date.now()-10;return new e(t,s,r,i)}};var av=class extends gg{constructor(e,t,s){super(),this._visibility=e,this._visibleClassName=t,this._invisibleClassName=s,this._domNode=null,this._isVisible=!1,this._isNeeded=!1,this._rawShouldBeVisible=!1,this._shouldBeVisible=!1,this._revealTimer=this._register(new L_)}setVisibility(e){this._visibility!==e&&(this._visibility=e,this._updateShouldBeVisible())}setShouldBeVisible(e){this._rawShouldBeVisible=e,this._updateShouldBeVisible()}_applyVisibilitySetting(){return 2!==this._visibility&&(3===this._visibility||this._rawShouldBeVisible)}_updateShouldBeVisible(){let e=this._applyVisibilitySetting();this._shouldBeVisible!==e&&(this._shouldBeVisible=e,this.ensureVisibility())}setIsNeeded(e){this._isNeeded!==e&&(this._isNeeded=e,this.ensureVisibility())}setDomNode(e){this._domNode=e,this._domNode.setClassName(this._invisibleClassName),this.setShouldBeVisible(!1)}ensureVisibility(){this._isNeeded?this._shouldBeVisible?this._reveal():this._hide(!0):this._hide(!1)}_reveal(){this._isVisible||(this._isVisible=!0,this._revealTimer.setIfNotSet(()=>{var e;null==(e=this._domNode)||e.setClassName(this._visibleClassName)},0))}_hide(e){var t;this._revealTimer.cancel(),this._isVisible&&(this._isVisible=!1,null==(t=this._domNode)||t.setClassName(this._invisibleClassName+(e?" fade":"")))}},lv=class extends ev{constructor(e){super(),this._lazyRender=e.lazyRender,this._host=e.host,this._scrollable=e.scrollable,this._scrollByPage=e.scrollByPage,this._scrollbarState=e.scrollbarState,this._visibilityController=this._register(new av(e.visibility,"visible scrollbar "+e.extraScrollbarClassName,"invisible scrollbar "+e.extraScrollbarClassName)),this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._pointerMoveMonitor=this._register(new Z_),this._shouldRender=!0,this.domNode=Y_(document.createElement("div")),this.domNode.setAttribute("role","presentation"),this.domNode.setAttribute("aria-hidden","true"),this._visibilityController.setDomNode(this.domNode),this.domNode.setPosition("absolute"),this._register($_(this.domNode.domNode,V_.POINTER_DOWN,e=>this._domNodePointerDown(e)))}_createArrow(e){let t=this._register(new tv(e));this.domNode.domNode.appendChild(t.bgDomNode),this.domNode.domNode.appendChild(t.domNode)}_createSlider(e,t,s,i){this.slider=Y_(document.createElement("div")),this.slider.setClassName("slider"),this.slider.setPosition("absolute"),this.slider.setTop(e),this.slider.setLeft(t),"number"==typeof s&&this.slider.setWidth(s),"number"==typeof i&&this.slider.setHeight(i),this.slider.setLayerHinting(!0),this.slider.setContain("strict"),this.domNode.domNode.appendChild(this.slider.domNode),this._register($_(this.slider.domNode,V_.POINTER_DOWN,e=>{0===e.button&&(e.preventDefault(),this._sliderPointerDown(e))})),this.onclick(this.slider.domNode,e=>{e.leftButton&&e.stopPropagation()})}_onElementSize(e){return this._scrollbarState.setVisibleSize(e)&&(this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._shouldRender=!0,this._lazyRender||this.render()),this._shouldRender}_onElementScrollSize(e){return this._scrollbarState.setScrollSize(e)&&(this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._shouldRender=!0,this._lazyRender||this.render()),this._shouldRender}_onElementScrollPosition(e){return this._scrollbarState.setScrollPosition(e)&&(this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._shouldRender=!0,this._lazyRender||this.render()),this._shouldRender}beginReveal(){this._visibilityController.setShouldBeVisible(!0)}beginHide(){this._visibilityController.setShouldBeVisible(!1)}render(){this._shouldRender&&(this._shouldRender=!1,this._renderDomNode(this._scrollbarState.getRectangleLargeSize(),this._scrollbarState.getRectangleSmallSize()),this._updateSlider(this._scrollbarState.getSliderSize(),this._scrollbarState.getArrowSize()+this._scrollbarState.getSliderPosition()))}_domNodePointerDown(e){e.target===this.domNode.domNode&&this._onPointerDown(e)}delegatePointerDown(e){let t=this.domNode.domNode.getClientRects()[0].top,s=t+this._scrollbarState.getSliderPosition(),i=t+this._scrollbarState.getSliderPosition()+this._scrollbarState.getSliderSize(),r=this._sliderPointerPosition(e);s<=r&&r<=i?0===e.button&&(e.preventDefault(),this._sliderPointerDown(e)):this._onPointerDown(e)}_onPointerDown(e){let t,s;if(e.target===this.domNode.domNode&&"number"==typeof e.offsetX&&"number"==typeof e.offsetY)t=e.offsetX,s=e.offsetY;else{let i=function(e){let t=e.getBoundingClientRect(),s=B_(e);return{left:t.left+s.scrollX,top:t.top+s.scrollY,width:t.width,height:t.height}}(this.domNode.domNode);t=e.pageX-i.left,s=e.pageY-i.top}let i=this._pointerDownRelativePosition(t,s);this._setDesiredScrollPositionNow(this._scrollByPage?this._scrollbarState.getDesiredScrollPositionFromOffsetPaged(i):this._scrollbarState.getDesiredScrollPositionFromOffset(i)),0===e.button&&(e.preventDefault(),this._sliderPointerDown(e))}_sliderPointerDown(e){if(!(e.target&&e.target instanceof Element))return;let t=this._sliderPointerPosition(e),s=this._sliderOrthogonalPointerPosition(e),i=this._scrollbarState.clone();this.slider.toggleClassName("active",!0),this._pointerMoveMonitor.startMonitoring(e.target,e.pointerId,e.buttons,e=>{let r=this._sliderOrthogonalPointerPosition(e),n=Math.abs(r-s);if(s_&&n>140)return void this._setDesiredScrollPositionNow(i.getScrollPosition());let o=this._sliderPointerPosition(e)-t;this._setDesiredScrollPositionNow(i.getDesiredScrollPositionFromDelta(o))},()=>{this.slider.toggleClassName("active",!1),this._host.onDragEnd()}),this._host.onDragStart()}_setDesiredScrollPositionNow(e){let t={};this.writeScrollPosition(t,e),this._scrollable.setScrollPositionNow(t)}updateScrollbarSize(e){this._updateScrollbarSize(e),this._scrollbarState.setScrollbarSize(e),this._shouldRender=!0,this._lazyRender||this.render()}isNeeded(){return this._scrollbarState.isNeeded()}},cv=class e{constructor(e,t,s,i,r,n){this._scrollbarSize=Math.round(t),this._oppositeScrollbarSize=Math.round(s),this._arrowSize=Math.round(e),this._visibleSize=i,this._scrollSize=r,this._scrollPosition=n,this._computedAvailableSize=0,this._computedIsNeeded=!1,this._computedSliderSize=0,this._computedSliderRatio=0,this._computedSliderPosition=0,this._refreshComputedValues()}clone(){return new e(this._arrowSize,this._scrollbarSize,this._oppositeScrollbarSize,this._visibleSize,this._scrollSize,this._scrollPosition)}setVisibleSize(e){let t=Math.round(e);return this._visibleSize!==t&&(this._visibleSize=t,this._refreshComputedValues(),!0)}setScrollSize(e){let t=Math.round(e);return this._scrollSize!==t&&(this._scrollSize=t,this._refreshComputedValues(),!0)}setScrollPosition(e){let t=Math.round(e);return this._scrollPosition!==t&&(this._scrollPosition=t,this._refreshComputedValues(),!0)}setScrollbarSize(e){this._scrollbarSize=Math.round(e)}setOppositeScrollbarSize(e){this._oppositeScrollbarSize=Math.round(e)}static _computeValues(e,t,s,i,r){let n=Math.max(0,s-e),o=Math.max(0,n-2*t),a=i>0&&i>s;if(!a)return{computedAvailableSize:Math.round(n),computedIsNeeded:a,computedSliderSize:Math.round(o),computedSliderRatio:0,computedSliderPosition:0};let l=Math.round(Math.max(20,Math.floor(s*o/i))),c=(o-l)/(i-s),h=r*c;return{computedAvailableSize:Math.round(n),computedIsNeeded:a,computedSliderSize:Math.round(l),computedSliderRatio:c,computedSliderPosition:Math.round(h)}}_refreshComputedValues(){let t=e._computeValues(this._oppositeScrollbarSize,this._arrowSize,this._visibleSize,this._scrollSize,this._scrollPosition);this._computedAvailableSize=t.computedAvailableSize,this._computedIsNeeded=t.computedIsNeeded,this._computedSliderSize=t.computedSliderSize,this._computedSliderRatio=t.computedSliderRatio,this._computedSliderPosition=t.computedSliderPosition}getArrowSize(){return this._arrowSize}getScrollPosition(){return this._scrollPosition}getRectangleLargeSize(){return this._computedAvailableSize}getRectangleSmallSize(){return this._scrollbarSize}isNeeded(){return this._computedIsNeeded}getSliderSize(){return this._computedSliderSize}getSliderPosition(){return this._computedSliderPosition}getDesiredScrollPositionFromOffset(e){if(!this._computedIsNeeded)return 0;let t=e-this._arrowSize-this._computedSliderSize/2;return Math.round(t/this._computedSliderRatio)}getDesiredScrollPositionFromOffsetPaged(e){if(!this._computedIsNeeded)return 0;let t=e-this._arrowSize,s=this._scrollPosition;return t<this._computedSliderPosition?s-=this._visibleSize:s+=this._visibleSize,s}getDesiredScrollPositionFromDelta(e){if(!this._computedIsNeeded)return 0;let t=this._computedSliderPosition+e;return Math.round(t/this._computedSliderRatio)}},hv=class extends lv{constructor(e,t,s){let i=e.getScrollDimensions(),r=e.getCurrentScrollPosition();if(super({lazyRender:t.lazyRender,host:s,scrollbarState:new cv(t.horizontalHasArrows?t.arrowSize:0,2===t.horizontal?0:t.horizontalScrollbarSize,2===t.vertical?0:t.verticalScrollbarSize,i.width,i.scrollWidth,r.scrollLeft),visibility:t.horizontal,extraScrollbarClassName:"horizontal",scrollable:e,scrollByPage:t.scrollByPage}),t.horizontalHasArrows)throw new Error("horizontalHasArrows is not supported in xterm.js");this._createSlider(Math.floor((t.horizontalScrollbarSize-t.horizontalSliderSize)/2),0,void 0,t.horizontalSliderSize)}_updateSlider(e,t){this.slider.setWidth(e),this.slider.setLeft(t)}_renderDomNode(e,t){this.domNode.setWidth(e),this.domNode.setHeight(t),this.domNode.setLeft(0),this.domNode.setBottom(0)}onDidScroll(e){return this._shouldRender=this._onElementScrollSize(e.scrollWidth)||this._shouldRender,this._shouldRender=this._onElementScrollPosition(e.scrollLeft)||this._shouldRender,this._shouldRender=this._onElementSize(e.width)||this._shouldRender,this._shouldRender}_pointerDownRelativePosition(e,t){return e}_sliderPointerPosition(e){return e.pageX}_sliderOrthogonalPointerPosition(e){return e.pageY}_updateScrollbarSize(e){this.slider.setHeight(e)}writeScrollPosition(e,t){e.scrollLeft=t}updateOptions(e){this.updateScrollbarSize(2===e.horizontal?0:e.horizontalScrollbarSize),this._scrollbarState.setOppositeScrollbarSize(2===e.vertical?0:e.verticalScrollbarSize),this._visibilityController.setVisibility(e.horizontal),this._scrollByPage=e.scrollByPage}},dv=class extends lv{constructor(e,t,s){let i=e.getScrollDimensions(),r=e.getCurrentScrollPosition();if(super({lazyRender:t.lazyRender,host:s,scrollbarState:new cv(t.verticalHasArrows?t.arrowSize:0,2===t.vertical?0:t.verticalScrollbarSize,0,i.height,i.scrollHeight,r.scrollTop),visibility:t.vertical,extraScrollbarClassName:"vertical",scrollable:e,scrollByPage:t.scrollByPage}),t.verticalHasArrows)throw new Error("horizontalHasArrows is not supported in xterm.js");this._createSlider(0,Math.floor((t.verticalScrollbarSize-t.verticalSliderSize)/2),t.verticalSliderSize,void 0)}_updateSlider(e,t){this.slider.setHeight(e),this.slider.setTop(t)}_renderDomNode(e,t){this.domNode.setWidth(t),this.domNode.setHeight(e),this.domNode.setRight(0),this.domNode.setTop(0)}onDidScroll(e){return this._shouldRender=this._onElementScrollSize(e.scrollHeight)||this._shouldRender,this._shouldRender=this._onElementScrollPosition(e.scrollTop)||this._shouldRender,this._shouldRender=this._onElementSize(e.height)||this._shouldRender,this._shouldRender}_pointerDownRelativePosition(e,t){return t}_sliderPointerPosition(e){return e.pageY}_sliderOrthogonalPointerPosition(e){return e.pageX}_updateScrollbarSize(e){this.slider.setWidth(e)}writeScrollPosition(e,t){e.scrollTop=t}updateOptions(e){this.updateScrollbarSize(2===e.vertical?0:e.verticalScrollbarSize),this._scrollbarState.setOppositeScrollbarSize(0),this._visibilityController.setVisibility(e.vertical),this._scrollByPage=e.scrollByPage}},uv=class{constructor(e,t,s){this.timestamp=e,this.deltaX=t,this.deltaY=s,this.score=0}},fv=class{constructor(){this._capacity=5,this._memory=[],this._front=-1,this._rear=-1}isPhysicalMouseWheel(){if(-1===this._front&&-1===this._rear)return!1;let e=1,t=0,s=1,i=this._rear;for(;;){let r=i===this._front?e:Math.pow(2,-s);if(e-=r,t+=this._memory[i].score*r,i===this._front)break;i=(this._capacity+i-1)%this._capacity,s++}return t<=.5}acceptStandardWheelEvent(e){if(Hg){let s=B_(e.browserEvent),i=(t=s,Og.INSTANCE.getZoomFactor(t));this.accept(Date.now(),e.deltaX*i,e.deltaY*i)}else this.accept(Date.now(),e.deltaX,e.deltaY);var t}accept(e,t,s){let i=null,r=new uv(e,t,s);-1===this._front&&-1===this._rear?(this._memory[0]=r,this._front=0,this._rear=0):(i=this._memory[this._rear],this._rear=(this._rear+1)%this._capacity,this._rear===this._front&&(this._front=(this._front+1)%this._capacity),this._memory[this._rear]=r),r.score=this._computeScore(r,i)}_computeScore(e,t){if(Math.abs(e.deltaX)>0&&Math.abs(e.deltaY)>0)return 1;let s=.5;if((!this._isAlmostInt(e.deltaX)||!this._isAlmostInt(e.deltaY))&&(s+=.25),t){let i=Math.abs(e.deltaX),r=Math.abs(e.deltaY),n=Math.abs(t.deltaX),o=Math.abs(t.deltaY),a=Math.max(Math.min(i,n),1),l=Math.max(Math.min(r,o),1),c=Math.max(i,n),h=Math.max(r,o);c%a===0&&h%l===0&&(s-=.5)}return Math.min(Math.max(s,0),1)}_isAlmostInt(e){return Math.abs(Math.round(e)-e)<.01}};fv.INSTANCE=new fv;var pv=fv,mv=class extends ev{constructor(e,t,s){super(),this._onScroll=this._register(new Tg),this.onScroll=this._onScroll.event,this._onWillScroll=this._register(new Tg),this.onWillScroll=this._onWillScroll.event,this._options=function(e){let t={lazyRender:typeof e.lazyRender<"u"&&e.lazyRender,className:typeof e.className<"u"?e.className:"",useShadows:!(typeof e.useShadows<"u")||e.useShadows,handleMouseWheel:!(typeof e.handleMouseWheel<"u")||e.handleMouseWheel,flipAxes:typeof e.flipAxes<"u"&&e.flipAxes,consumeMouseWheelIfScrollbarIsNeeded:typeof e.consumeMouseWheelIfScrollbarIsNeeded<"u"&&e.consumeMouseWheelIfScrollbarIsNeeded,alwaysConsumeMouseWheel:typeof e.alwaysConsumeMouseWheel<"u"&&e.alwaysConsumeMouseWheel,scrollYToX:typeof e.scrollYToX<"u"&&e.scrollYToX,mouseWheelScrollSensitivity:typeof e.mouseWheelScrollSensitivity<"u"?e.mouseWheelScrollSensitivity:1,fastScrollSensitivity:typeof e.fastScrollSensitivity<"u"?e.fastScrollSensitivity:5,scrollPredominantAxis:!(typeof e.scrollPredominantAxis<"u")||e.scrollPredominantAxis,mouseWheelSmoothScroll:!(typeof e.mouseWheelSmoothScroll<"u")||e.mouseWheelSmoothScroll,arrowSize:typeof e.arrowSize<"u"?e.arrowSize:11,listenOnDomNode:typeof e.listenOnDomNode<"u"?e.listenOnDomNode:null,horizontal:typeof e.horizontal<"u"?e.horizontal:1,horizontalScrollbarSize:typeof e.horizontalScrollbarSize<"u"?e.horizontalScrollbarSize:10,horizontalSliderSize:typeof e.horizontalSliderSize<"u"?e.horizontalSliderSize:0,horizontalHasArrows:typeof e.horizontalHasArrows<"u"&&e.horizontalHasArrows,vertical:typeof e.vertical<"u"?e.vertical:1,verticalScrollbarSize:typeof e.verticalScrollbarSize<"u"?e.verticalScrollbarSize:10,verticalHasArrows:typeof e.verticalHasArrows<"u"&&e.verticalHasArrows,verticalSliderSize:typeof e.verticalSliderSize<"u"?e.verticalSliderSize:0,scrollByPage:typeof e.scrollByPage<"u"&&e.scrollByPage};return t.horizontalSliderSize=typeof e.horizontalSliderSize<"u"?e.horizontalSliderSize:t.horizontalScrollbarSize,t.verticalSliderSize=typeof e.verticalSliderSize<"u"?e.verticalSliderSize:t.verticalScrollbarSize,i_&&(t.className+=" mac"),t}(t),this._scrollable=s,this._register(this._scrollable.onScroll(e=>{this._onWillScroll.fire(e),this._onDidScroll(e),this._onScroll.fire(e)}));let i={onMouseWheel:e=>this._onMouseWheel(e),onDragStart:()=>this._onDragStart(),onDragEnd:()=>this._onDragEnd()};this._verticalScrollbar=this._register(new dv(this._scrollable,this._options,i)),this._horizontalScrollbar=this._register(new hv(this._scrollable,this._options,i)),this._domNode=document.createElement("div"),this._domNode.className="xterm-scrollable-element "+this._options.className,this._domNode.setAttribute("role","presentation"),this._domNode.style.position="relative",this._domNode.appendChild(e),this._domNode.appendChild(this._horizontalScrollbar.domNode.domNode),this._domNode.appendChild(this._verticalScrollbar.domNode.domNode),this._options.useShadows?(this._leftShadowDomNode=Y_(document.createElement("div")),this._leftShadowDomNode.setClassName("shadow"),this._domNode.appendChild(this._leftShadowDomNode.domNode),this._topShadowDomNode=Y_(document.createElement("div")),this._topShadowDomNode.setClassName("shadow"),this._domNode.appendChild(this._topShadowDomNode.domNode),this._topLeftShadowDomNode=Y_(document.createElement("div")),this._topLeftShadowDomNode.setClassName("shadow"),this._domNode.appendChild(this._topLeftShadowDomNode.domNode)):(this._leftShadowDomNode=null,this._topShadowDomNode=null,this._topLeftShadowDomNode=null),this._listenOnDomNode=this._options.listenOnDomNode||this._domNode,this._mouseWheelToDispose=[],this._setListeningToMouseWheel(this._options.handleMouseWheel),this.onmouseover(this._listenOnDomNode,e=>this._onMouseOver(e)),this.onmouseleave(this._listenOnDomNode,e=>this._onMouseLeave(e)),this._hideTimeout=this._register(new L_),this._isDragging=!1,this._mouseIsOver=!1,this._shouldRender=!0,this._revealOnScroll=!0}get options(){return this._options}dispose(){this._mouseWheelToDispose=ug(this._mouseWheelToDispose),super.dispose()}getDomNode(){return this._domNode}getOverviewRulerLayoutInfo(){return{parent:this._domNode,insertBefore:this._verticalScrollbar.domNode.domNode}}delegateVerticalScrollbarPointerDown(e){this._verticalScrollbar.delegatePointerDown(e)}getScrollDimensions(){return this._scrollable.getScrollDimensions()}setScrollDimensions(e){this._scrollable.setScrollDimensions(e,!1)}updateClassName(e){this._options.className=e,i_&&(this._options.className+=" mac"),this._domNode.className="xterm-scrollable-element "+this._options.className}updateOptions(e){typeof e.handleMouseWheel<"u"&&(this._options.handleMouseWheel=e.handleMouseWheel,this._setListeningToMouseWheel(this._options.handleMouseWheel)),typeof e.mouseWheelScrollSensitivity<"u"&&(this._options.mouseWheelScrollSensitivity=e.mouseWheelScrollSensitivity),typeof e.fastScrollSensitivity<"u"&&(this._options.fastScrollSensitivity=e.fastScrollSensitivity),typeof e.scrollPredominantAxis<"u"&&(this._options.scrollPredominantAxis=e.scrollPredominantAxis),typeof e.horizontal<"u"&&(this._options.horizontal=e.horizontal),typeof e.vertical<"u"&&(this._options.vertical=e.vertical),typeof e.horizontalScrollbarSize<"u"&&(this._options.horizontalScrollbarSize=e.horizontalScrollbarSize),typeof e.verticalScrollbarSize<"u"&&(this._options.verticalScrollbarSize=e.verticalScrollbarSize),typeof e.scrollByPage<"u"&&(this._options.scrollByPage=e.scrollByPage),this._horizontalScrollbar.updateOptions(this._options),this._verticalScrollbar.updateOptions(this._options),this._options.lazyRender||this._render()}setRevealOnScroll(e){this._revealOnScroll=e}delegateScrollFromMouseWheelEvent(e){this._onMouseWheel(new j_(e))}_setListeningToMouseWheel(e){if(this._mouseWheelToDispose.length>0!==e&&(this._mouseWheelToDispose=ug(this._mouseWheelToDispose),e)){let e=e=>{this._onMouseWheel(new j_(e))};this._mouseWheelToDispose.push($_(this._listenOnDomNode,V_.MOUSE_WHEEL,e,{passive:!1}))}}_onMouseWheel(e){var t;if(null==(t=e.browserEvent)?void 0:t.defaultPrevented)return;let s=pv.INSTANCE;s.acceptStandardWheelEvent(e);let i=!1;if(e.deltaY||e.deltaX){let t=e.deltaY*this._options.mouseWheelScrollSensitivity,r=e.deltaX*this._options.mouseWheelScrollSensitivity;this._options.scrollPredominantAxis&&(this._options.scrollYToX&&r+t===0?r=t=0:Math.abs(t)>=Math.abs(r)?r=0:t=0),this._options.flipAxes&&([t,r]=[r,t]);let n=!i_&&e.browserEvent&&e.browserEvent.shiftKey;(this._options.scrollYToX||n)&&!r&&(r=t,t=0),e.browserEvent&&e.browserEvent.altKey&&(r*=this._options.fastScrollSensitivity,t*=this._options.fastScrollSensitivity);let o=this._scrollable.getFutureScrollPosition(),a={};if(t){let e=50*t,s=o.scrollTop-(e<0?Math.floor(e):Math.ceil(e));this._verticalScrollbar.writeScrollPosition(a,s)}if(r){let e=50*r,t=o.scrollLeft-(e<0?Math.floor(e):Math.ceil(e));this._horizontalScrollbar.writeScrollPosition(a,t)}a=this._scrollable.validateScrollPosition(a),(o.scrollLeft!==a.scrollLeft||o.scrollTop!==a.scrollTop)&&(this._options.mouseWheelSmoothScroll&&s.isPhysicalMouseWheel()?this._scrollable.setScrollPositionSmooth(a):this._scrollable.setScrollPositionNow(a),i=!0)}let r=i;!r&&this._options.alwaysConsumeMouseWheel&&(r=!0),!r&&this._options.consumeMouseWheelIfScrollbarIsNeeded&&(this._verticalScrollbar.isNeeded()||this._horizontalScrollbar.isNeeded())&&(r=!0),r&&(e.preventDefault(),e.stopPropagation())}_onDidScroll(e){this._shouldRender=this._horizontalScrollbar.onDidScroll(e)||this._shouldRender,this._shouldRender=this._verticalScrollbar.onDidScroll(e)||this._shouldRender,this._options.useShadows&&(this._shouldRender=!0),this._revealOnScroll&&this._reveal(),this._options.lazyRender||this._render()}renderNow(){if(!this._options.lazyRender)throw new Error("Please use `lazyRender` together with `renderNow`!");this._render()}_render(){if(this._shouldRender&&(this._shouldRender=!1,this._horizontalScrollbar.render(),this._verticalScrollbar.render(),this._options.useShadows)){let e=this._scrollable.getCurrentScrollPosition(),t=e.scrollTop>0,s=e.scrollLeft>0,i=s?" left":"",r=t?" top":"",n=s||t?" top-left-corner":"";this._leftShadowDomNode.setClassName(`shadow${i}`),this._topShadowDomNode.setClassName(`shadow${r}`),this._topLeftShadowDomNode.setClassName(`shadow${n}${r}${i}`)}}_onDragStart(){this._isDragging=!0,this._reveal()}_onDragEnd(){this._isDragging=!1,this._hide()}_onMouseLeave(e){this._mouseIsOver=!1,this._hide()}_onMouseOver(e){this._mouseIsOver=!0,this._reveal()}_reveal(){this._verticalScrollbar.beginReveal(),this._horizontalScrollbar.beginReveal(),this._scheduleHide()}_hide(){!this._mouseIsOver&&!this._isDragging&&(this._verticalScrollbar.beginHide(),this._horizontalScrollbar.beginHide())}_scheduleHide(){!this._mouseIsOver&&!this._isDragging&&this._hideTimeout.cancelAndSet(()=>this._hide(),500)}},gv=class extends mv{constructor(e,t,s){super(e,t,s)}setScrollPosition(e){e.reuseAnimation?this._scrollable.setScrollPositionSmooth(e,e.reuseAnimation):this._scrollable.setScrollPositionNow(e)}getScrollPosition(){return this._scrollable.getCurrentScrollPosition()}};var _v=class extends gg{constructor(e,t,s,i,r,n,o,a){super(),this._bufferService=s,this._optionsService=o,this._renderService=a,this._onRequestScrollLines=this._register(new Tg),this.onRequestScrollLines=this._onRequestScrollLines.event,this._isSyncing=!1,this._isHandlingScroll=!1,this._suppressOnScrollHandler=!1;let l=this._register(new iv({forceIntegerValues:!1,smoothScrollDuration:this._optionsService.rawOptions.smoothScrollDuration,scheduleAtNextAnimationFrame:e=>H_(i.window,e)}));this._register(this._optionsService.onSpecificOptionChange("smoothScrollDuration",()=>{l.setSmoothScrollDuration(this._optionsService.rawOptions.smoothScrollDuration)})),this._scrollableElement=this._register(new gv(t,{vertical:1,horizontal:2,useShadows:!1,mouseWheelSmoothScroll:!0,...this._getChangeOptions()},l)),this._register(this._optionsService.onMultipleOptionChange(["scrollSensitivity","fastScrollSensitivity","overviewRuler"],()=>this._scrollableElement.updateOptions(this._getChangeOptions()))),this._register(r.onProtocolChange(e=>{this._scrollableElement.updateOptions({handleMouseWheel:!(16&e)})})),this._scrollableElement.setScrollDimensions({height:0,scrollHeight:0}),this._register(yg.runAndSubscribe(n.onChangeColors,()=>{this._scrollableElement.getDomNode().style.backgroundColor=n.colors.background.css})),e.appendChild(this._scrollableElement.getDomNode()),this._register(fg(()=>this._scrollableElement.getDomNode().remove())),this._styleElement=i.mainDocument.createElement("style"),t.appendChild(this._styleElement),this._register(fg(()=>this._styleElement.remove())),this._register(yg.runAndSubscribe(n.onChangeColors,()=>{this._styleElement.textContent=[".xterm .xterm-scrollable-element > .scrollbar > .slider {",` background: ${n.colors.scrollbarSliderBackground.css};`,"}",".xterm .xterm-scrollable-element > .scrollbar > .slider:hover {",` background: ${n.colors.scrollbarSliderHoverBackground.css};`,"}",".xterm .xterm-scrollable-element > .scrollbar > .slider.active {",` background: ${n.colors.scrollbarSliderActiveBackground.css};`,"}"].join("\n")})),this._register(this._bufferService.onResize(()=>this.queueSync())),this._register(this._bufferService.buffers.onBufferActivate(()=>{this._latestYDisp=void 0,this.queueSync()})),this._register(this._bufferService.onScroll(()=>this._sync())),this._register(this._scrollableElement.onScroll(e=>this._handleScroll(e)))}scrollLines(e){let t=this._scrollableElement.getScrollPosition();this._scrollableElement.setScrollPosition({reuseAnimation:!0,scrollTop:t.scrollTop+e*this._renderService.dimensions.css.cell.height})}scrollToLine(e,t){t&&(this._latestYDisp=e),this._scrollableElement.setScrollPosition({reuseAnimation:!t,scrollTop:e*this._renderService.dimensions.css.cell.height})}_getChangeOptions(){var e;return{mouseWheelScrollSensitivity:this._optionsService.rawOptions.scrollSensitivity,fastScrollSensitivity:this._optionsService.rawOptions.fastScrollSensitivity,verticalScrollbarSize:(null==(e=this._optionsService.rawOptions.overviewRuler)?void 0:e.width)||14}}queueSync(e){void 0!==e&&(this._latestYDisp=e),void 0===this._queuedAnimationFrame&&(this._queuedAnimationFrame=this._renderService.addRefreshCallback(()=>{this._queuedAnimationFrame=void 0,this._sync(this._latestYDisp)}))}_sync(e=this._bufferService.buffer.ydisp){!this._renderService||this._isSyncing||(this._isSyncing=!0,this._suppressOnScrollHandler=!0,this._scrollableElement.setScrollDimensions({height:this._renderService.dimensions.css.canvas.height,scrollHeight:this._renderService.dimensions.css.cell.height*this._bufferService.buffer.lines.length}),this._suppressOnScrollHandler=!1,e!==this._latestYDisp&&this._scrollableElement.setScrollPosition({scrollTop:e*this._renderService.dimensions.css.cell.height}),this._isSyncing=!1)}_handleScroll(e){if(!this._renderService||this._isHandlingScroll||this._suppressOnScrollHandler)return;this._isHandlingScroll=!0;let t=Math.round(e.scrollTop/this._renderService.dimensions.css.cell.height),s=t-this._bufferService.buffer.ydisp;0!==s&&(this._latestYDisp=t,this._onRequestScrollLines.fire(s)),this._isHandlingScroll=!1}};_v=um([fm(2,Im),fm(3,Ym),fm(4,Bm),fm(5,Qm),fm(6,Hm),fm(7,Gm)],_v);var vv=class extends gg{constructor(e,t,s,i,r){super(),this._screenElement=e,this._bufferService=t,this._coreBrowserService=s,this._decorationService=i,this._renderService=r,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement("div"),this._container.classList.add("xterm-decoration-container"),this._screenElement.appendChild(this._container),this._register(this._renderService.onRenderedViewportChange(()=>this._doRefreshDecorations())),this._register(this._renderService.onDimensionsChange(()=>{this._dimensionsChanged=!0,this._queueRefresh()})),this._register(this._coreBrowserService.onDprChange(()=>this._queueRefresh())),this._register(this._bufferService.buffers.onBufferActivate(()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt})),this._register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh())),this._register(this._decorationService.onDecorationRemoved(e=>this._removeDecoration(e))),this._register(fg(()=>{this._container.remove(),this._decorationElements.clear()}))}_queueRefresh(){void 0===this._animationFrame&&(this._animationFrame=this._renderService.addRefreshCallback(()=>{this._doRefreshDecorations(),this._animationFrame=void 0}))}_doRefreshDecorations(){for(let e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){var t;let s=this._coreBrowserService.mainDocument.createElement("div");s.classList.add("xterm-decoration"),s.classList.toggle("xterm-decoration-top-layer","top"===(null==(t=null==e?void 0:e.options)?void 0:t.layer)),s.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,s.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+"px",s.style.top=(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+"px",s.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;let i=e.options.x??0;return i&&i>this._bufferService.cols&&(s.style.display="none"),this._refreshXPosition(e,s),s}_refreshStyle(e){let t=e.marker.line-this._bufferService.buffers.active.ydisp;if(t<0||t>=this._bufferService.rows)e.element&&(e.element.style.display="none",e.onRenderEmitter.fire(e.element));else{let s=this._decorationElements.get(e);s||(s=this._createElement(e),e.element=s,this._decorationElements.set(e,s),this._container.appendChild(s),e.onDispose(()=>{this._decorationElements.delete(e),s.remove()})),s.style.display=this._altBufferIsActive?"none":"block",this._altBufferIsActive||(s.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,s.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+"px",s.style.top=t*this._renderService.dimensions.css.cell.height+"px",s.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`),e.onRenderEmitter.fire(s)}}_refreshXPosition(e,t=e.element){if(!t)return;let s=e.options.x??0;"right"===(e.options.anchor||"left")?t.style.right=s?s*this._renderService.dimensions.css.cell.width+"px":"":t.style.left=s?s*this._renderService.dimensions.css.cell.width+"px":""}_removeDecoration(e){var t;null==(t=this._decorationElements.get(e))||t.remove(),this._decorationElements.delete(e),e.dispose()}};vv=um([fm(1,Im),fm(2,Ym),fm(3,Km),fm(4,Gm)],vv);var xv,yv,bv,wv,Sv,Cv=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(e){if(e.options.overviewRulerOptions){for(let t of this._zones)if(t.color===e.options.overviewRulerOptions.color&&t.position===e.options.overviewRulerOptions.position){if(this._lineIntersectsZone(t,e.marker.line))return;if(this._lineAdjacentToZone(t,e.marker.line,e.options.overviewRulerOptions.position))return void this._addLineToZone(t,e.marker.line)}if(this._zonePoolIndex<this._zonePool.length)return this._zonePool[this._zonePoolIndex].color=e.options.overviewRulerOptions.color,this._zonePool[this._zonePoolIndex].position=e.options.overviewRulerOptions.position,this._zonePool[this._zonePoolIndex].startBufferLine=e.marker.line,this._zonePool[this._zonePoolIndex].endBufferLine=e.marker.line,void this._zones.push(this._zonePool[this._zonePoolIndex++]);this._zones.push({color:e.options.overviewRulerOptions.color,position:e.options.overviewRulerOptions.position,startBufferLine:e.marker.line,endBufferLine:e.marker.line}),this._zonePool.push(this._zones[this._zones.length-1]),this._zonePoolIndex++}}setPadding(e){this._linePadding=e}_lineIntersectsZone(e,t){return t>=e.startBufferLine&&t<=e.endBufferLine}_lineAdjacentToZone(e,t,s){return t>=e.startBufferLine-this._linePadding[s||"full"]&&t<=e.endBufferLine+this._linePadding[s||"full"]}_addLineToZone(e,t){e.startBufferLine=Math.min(e.startBufferLine,t),e.endBufferLine=Math.max(e.endBufferLine,t)}},kv={full:0,left:0,center:0,right:0},Nv={full:0,left:0,center:0,right:0},Ev={full:0,left:0,center:0,right:0},jv=class extends gg{constructor(e,t,s,i,r,n,o,a){var l;super(),this._viewportElement=e,this._screenElement=t,this._bufferService=s,this._decorationService=i,this._renderService=r,this._optionsService=n,this._themeService=o,this._coreBrowserService=a,this._colorZoneStore=new Cv,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=this._coreBrowserService.mainDocument.createElement("canvas"),this._canvas.classList.add("xterm-decoration-overview-ruler"),this._refreshCanvasDimensions(),null==(l=this._viewportElement.parentElement)||l.insertBefore(this._canvas,this._viewportElement),this._register(fg(()=>{var e;return null==(e=this._canvas)?void 0:e.remove()}));let c=this._canvas.getContext("2d");if(!c)throw new Error("Ctx cannot be null");this._ctx=c,this._register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh(void 0,!0))),this._register(this._decorationService.onDecorationRemoved(()=>this._queueRefresh(void 0,!0))),this._register(this._renderService.onRenderedViewportChange(()=>this._queueRefresh())),this._register(this._bufferService.buffers.onBufferActivate(()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?"none":"block"})),this._register(this._bufferService.onScroll(()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())})),this._register(this._renderService.onRender(()=>{(!this._containerHeight||this._containerHeight!==this._screenElement.clientHeight)&&(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)})),this._register(this._coreBrowserService.onDprChange(()=>this._queueRefresh(!0))),this._register(this._optionsService.onSpecificOptionChange("overviewRuler",()=>this._queueRefresh(!0))),this._register(this._themeService.onChangeColors(()=>this._queueRefresh())),this._queueRefresh(!0)}get _width(){var e;return(null==(e=this._optionsService.options.overviewRuler)?void 0:e.width)||0}_refreshDrawConstants(){let e=Math.floor((this._canvas.width-1)/3),t=Math.ceil((this._canvas.width-1)/3);Nv.full=this._canvas.width,Nv.left=e,Nv.center=t,Nv.right=e,this._refreshDrawHeightConstants(),Ev.full=1,Ev.left=1,Ev.center=1+Nv.left,Ev.right=1+Nv.left+Nv.center}_refreshDrawHeightConstants(){kv.full=Math.round(2*this._coreBrowserService.dpr);let e=this._canvas.height/this._bufferService.buffer.lines.length,t=Math.round(Math.max(Math.min(e,12),6)*this._coreBrowserService.dpr);kv.left=t,kv.center=t,kv.right=t}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*kv.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*kv.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*kv.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*kv.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowserService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowserService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(let t of this._decorationService.decorations)this._colorZoneStore.addDecoration(t);this._ctx.lineWidth=1,this._renderRulerOutline();let e=this._colorZoneStore.zones;for(let t of e)"full"!==t.position&&this._renderColorZone(t);for(let t of e)"full"===t.position&&this._renderColorZone(t);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderRulerOutline(){this._ctx.fillStyle=this._themeService.colors.overviewRulerBorder.css,this._ctx.fillRect(0,0,1,this._canvas.height),this._optionsService.rawOptions.overviewRuler.showTopBorder&&this._ctx.fillRect(1,0,this._canvas.width-1,1),this._optionsService.rawOptions.overviewRuler.showBottomBorder&&this._ctx.fillRect(1,this._canvas.height-1,this._canvas.width-1,this._canvas.height)}_renderColorZone(e){this._ctx.fillStyle=e.color,this._ctx.fillRect(Ev[e.position||"full"],Math.round((this._canvas.height-1)*(e.startBufferLine/this._bufferService.buffers.active.lines.length)-kv[e.position||"full"]/2),Nv[e.position||"full"],Math.round((this._canvas.height-1)*((e.endBufferLine-e.startBufferLine)/this._bufferService.buffers.active.lines.length)+kv[e.position||"full"]))}_queueRefresh(e,t){this._shouldUpdateDimensions=e||this._shouldUpdateDimensions,this._shouldUpdateAnchor=t||this._shouldUpdateAnchor,void 0===this._animationFrame&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._refreshDecorations(),this._animationFrame=void 0}))}};jv=um([fm(2,Im),fm(3,Km),fm(4,Gm),fm(5,Hm),fm(6,Qm),fm(7,Ym)],jv),(yv=xv||(xv={})).NUL="\0",yv.SOH="",yv.STX="",yv.ETX="",yv.EOT="",yv.ENQ="",yv.ACK="",yv.BEL="",yv.BS="\b",yv.HT="\t",yv.LF="\n",yv.VT="\v",yv.FF="\f",yv.CR="\r",yv.SO="",yv.SI="",yv.DLE="",yv.DC1="",yv.DC2="",yv.DC3="",yv.DC4="",yv.NAK="",yv.SYN="",yv.ETB="",yv.CAN="",yv.EM="",yv.SUB="",yv.ESC="",yv.FS="",yv.GS="",yv.RS="",yv.US="",yv.SP=" ",yv.DEL="",(wv=bv||(bv={})).PAD="€",wv.HOP="",wv.BPH="‚",wv.NBH="ƒ",wv.IND="„",wv.NEL="…",wv.SSA="†",wv.ESA="‡",wv.HTS="ˆ",wv.HTJ="‰",wv.VTS="Š",wv.PLD="‹",wv.PLU="Œ",wv.RI="",wv.SS2="Ž",wv.SS3="",wv.DCS="",wv.PU1="‘",wv.PU2="’",wv.STS="“",wv.CCH="”",wv.MW="•",wv.SPA="–",wv.EPA="—",wv.SOS="˜",wv.SGCI="™",wv.SCI="š",wv.CSI="›",wv.ST="œ",wv.OSC="",wv.PM="ž",wv.APC="Ÿ",(Sv||(Sv={})).ST=`${xv.ESC}\\`;var Mv=class{constructor(e,t,s,i,r,n){this._textarea=e,this._compositionView=t,this._bufferService=s,this._optionsService=i,this._coreService=r,this._renderService=n,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=""}get isComposing(){return this._isComposing}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent="",this._dataAlreadySent="",this._compositionView.classList.add("active")}compositionupdate(e){this._compositionView.textContent=e.data,this.updateCompositionElements(),setTimeout(()=>{this._compositionPosition.end=this._textarea.value.length},0)}compositionend(){this._finalizeComposition(!0)}keydown(e){if(this._isComposing||this._isSendingComposition){if(20===e.keyCode||229===e.keyCode||16===e.keyCode||17===e.keyCode||18===e.keyCode)return!1;this._finalizeComposition(!1)}return 229!==e.keyCode||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(e){if(this._compositionView.classList.remove("active"),this._isComposing=!1,e){let e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout(()=>{if(this._isSendingComposition){let t;this._isSendingComposition=!1,e.start+=this._dataAlreadySent.length,t=this._isComposing?this._textarea.value.substring(e.start,this._compositionPosition.start):this._textarea.value.substring(e.start),t.length>0&&this._coreService.triggerDataEvent(t,!0)}},0)}else{this._isSendingComposition=!1;let e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){let e=this._textarea.value;setTimeout(()=>{if(!this._isComposing){let t=this._textarea.value,s=t.replace(e,"");this._dataAlreadySent=s,t.length>e.length?this._coreService.triggerDataEvent(s,!0):t.length<e.length?this._coreService.triggerDataEvent(`${xv.DEL}`,!0):t.length===e.length&&t!==e&&this._coreService.triggerDataEvent(t,!0)}},0)}updateCompositionElements(e){if(this._isComposing){if(this._bufferService.buffer.isCursorInViewport){let e=Math.min(this._bufferService.buffer.x,this._bufferService.cols-1),t=this._renderService.dimensions.css.cell.height,s=this._bufferService.buffer.y*this._renderService.dimensions.css.cell.height,i=e*this._renderService.dimensions.css.cell.width;this._compositionView.style.left=i+"px",this._compositionView.style.top=s+"px",this._compositionView.style.height=t+"px",this._compositionView.style.lineHeight=t+"px",this._compositionView.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._compositionView.style.fontSize=this._optionsService.rawOptions.fontSize+"px";let r=this._compositionView.getBoundingClientRect();this._textarea.style.left=i+"px",this._textarea.style.top=s+"px",this._textarea.style.width=Math.max(r.width,1)+"px",this._textarea.style.height=Math.max(r.height,1)+"px",this._textarea.style.lineHeight=r.height+"px"}e||setTimeout(()=>this.updateCompositionElements(!0),0)}}};Mv=um([fm(2,Im),fm(3,Hm),fm(4,Om),fm(5,Gm)],Mv);var Dv,Rv,Pv,Lv,Tv,Iv=0,Bv=0,Ov=0,Av=0,zv={css:"#00000000",rgba:0};function $v(e){let t=e.toString(16);return t.length<2?"0"+t:t}function Hv(e,t){return e<t?(t+.05)/(e+.05):(e+.05)/(t+.05)}(e=>{e.toCss=function(e,t,s,i){return void 0!==i?`#${$v(e)}${$v(t)}${$v(s)}${$v(i)}`:`#${$v(e)}${$v(t)}${$v(s)}`},e.toRgba=function(e,t,s,i=255){return(e<<24|t<<16|s<<8|i)>>>0},e.toColor=function(t,s,i,r){return{css:e.toCss(t,s,i,r),rgba:e.toRgba(t,s,i,r)}}})(Dv||(Dv={})),(e=>{function t(e,t){return Av=Math.round(255*t),[Iv,Bv,Ov]=Tv.toChannels(e.rgba),{css:Dv.toCss(Iv,Bv,Ov,Av),rgba:Dv.toRgba(Iv,Bv,Ov,Av)}}e.blend=function(e,t){if(1===(Av=(255&t.rgba)/255))return{css:t.css,rgba:t.rgba};let s=t.rgba>>24&255,i=t.rgba>>16&255,r=t.rgba>>8&255,n=e.rgba>>24&255,o=e.rgba>>16&255,a=e.rgba>>8&255;return Iv=n+Math.round((s-n)*Av),Bv=o+Math.round((i-o)*Av),Ov=a+Math.round((r-a)*Av),{css:Dv.toCss(Iv,Bv,Ov),rgba:Dv.toRgba(Iv,Bv,Ov)}},e.isOpaque=function(e){return!(255&~e.rgba)},e.ensureContrastRatio=function(e,t,s){let i=Tv.ensureContrastRatio(e.rgba,t.rgba,s);if(i)return Dv.toColor(i>>24&255,i>>16&255,i>>8&255)},e.opaque=function(e){let t=(255|e.rgba)>>>0;return[Iv,Bv,Ov]=Tv.toChannels(t),{css:Dv.toCss(Iv,Bv,Ov),rgba:t}},e.opacity=t,e.multiplyOpacity=function(e,s){return t(e,(Av=255&e.rgba)*s/255)},e.toColorRGB=function(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}})(Rv||(Rv={})),(e=>{let t,s;try{let e=document.createElement("canvas");e.width=1,e.height=1;let i=e.getContext("2d",{willReadFrequently:!0});i&&(t=i,t.globalCompositeOperation="copy",s=t.createLinearGradient(0,0,1,1))}catch{}e.toColor=function(e){if(e.match(/#[\da-f]{3,8}/i))switch(e.length){case 4:return Iv=parseInt(e.slice(1,2).repeat(2),16),Bv=parseInt(e.slice(2,3).repeat(2),16),Ov=parseInt(e.slice(3,4).repeat(2),16),Dv.toColor(Iv,Bv,Ov);case 5:return Iv=parseInt(e.slice(1,2).repeat(2),16),Bv=parseInt(e.slice(2,3).repeat(2),16),Ov=parseInt(e.slice(3,4).repeat(2),16),Av=parseInt(e.slice(4,5).repeat(2),16),Dv.toColor(Iv,Bv,Ov,Av);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}let i=e.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(i)return Iv=parseInt(i[1]),Bv=parseInt(i[2]),Ov=parseInt(i[3]),Av=Math.round(255*(void 0===i[5]?1:parseFloat(i[5]))),Dv.toColor(Iv,Bv,Ov,Av);if(!t||!s)throw new Error("css.toColor: Unsupported css format");if(t.fillStyle=s,t.fillStyle=e,"string"!=typeof t.fillStyle)throw new Error("css.toColor: Unsupported css format");if(t.fillRect(0,0,1,1),[Iv,Bv,Ov,Av]=t.getImageData(0,0,1,1).data,255!==Av)throw new Error("css.toColor: Unsupported css format");return{rgba:Dv.toRgba(Iv,Bv,Ov,Av),css:e}}})(Pv||(Pv={})),(e=>{function t(e,t,s){let i=e/255,r=t/255,n=s/255;return.2126*(i<=.03928?i/12.92:Math.pow((i+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))}e.relativeLuminance=function(e){return t(e>>16&255,e>>8&255,255&e)},e.relativeLuminance2=t})(Lv||(Lv={})),(e=>{function t(e,t,s){let i=e>>24&255,r=e>>16&255,n=e>>8&255,o=t>>24&255,a=t>>16&255,l=t>>8&255,c=Hv(Lv.relativeLuminance2(o,a,l),Lv.relativeLuminance2(i,r,n));for(;c<s&&(o>0||a>0||l>0);)o-=Math.max(0,Math.ceil(.1*o)),a-=Math.max(0,Math.ceil(.1*a)),l-=Math.max(0,Math.ceil(.1*l)),c=Hv(Lv.relativeLuminance2(o,a,l),Lv.relativeLuminance2(i,r,n));return(o<<24|a<<16|l<<8|255)>>>0}function s(e,t,s){let i=e>>24&255,r=e>>16&255,n=e>>8&255,o=t>>24&255,a=t>>16&255,l=t>>8&255,c=Hv(Lv.relativeLuminance2(o,a,l),Lv.relativeLuminance2(i,r,n));for(;c<s&&(o<255||a<255||l<255);)o=Math.min(255,o+Math.ceil(.1*(255-o))),a=Math.min(255,a+Math.ceil(.1*(255-a))),l=Math.min(255,l+Math.ceil(.1*(255-l))),c=Hv(Lv.relativeLuminance2(o,a,l),Lv.relativeLuminance2(i,r,n));return(o<<24|a<<16|l<<8|255)>>>0}e.blend=function(e,t){if(1===(Av=(255&t)/255))return t;let s=t>>24&255,i=t>>16&255,r=t>>8&255,n=e>>24&255,o=e>>16&255,a=e>>8&255;return Iv=n+Math.round((s-n)*Av),Bv=o+Math.round((i-o)*Av),Ov=a+Math.round((r-a)*Av),Dv.toRgba(Iv,Bv,Ov)},e.ensureContrastRatio=function(e,i,r){let n=Lv.relativeLuminance(e>>8),o=Lv.relativeLuminance(i>>8);if(Hv(n,o)<r){if(o<n){let o=t(e,i,r),a=Hv(n,Lv.relativeLuminance(o>>8));if(a<r){let t=s(e,i,r);return a>Hv(n,Lv.relativeLuminance(t>>8))?o:t}return o}let a=s(e,i,r),l=Hv(n,Lv.relativeLuminance(a>>8));if(l<r){let s=t(e,i,r);return l>Hv(n,Lv.relativeLuminance(s>>8))?a:s}return a}},e.reduceLuminance=t,e.increaseLuminance=s,e.toChannels=function(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}})(Tv||(Tv={}));var Wv=class extends jm{constructor(e,t,s){super(),this.content=0,this.combinedData="",this.fg=e.fg,this.bg=e.bg,this.combinedData=t,this._width=s}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(e){throw new Error("not implemented")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}},Fv=class{constructor(e){this._bufferService=e,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new Dm}register(e){let t={id:this._nextCharacterJoinerId++,handler:e};return this._characterJoiners.push(t),t.id}deregister(e){for(let t=0;t<this._characterJoiners.length;t++)if(this._characterJoiners[t].id===e)return this._characterJoiners.splice(t,1),!0;return!1}getJoinedCharacters(e){if(0===this._characterJoiners.length)return[];let t=this._bufferService.buffer.lines.get(e);if(!t||0===t.length)return[];let s=[],i=t.translateToString(!0),r=0,n=0,o=0,a=t.getFg(0),l=t.getBg(0);for(let c=0;c<t.getTrimmedLength();c++)if(t.loadCell(c,this._workCell),0!==this._workCell.getWidth()){if(this._workCell.fg!==a||this._workCell.bg!==l){if(c-r>1){let e=this._getJoinedRanges(i,o,n,t,r);for(let t=0;t<e.length;t++)s.push(e[t])}r=c,o=n,a=this._workCell.fg,l=this._workCell.bg}n+=this._workCell.getChars().length||1}if(this._bufferService.cols-r>1){let e=this._getJoinedRanges(i,o,n,t,r);for(let t=0;t<e.length;t++)s.push(e[t])}return s}_getJoinedRanges(e,t,s,i,r){let n=e.substring(t,s),o=[];try{o=this._characterJoiners[0].handler(n)}catch(a){console.error(a)}for(let c=1;c<this._characterJoiners.length;c++)try{let e=this._characterJoiners[c].handler(n);for(let t=0;t<e.length;t++)Fv._mergeRanges(o,e[t])}catch(l){console.error(l)}return this._stringRangesToCellRanges(o,i,r),o}_stringRangesToCellRanges(e,t,s){let i=0,r=!1,n=0,o=e[i];if(o){for(let a=s;a<this._bufferService.cols;a++){let s=t.getWidth(a),l=t.getString(a).length||1;if(0!==s){if(!r&&o[0]<=n&&(o[0]=a,r=!0),o[1]<=n){if(o[1]=a,o=e[++i],!o)break;o[0]<=n?(o[0]=a,r=!0):r=!1}n+=l}}o&&(o[1]=this._bufferService.cols)}}static _mergeRanges(e,t){let s=!1;for(let i=0;i<e.length;i++){let r=e[i];if(s){if(t[1]<=r[0])return e[i-1][1]=t[1],e;if(t[1]<=r[1])return e[i-1][1]=Math.max(t[1],r[1]),e.splice(i,1),e;e.splice(i,1),i--}else{if(t[1]<=r[0])return e.splice(i,0,t),e;if(t[1]<=r[1])return r[0]=Math.min(t[0],r[0]),e;t[0]<r[1]&&(r[0]=Math.min(t[0],r[0]),s=!0)}}return s?e[e.length-1][1]=t[1]:e.push(t),e}};Fv=um([fm(0,Im)],Fv);var Kv=class{constructor(e,t,s,i,r,n,o){this._document=e,this._characterJoinerService=t,this._optionsService=s,this._coreBrowserService=i,this._coreService=r,this._decorationService=n,this._themeService=o,this._workCell=new Dm,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(e,t,s){this._selectionStart=e,this._selectionEnd=t,this._columnSelectMode=s}createRow(e,t,s,i,r,n,o,a,l,c,h){let d=[],u=this._characterJoinerService.getJoinedCharacters(t),f=this._themeService.colors,p=e.getNoBgTrimmedLength();s&&p<n+1&&(p=n+1);let m,g=0,_="",v=0,x=0,y=0,b=0,w=!1,S=0,C=!1,k=0,N=0,E=[],j=-1!==c&&-1!==h;for(let M=0;M<p;M++){e.loadCell(M,this._workCell);let p=this._workCell.getWidth();if(0===p)continue;let D=!1,R=M>=N,P=M,L=this._workCell;if(u.length>0&&M===u[0][0]&&R){let i=u.shift(),r=this._isCellInSelection(i[0],t);for(v=i[0]+1;v<i[1];v++)R&&(R=r===this._isCellInSelection(v,t));R&&(R=!s||n<i[0]||n>=i[1]),R?(D=!0,L=new Wv(this._workCell,e.translateToString(!0,i[0],i[1]),i[1]-i[0]),P=i[1]-1,p=L.getWidth()):N=i[1]}let T=this._isCellInSelection(M,t),I=s&&M===n,B=j&&M>=c&&M<=h,O=!1;this._decorationService.forEachDecorationAtCell(M,t,void 0,e=>{O=!0});let A=L.getChars()||Em;if(" "===A&&(L.isUnderline()||L.isOverline())&&(A=" "),k=p*a-l.get(A,L.isBold(),L.isItalic()),m){if(g&&(T&&C||!T&&!C&&L.bg===x)&&(T&&C&&f.selectionForeground||L.fg===y)&&L.extended.ext===b&&B===w&&k===S&&!I&&!D&&!O&&R){L.isInvisible()?_+=Em:_+=A,g++;continue}g&&(m.textContent=_),m=this._document.createElement("span"),g=0,_=""}else m=this._document.createElement("span");if(x=L.bg,y=L.fg,b=L.extended.ext,w=B,S=k,C=T,D&&n>=M&&n<=P&&(n=M),!this._coreService.isCursorHidden&&I&&this._coreService.isCursorInitialized)if(E.push("xterm-cursor"),this._coreBrowserService.isFocused)o&&E.push("xterm-cursor-blink"),E.push("bar"===i?"xterm-cursor-bar":"underline"===i?"xterm-cursor-underline":"xterm-cursor-block");else if(r)switch(r){case"outline":E.push("xterm-cursor-outline");break;case"block":E.push("xterm-cursor-block");break;case"bar":E.push("xterm-cursor-bar");break;case"underline":E.push("xterm-cursor-underline")}if(L.isBold()&&E.push("xterm-bold"),L.isItalic()&&E.push("xterm-italic"),L.isDim()&&E.push("xterm-dim"),_=L.isInvisible()?Em:L.getChars()||Em,L.isUnderline()&&(E.push(`xterm-underline-${L.extended.underlineStyle}`)," "===_&&(_=" "),!L.isUnderlineColorDefault()))if(L.isUnderlineColorRGB())m.style.textDecorationColor=`rgb(${jm.toColorRGB(L.getUnderlineColor()).join(",")})`;else{let e=L.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&L.isBold()&&e<8&&(e+=8),m.style.textDecorationColor=f.ansi[e].css}L.isOverline()&&(E.push("xterm-overline")," "===_&&(_=" ")),L.isStrikethrough()&&E.push("xterm-strikethrough"),B&&(m.style.textDecoration="underline");let z=L.getFgColor(),$=L.getFgColorMode(),H=L.getBgColor(),W=L.getBgColorMode(),F=!!L.isInverse();if(F){let e=z;z=H,H=e;let t=$;$=W,W=t}let K,V,U,q=!1;switch(this._decorationService.forEachDecorationAtCell(M,t,void 0,e=>{"top"!==e.options.layer&&q||(e.backgroundColorRGB&&(W=50331648,H=e.backgroundColorRGB.rgba>>8&16777215,K=e.backgroundColorRGB),e.foregroundColorRGB&&($=50331648,z=e.foregroundColorRGB.rgba>>8&16777215,V=e.foregroundColorRGB),q="top"===e.options.layer)}),!q&&T&&(K=this._coreBrowserService.isFocused?f.selectionBackgroundOpaque:f.selectionInactiveBackgroundOpaque,H=K.rgba>>8&16777215,W=50331648,q=!0,f.selectionForeground&&($=50331648,z=f.selectionForeground.rgba>>8&16777215,V=f.selectionForeground)),q&&E.push("xterm-decoration-top"),W){case 16777216:case 33554432:U=f.ansi[H],E.push(`xterm-bg-${H}`);break;case 50331648:U=Dv.toColor(H>>16,H>>8&255,255&H),this._addStyle(m,`background-color:#${Vv((H>>>0).toString(16),"0",6)}`);break;default:F?(U=f.foreground,E.push("xterm-bg-257")):U=f.background}switch(K||L.isDim()&&(K=Rv.multiplyOpacity(U,.5)),$){case 16777216:case 33554432:L.isBold()&&z<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(z+=8),this._applyMinimumContrast(m,U,f.ansi[z],L,K,void 0)||E.push(`xterm-fg-${z}`);break;case 50331648:let e=Dv.toColor(z>>16&255,z>>8&255,255&z);this._applyMinimumContrast(m,U,e,L,K,V)||this._addStyle(m,`color:#${Vv(z.toString(16),"0",6)}`);break;default:this._applyMinimumContrast(m,U,f.foreground,L,K,V)||F&&E.push("xterm-fg-257")}E.length&&(m.className=E.join(" "),E.length=0),I||D||O||!R?m.textContent=_:g++,k!==this.defaultSpacing&&(m.style.letterSpacing=`${k}px`),d.push(m),M=P}return m&&g&&(m.textContent=_),d}_applyMinimumContrast(e,t,s,i,r,n){if(1===this._optionsService.rawOptions.minimumContrastRatio||(function(e){return 57508<=e&&e<=57558}(o=i.getCode())||function(e){return 9472<=e&&e<=9631}(o)))return!1;var o;let a,l=this._getContrastCache(i);if(!r&&!n&&(a=l.getColor(t.rgba,s.rgba)),void 0===a){let e=this._optionsService.rawOptions.minimumContrastRatio/(i.isDim()?2:1);a=Rv.ensureContrastRatio(r||t,n||s,e),l.setColor((r||t).rgba,(n||s).rgba,a??null)}return!!a&&(this._addStyle(e,`color:${a.css}`),!0)}_getContrastCache(e){return e.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(e,t){e.setAttribute("style",`${e.getAttribute("style")||""}${t};`)}_isCellInSelection(e,t){let s=this._selectionStart,i=this._selectionEnd;return!(!s||!i)&&(this._columnSelectMode?s[0]<=i[0]?e>=s[0]&&t>=s[1]&&e<i[0]&&t<=i[1]:e<s[0]&&t>=s[1]&&e>=i[0]&&t<=i[1]:t>s[1]&&t<i[1]||s[1]===i[1]&&t===s[1]&&e>=s[0]&&e<i[0]||s[1]<i[1]&&t===i[1]&&e<i[0]||s[1]<i[1]&&t===s[1]&&e>=s[0])}};function Vv(e,t,s){for(;e.length<s;)e=t+e;return e}Kv=um([fm(1,Jm),fm(2,Hm),fm(3,Ym),fm(4,Om),fm(5,Km),fm(6,Qm)],Kv);var Uv=class{constructor(e,t){this._flat=new Float32Array(256),this._font="",this._fontSize=0,this._weight="normal",this._weightBold="bold",this._measureElements=[],this._container=e.createElement("div"),this._container.classList.add("xterm-width-cache-measure-container"),this._container.setAttribute("aria-hidden","true"),this._container.style.whiteSpace="pre",this._container.style.fontKerning="none";let s=e.createElement("span");s.classList.add("xterm-char-measure-element");let i=e.createElement("span");i.classList.add("xterm-char-measure-element"),i.style.fontWeight="bold";let r=e.createElement("span");r.classList.add("xterm-char-measure-element"),r.style.fontStyle="italic";let n=e.createElement("span");n.classList.add("xterm-char-measure-element"),n.style.fontWeight="bold",n.style.fontStyle="italic",this._measureElements=[s,i,r,n],this._container.appendChild(s),this._container.appendChild(i),this._container.appendChild(r),this._container.appendChild(n),t.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(e,t,s,i){e===this._font&&t===this._fontSize&&s===this._weight&&i===this._weightBold||(this._font=e,this._fontSize=t,this._weight=s,this._weightBold=i,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${s}`,this._measureElements[1].style.fontWeight=`${i}`,this._measureElements[2].style.fontWeight=`${s}`,this._measureElements[3].style.fontWeight=`${i}`,this.clear())}get(e,t,s){let i=0;if(!t&&!s&&1===e.length&&(i=e.charCodeAt(0))<256){if(-9999!==this._flat[i])return this._flat[i];let t=this._measure(e,0);return t>0&&(this._flat[i]=t),t}let r=e;t&&(r+="B"),s&&(r+="I");let n=this._holey.get(r);if(void 0===n){let i=0;t&&(i|=1),s&&(i|=2),n=this._measure(e,i),n>0&&this._holey.set(r,n)}return n}_measure(e,t){let s=this._measureElements[t];return s.textContent=e.repeat(32),s.offsetWidth/32}},qv=class{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,s,i=!1){if(this.selectionStart=t,this.selectionEnd=s,!t||!s||t[0]===s[0]&&t[1]===s[1])return void this.clear();let r=e.buffers.active.ydisp,n=t[1]-r,o=s[1]-r,a=Math.max(n,0),l=Math.min(o,e.rows-1);a>=e.rows||l<0?this.clear():(this.hasSelection=!0,this.columnSelectMode=i,this.viewportStartRow=n,this.viewportEndRow=o,this.viewportCappedStartRow=a,this.viewportCappedEndRow=l,this.startCol=t[0],this.endCol=s[0])}isCellSelected(e,t,s){return!!this.hasSelection&&(s-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&s>=this.viewportCappedStartRow&&t<this.endCol&&s<=this.viewportCappedEndRow:t<this.startCol&&s>=this.viewportCappedStartRow&&t>=this.endCol&&s<=this.viewportCappedEndRow:s>this.viewportStartRow&&s<this.viewportEndRow||this.viewportStartRow===this.viewportEndRow&&s===this.viewportStartRow&&t>=this.startCol&&t<this.endCol||this.viewportStartRow<this.viewportEndRow&&s===this.viewportEndRow&&t<this.endCol||this.viewportStartRow<this.viewportEndRow&&s===this.viewportStartRow&&t>=this.startCol)}};var Yv="xterm-dom-renderer-owner-",Xv="xterm-rows",Gv="xterm-fg-",Zv="xterm-bg-",Jv="xterm-focus",Qv="xterm-selection",ex=1,tx=class extends gg{constructor(e,t,s,i,r,n,o,a,l,c,h,d,u,f){super(),this._terminal=e,this._document=t,this._element=s,this._screenElement=i,this._viewportElement=r,this._helperContainer=n,this._linkifier2=o,this._charSizeService=l,this._optionsService=c,this._bufferService=h,this._coreService=d,this._coreBrowserService=u,this._themeService=f,this._terminalClass=ex++,this._rowElements=[],this._selectionRenderModel=new qv,this.onRequestRedraw=this._register(new Tg).event,this._rowContainer=this._document.createElement("div"),this._rowContainer.classList.add(Xv),this._rowContainer.style.lineHeight="normal",this._rowContainer.setAttribute("aria-hidden","true"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=this._document.createElement("div"),this._selectionContainer.classList.add(Qv),this._selectionContainer.setAttribute("aria-hidden","true"),this.dimensions={css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}},this._updateDimensions(),this._register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this._register(this._themeService.onChangeColors(e=>this._injectCss(e))),this._injectCss(this._themeService.colors),this._rowFactory=a.createInstance(Kv,document),this._element.classList.add(Yv+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this._register(this._linkifier2.onShowLinkUnderline(e=>this._handleLinkHover(e))),this._register(this._linkifier2.onHideLinkUnderline(e=>this._handleLinkLeave(e))),this._register(fg(()=>{this._element.classList.remove(Yv+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()})),this._widthCache=new Uv(this._document,this._helperContainer),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){let e=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*e,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*e),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/e),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/e),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(let s of this._rowElements)s.style.width=`${this.dimensions.css.canvas.width}px`,s.style.height=`${this.dimensions.css.cell.height}px`,s.style.lineHeight=`${this.dimensions.css.cell.height}px`,s.style.overflow="hidden";this._dimensionsStyleElement||(this._dimensionsStyleElement=this._document.createElement("style"),this._screenElement.appendChild(this._dimensionsStyleElement));let t=`${this._terminalSelector} .${Xv} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=t,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(e){this._themeStyleElement||(this._themeStyleElement=this._document.createElement("style"),this._screenElement.appendChild(this._themeStyleElement));let t=`${this._terminalSelector} .${Xv} { pointer-events: none; color: ${e.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;t+=`${this._terminalSelector} .${Xv} .xterm-dim { color: ${Rv.multiplyOpacity(e.foreground,.5).css};}`,t+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`;let s=`blink_underline_${this._terminalClass}`,i=`blink_bar_${this._terminalClass}`,r=`blink_block_${this._terminalClass}`;t+=`@keyframes ${s} { 50% { border-bottom-style: hidden; }}`,t+=`@keyframes ${i} { 50% { box-shadow: none; }}`,t+=`@keyframes ${r} { 0% { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css}; } 50% { background-color: inherit; color: ${e.cursor.css}; }}`,t+=`${this._terminalSelector} .${Xv}.${Jv} .xterm-cursor.xterm-cursor-blink.xterm-cursor-underline { animation: ${s} 1s step-end infinite;}${this._terminalSelector} .${Xv}.${Jv} .xterm-cursor.xterm-cursor-blink.xterm-cursor-bar { animation: ${i} 1s step-end infinite;}${this._terminalSelector} .${Xv}.${Jv} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: ${r} 1s step-end infinite;}${this._terminalSelector} .${Xv} .xterm-cursor.xterm-cursor-block { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css};}${this._terminalSelector} .${Xv} .xterm-cursor.xterm-cursor-block:not(.xterm-cursor-blink) { background-color: ${e.cursor.css} !important; color: ${e.cursorAccent.css} !important;}${this._terminalSelector} .${Xv} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${e.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${Xv} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${e.cursor.css} inset;}${this._terminalSelector} .${Xv} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${e.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,t+=`${this._terminalSelector} .${Qv} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${Qv} div { position: absolute; background-color: ${e.selectionBackgroundOpaque.css};}${this._terminalSelector} .${Qv} div { position: absolute; background-color: ${e.selectionInactiveBackgroundOpaque.css};}`;for(let[n,o]of e.ansi.entries())t+=`${this._terminalSelector} .${Gv}${n} { color: ${o.css}; }${this._terminalSelector} .${Gv}${n}.xterm-dim { color: ${Rv.multiplyOpacity(o,.5).css}; }${this._terminalSelector} .${Zv}${n} { background-color: ${o.css}; }`;t+=`${this._terminalSelector} .${Gv}257 { color: ${Rv.opaque(e.background).css}; }${this._terminalSelector} .${Gv}257.xterm-dim { color: ${Rv.multiplyOpacity(Rv.opaque(e.background),.5).css}; }${this._terminalSelector} .${Zv}257 { background-color: ${e.foreground.css}; }`,this._themeStyleElement.textContent=t}_setDefaultSpacing(){let e=this.dimensions.css.cell.width-this._widthCache.get("W",!1,!1);this._rowContainer.style.letterSpacing=`${e}px`,this._rowFactory.defaultSpacing=e}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(e,t){for(let s=this._rowElements.length;s<=t;s++){let e=this._document.createElement("div");this._rowContainer.appendChild(e),this._rowElements.push(e)}for(;this._rowElements.length>t;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(e,t){this._refreshRowElements(e,t),this._updateDimensions(),this.handleSelectionChanged(this._selectionRenderModel.selectionStart,this._selectionRenderModel.selectionEnd,this._selectionRenderModel.columnSelectMode)}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(Jv),this.renderRows(0,this._bufferService.rows-1)}handleFocus(){this._rowContainer.classList.add(Jv),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(e,t,s){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(e,t,s),this.renderRows(0,this._bufferService.rows-1),!e||!t||(this._selectionRenderModel.update(this._terminal,e,t,s),!this._selectionRenderModel.hasSelection))return;let i=this._selectionRenderModel.viewportStartRow,r=this._selectionRenderModel.viewportEndRow,n=this._selectionRenderModel.viewportCappedStartRow,o=this._selectionRenderModel.viewportCappedEndRow,a=this._document.createDocumentFragment();if(s){let s=e[0]>t[0];a.appendChild(this._createSelectionElement(n,s?t[0]:e[0],s?e[0]:t[0],o-n+1))}else{let s=i===n?e[0]:0,l=n===r?t[0]:this._bufferService.cols;a.appendChild(this._createSelectionElement(n,s,l));let c=o-n-1;if(a.appendChild(this._createSelectionElement(n+1,0,this._bufferService.cols,c)),n!==o){let e=r===o?t[0]:this._bufferService.cols;a.appendChild(this._createSelectionElement(o,0,e))}}this._selectionContainer.appendChild(a)}_createSelectionElement(e,t,s,i=1){let r=this._document.createElement("div"),n=t*this.dimensions.css.cell.width,o=this.dimensions.css.cell.width*(s-t);return n+o>this.dimensions.css.canvas.width&&(o=this.dimensions.css.canvas.width-n),r.style.height=i*this.dimensions.css.cell.height+"px",r.style.top=e*this.dimensions.css.cell.height+"px",r.style.left=`${n}px`,r.style.width=`${o}px`,r}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(let e of this._rowElements)e.replaceChildren()}renderRows(e,t){let s=this._bufferService.buffer,i=s.ybase+s.y,r=Math.min(s.x,this._bufferService.cols-1),n=this._coreService.decPrivateModes.cursorBlink??this._optionsService.rawOptions.cursorBlink,o=this._coreService.decPrivateModes.cursorStyle??this._optionsService.rawOptions.cursorStyle,a=this._optionsService.rawOptions.cursorInactiveStyle;for(let l=e;l<=t;l++){let e=l+s.ydisp,t=this._rowElements[l],c=s.lines.get(e);if(!t||!c)break;t.replaceChildren(...this._rowFactory.createRow(c,e,e===i,o,a,r,n,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${Yv}${this._terminalClass}`}_handleLinkHover(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!0)}_handleLinkLeave(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!1)}_setCellUnderline(e,t,s,i,r,n){s<0&&(e=0),i<0&&(t=0);let o=this._bufferService.rows-1;s=Math.max(Math.min(s,o),0),i=Math.max(Math.min(i,o),0),r=Math.min(r,this._bufferService.cols);let a=this._bufferService.buffer,l=a.ybase+a.y,c=Math.min(a.x,r-1),h=this._optionsService.rawOptions.cursorBlink,d=this._optionsService.rawOptions.cursorStyle,u=this._optionsService.rawOptions.cursorInactiveStyle;for(let f=s;f<=i;++f){let o=f+a.ydisp,p=this._rowElements[f],m=a.lines.get(o);if(!p||!m)break;p.replaceChildren(...this._rowFactory.createRow(m,o,o===l,d,u,c,h,this.dimensions.css.cell.width,this._widthCache,n?f===s?e:0:-1,n?(f===i?t:r)-1:-1))}}};tx=um([fm(7,zm),fm(8,qm),fm(9,Hm),fm(10,Im),fm(11,Om),fm(12,Ym),fm(13,Qm)],tx);var sx=class extends gg{constructor(e,t,s){super(),this._optionsService=s,this.width=0,this.height=0,this._onCharSizeChange=this._register(new Tg),this.onCharSizeChange=this._onCharSizeChange.event;try{this._measureStrategy=this._register(new nx(this._optionsService))}catch{this._measureStrategy=this._register(new rx(e,t,this._optionsService))}this._register(this._optionsService.onMultipleOptionChange(["fontFamily","fontSize"],()=>this.measure()))}get hasValidSize(){return this.width>0&&this.height>0}measure(){let e=this._measureStrategy.measure();(e.width!==this.width||e.height!==this.height)&&(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};sx=um([fm(2,Hm)],sx);var ix=class extends gg{constructor(){super(...arguments),this._result={width:0,height:0}}_validateAndSet(e,t){void 0!==e&&e>0&&void 0!==t&&t>0&&(this._result.width=e,this._result.height=t)}},rx=class extends ix{constructor(e,t,s){super(),this._document=e,this._parentElement=t,this._optionsService=s,this._measureElement=this._document.createElement("span"),this._measureElement.classList.add("xterm-char-measure-element"),this._measureElement.textContent="W".repeat(32),this._measureElement.setAttribute("aria-hidden","true"),this._measureElement.style.whiteSpace="pre",this._measureElement.style.fontKerning="none",this._parentElement.appendChild(this._measureElement)}measure(){return this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`,this._validateAndSet(Number(this._measureElement.offsetWidth)/32,Number(this._measureElement.offsetHeight)),this._result}},nx=class extends ix{constructor(e){super(),this._optionsService=e,this._canvas=new OffscreenCanvas(100,100),this._ctx=this._canvas.getContext("2d");let t=this._ctx.measureText("W");if(!("width"in t&&"fontBoundingBoxAscent"in t&&"fontBoundingBoxDescent"in t))throw new Error("Required font metrics not supported")}measure(){this._ctx.font=`${this._optionsService.rawOptions.fontSize}px ${this._optionsService.rawOptions.fontFamily}`;let e=this._ctx.measureText("W");return this._validateAndSet(e.width,e.fontBoundingBoxAscent+e.fontBoundingBoxDescent),this._result}},ox=class extends gg{constructor(e,t,s){super(),this._textarea=e,this._window=t,this.mainDocument=s,this._isFocused=!1,this._cachedIsFocused=void 0,this._screenDprMonitor=this._register(new ax(this._window)),this._onDprChange=this._register(new Tg),this.onDprChange=this._onDprChange.event,this._onWindowChange=this._register(new Tg),this.onWindowChange=this._onWindowChange.event,this._register(this.onWindowChange(e=>this._screenDprMonitor.setWindow(e))),this._register(yg.forward(this._screenDprMonitor.onDprChange,this._onDprChange)),this._register($_(this._textarea,"focus",()=>this._isFocused=!0)),this._register($_(this._textarea,"blur",()=>this._isFocused=!1))}get window(){return this._window}set window(e){this._window!==e&&(this._window=e,this._onWindowChange.fire(this._window))}get dpr(){return this.window.devicePixelRatio}get isFocused(){return void 0===this._cachedIsFocused&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask(()=>this._cachedIsFocused=void 0)),this._cachedIsFocused}},ax=class extends gg{constructor(e){super(),this._parentWindow=e,this._windowResizeListener=this._register(new _g),this._onDprChange=this._register(new Tg),this.onDprChange=this._onDprChange.event,this._outerListener=()=>this._setDprAndFireIfDiffers(),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._updateDpr(),this._setWindowResizeListener(),this._register(fg(()=>this.clearListener()))}setWindow(e){this._parentWindow=e,this._setWindowResizeListener(),this._setDprAndFireIfDiffers()}_setWindowResizeListener(){this._windowResizeListener.value=$_(this._parentWindow,"resize",()=>this._setDprAndFireIfDiffers())}_setDprAndFireIfDiffers(){this._parentWindow.devicePixelRatio!==this._currentDevicePixelRatio&&this._onDprChange.fire(this._parentWindow.devicePixelRatio),this._updateDpr()}_updateDpr(){var e;this._outerListener&&(null==(e=this._resolutionMediaMatchList)||e.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){!this._resolutionMediaMatchList||!this._outerListener||(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._outerListener=void 0)}},lx=class extends gg{constructor(){super(),this.linkProviders=[],this._register(fg(()=>this.linkProviders.length=0))}registerLinkProvider(e){return this.linkProviders.push(e),{dispose:()=>{let t=this.linkProviders.indexOf(e);-1!==t&&this.linkProviders.splice(t,1)}}}};function cx(e,t,s){let i=s.getBoundingClientRect(),r=e.getComputedStyle(s),n=parseInt(r.getPropertyValue("padding-left")),o=parseInt(r.getPropertyValue("padding-top"));return[t.clientX-i.left-n,t.clientY-i.top-o]}var hx=class{constructor(e,t){this._renderService=e,this._charSizeService=t}getCoords(e,t,s,i,r){return function(e,t,s,i,r,n,o,a,l){if(!n)return;let c=cx(e,t,s);return c?(c[0]=Math.ceil((c[0]+(l?o/2:0))/o),c[1]=Math.ceil(c[1]/a),c[0]=Math.min(Math.max(c[0],1),i+(l?1:0)),c[1]=Math.min(Math.max(c[1],1),r),c):void 0}(window,e,t,s,i,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,r)}getMouseReportCoords(e,t){let s=cx(window,e,t);if(this._charSizeService.hasValidSize)return s[0]=Math.min(Math.max(s[0],0),this._renderService.dimensions.css.canvas.width-1),s[1]=Math.min(Math.max(s[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(s[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(s[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(s[0]),y:Math.floor(s[1])}}};hx=um([fm(0,Gm),fm(1,qm)],hx);var dx=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(e){return this._refreshCallbacks.push(e),this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh())),this._animationFrame}refresh(e,t,s){this._rowCount=s,e=void 0!==e?e:0,t=void 0!==t?t:this._rowCount-1,this._rowStart=void 0!==this._rowStart?Math.min(this._rowStart,e):e,this._rowEnd=void 0!==this._rowEnd?Math.max(this._rowEnd,t):t,!this._animationFrame&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._animationFrame=void 0,void 0===this._rowStart||void 0===this._rowEnd||void 0===this._rowCount)return void this._runRefreshCallbacks();let e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(let e of this._refreshCallbacks)e(0);this._refreshCallbacks=[]}},ux={};((e,t)=>{for(var s in t)hm(e,s,{get:t[s],enumerable:!0})})(ux,{getSafariVersion:()=>xx,isChromeOS:()=>kx,isFirefox:()=>gx,isIpad:()=>bx,isIphone:()=>wx,isLegacyEdge:()=>_x,isLinux:()=>Cx,isMac:()=>yx,isNode:()=>fx,isSafari:()=>vx,isWindows:()=>Sx});var fx=typeof process<"u"&&"title"in process,px=fx?"node":navigator.userAgent,mx=fx?"node":navigator.platform,gx=px.includes("Firefox"),_x=px.includes("Edge"),vx=/^((?!chrome|android).)*safari/i.test(px);function xx(){if(!vx)return 0;let e=px.match(/Version\/(\d+)/);return null===e||e.length<2?0:parseInt(e[1])}var yx=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(mx),bx="iPad"===mx,wx="iPhone"===mx,Sx=["Windows","Win16","Win32","WinCE"].includes(mx),Cx=mx.indexOf("Linux")>=0,kx=/\bCrOS\b/.test(px),Nx=class{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._i<this._tasks.length;)this._tasks[this._i]()||this._i++;this.clear()}clear(){this._idleCallback&&(this._cancelCallback(this._idleCallback),this._idleCallback=void 0),this._i=0,this._tasks.length=0}_start(){this._idleCallback||(this._idleCallback=this._requestCallback(this._process.bind(this)))}_process(e){this._idleCallback=void 0;let t=0,s=0,i=e.timeRemaining(),r=0;for(;this._i<this._tasks.length;){if(t=performance.now(),this._tasks[this._i]()||this._i++,t=Math.max(1,performance.now()-t),s=Math.max(t,s),r=e.timeRemaining(),1.5*s>r)return i-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(i-t))}ms`),void this._start();i=r}this.clear()}},Ex=!fx&&"requestIdleCallback"in window?class extends Nx{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}}:class extends Nx{_requestCallback(e){return setTimeout(()=>e(this._createDeadline(16)))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){let t=performance.now()+e;return{timeRemaining:()=>Math.max(0,t-performance.now())}}},jx=class{constructor(){this._queue=new Ex}set(e){this._queue.clear(),this._queue.enqueue(e)}flush(){this._queue.flush()}},Mx=class extends gg{constructor(e,t,s,i,r,n,o,a,l){super(),this._rowCount=e,this._optionsService=s,this._charSizeService=i,this._coreService=r,this._coreBrowserService=a,this._renderer=this._register(new _g),this._pausedResizeTask=new jx,this._observerDisposable=this._register(new _g),this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this._register(new Tg),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this._register(new Tg),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this._register(new Tg),this.onRender=this._onRender.event,this._onRefreshRequest=this._register(new Tg),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new dx((e,t)=>this._renderRows(e,t),this._coreBrowserService),this._register(this._renderDebouncer),this._syncOutputHandler=new Dx(this._coreBrowserService,this._coreService,()=>this._fullRefresh()),this._register(fg(()=>this._syncOutputHandler.dispose())),this._register(this._coreBrowserService.onDprChange(()=>this.handleDevicePixelRatioChange())),this._register(o.onResize(()=>this._fullRefresh())),this._register(o.buffers.onBufferActivate(()=>{var e;return null==(e=this._renderer.value)?void 0:e.clear()})),this._register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this._register(this._charSizeService.onCharSizeChange(()=>this.handleCharSizeChanged())),this._register(n.onDecorationRegistered(()=>this._fullRefresh())),this._register(n.onDecorationRemoved(()=>this._fullRefresh())),this._register(this._optionsService.onMultipleOptionChange(["customGlyphs","drawBoldTextInBrightColors","letterSpacing","lineHeight","fontFamily","fontSize","fontWeight","fontWeightBold","minimumContrastRatio","rescaleOverlappingGlyphs"],()=>{this.clear(),this.handleResize(o.cols,o.rows),this._fullRefresh()})),this._register(this._optionsService.onMultipleOptionChange(["cursorBlink","cursorStyle"],()=>this.refreshRows(o.buffer.y,o.buffer.y,!0))),this._register(l.onChangeColors(()=>this._fullRefresh())),this._registerIntersectionObserver(this._coreBrowserService.window,t),this._register(this._coreBrowserService.onWindowChange(e=>this._registerIntersectionObserver(e,t)))}get dimensions(){return this._renderer.value.dimensions}_registerIntersectionObserver(e,t){if("IntersectionObserver"in e){let s=new e.IntersectionObserver(e=>this._handleIntersectionChange(e[e.length-1]),{threshold:0});s.observe(t),this._observerDisposable.value=fg(()=>s.disconnect())}}_handleIntersectionChange(e){this._isPaused=void 0===e.isIntersecting?0===e.intersectionRatio:!e.isIntersecting,!this._isPaused&&!this._charSizeService.hasValidSize&&this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(e,t,s=!1){if(this._isPaused)return void(this._needsFullRefresh=!0);if(this._coreService.decPrivateModes.synchronizedOutput)return void this._syncOutputHandler.bufferRows(e,t);let i=this._syncOutputHandler.flush();i&&(e=Math.min(e,i.start),t=Math.max(t,i.end)),s||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(e,t,this._rowCount)}_renderRows(e,t){if(this._renderer.value){if(this._coreService.decPrivateModes.synchronizedOutput)return void this._syncOutputHandler.bufferRows(e,t);e=Math.min(e,this._rowCount-1),t=Math.min(t,this._rowCount-1),this._renderer.value.renderRows(e,t),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:e,end:t}),this._onRender.fire({start:e,end:t}),this._isNextRenderRedrawOnly=!0}}resize(e,t){this._rowCount=t,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(e){this._renderer.value=e,this._renderer.value&&(this._renderer.value.onRequestRedraw(e=>this.refreshRows(e.start,e.end,!0)),this._needsSelectionRefresh=!0,this._fullRefresh())}addRefreshCallback(e){return this._renderDebouncer.addRefreshCallback(e)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){var e,t;this._renderer.value&&(null==(t=(e=this._renderer.value).clearTextureAtlas)||t.call(e),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(e,t){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set(()=>{var s;return null==(s=this._renderer.value)?void 0:s.handleResize(e,t)}):this._renderer.value.handleResize(e,t),this._fullRefresh())}handleCharSizeChanged(){var e;null==(e=this._renderer.value)||e.handleCharSizeChanged()}handleBlur(){var e;null==(e=this._renderer.value)||e.handleBlur()}handleFocus(){var e;null==(e=this._renderer.value)||e.handleFocus()}handleSelectionChanged(e,t,s){var i;this._selectionState.start=e,this._selectionState.end=t,this._selectionState.columnSelectMode=s,null==(i=this._renderer.value)||i.handleSelectionChanged(e,t,s)}handleCursorMove(){var e;null==(e=this._renderer.value)||e.handleCursorMove()}clear(){var e;null==(e=this._renderer.value)||e.clear()}};Mx=um([fm(2,Hm),fm(3,qm),fm(4,Om),fm(5,Km),fm(6,Im),fm(7,Ym),fm(8,Qm)],Mx);var Dx=class{constructor(e,t,s){this._coreBrowserService=e,this._coreService=t,this._onTimeout=s,this._start=0,this._end=0,this._isBuffering=!1}bufferRows(e,t){this._isBuffering?(this._start=Math.min(this._start,e),this._end=Math.max(this._end,t)):(this._start=e,this._end=t,this._isBuffering=!0),void 0===this._timeout&&(this._timeout=this._coreBrowserService.window.setTimeout(()=>{this._timeout=void 0,this._coreService.decPrivateModes.synchronizedOutput=!1,this._onTimeout()},1e3))}flush(){if(void 0!==this._timeout&&(this._coreBrowserService.window.clearTimeout(this._timeout),this._timeout=void 0),!this._isBuffering)return;let e={start:this._start,end:this._end};return this._isBuffering=!1,e}dispose(){void 0!==this._timeout&&(this._coreBrowserService.window.clearTimeout(this._timeout),this._timeout=void 0)}};function Rx(e,t,s,i){let r,n=s.buffer.x,o=s.buffer.y;if(!s.buffer.hasScrollback)return function(e,t,s,i,r,n){return 0===Px(t,i,r,n).length?"":Ox(Ix(e,t,e,t-Lx(t,r),!1,r).length,Bx("D",n))}(n,o,0,t,s,i)+Px(o,t,s,i)+function(e,t,s,i,r,n){let o;o=Px(t,i,r,n).length>0?i-Lx(i,r):t;let a=i,l=function(e,t,s,i,r,n){let o;return o=Px(s,i,r,n).length>0?i-Lx(i,r):t,e<s&&o<=i||e>=s&&o<i?"C":"D"}(e,t,s,i,r,n);return Ox(Ix(e,o,s,a,"C"===l,r).length,Bx(l,n))}(n,o,e,t,s,i);if(o===t)return r=n>e?"D":"C",Ox(Math.abs(n-e),Bx(r,i));r=o>t?"D":"C";let a=Math.abs(o-t),l=function(e,t){return t.cols-e}(o>t?e:n,s)+(a-1)*s.cols+1+function(e){return e-1}(o>t?n:e);return Ox(l,Bx(r,i))}function Px(e,t,s,i){let r=e-Lx(e,s),n=t-Lx(t,s),o=Math.abs(r-n)-function(e,t,s){var i;let r=0,n=e-Lx(e,s),o=t-Lx(t,s);for(let a=0;a<Math.abs(n-o);a++){let o="A"===Tx(e,t)?-1:1;(null==(i=s.buffer.lines.get(n+o*a))?void 0:i.isWrapped)&&r++}return r}(e,t,s);return Ox(o,Bx(Tx(e,t),i))}function Lx(e,t){let s=0,i=t.buffer.lines.get(e),r=null==i?void 0:i.isWrapped;for(;r&&e>=0&&e<t.rows;)s++,i=t.buffer.lines.get(--e),r=null==i?void 0:i.isWrapped;return s}function Tx(e,t){return e>t?"A":"B"}function Ix(e,t,s,i,r,n){let o=e,a=t,l="";for(;(o!==s||a!==i)&&a>=0&&a<n.buffer.lines.length;)o+=r?1:-1,r&&o>n.cols-1?(l+=n.buffer.translateBufferLineToString(a,!1,e,o),o=0,e=0,a++):!r&&o<0&&(l+=n.buffer.translateBufferLineToString(a,!1,0,e+1),o=n.cols-1,e=o,a--);return l+n.buffer.translateBufferLineToString(a,!1,e,o)}function Bx(e,t){let s=t?"O":"[";return xv.ESC+s+e}function Ox(e,t){e=Math.floor(e);let s="";for(let i=0;i<e;i++)s+=t;return s}var Ax=class{constructor(e){this._bufferService=e,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){let e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?e%this._bufferService.cols===0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)-1]:[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[e,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){let e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[Math.max(e,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){let e=this.selectionStart,t=this.selectionEnd;return!(!e||!t)&&(e[1]>t[1]||e[1]===t[1]&&e[0]>t[0])}handleTrim(e){return this.selectionStart&&(this.selectionStart[1]-=e),this.selectionEnd&&(this.selectionEnd[1]-=e),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}};function zx(e,t){if(e.start.y>e.end.y)throw new Error(`Buffer range end (${e.end.x}, ${e.end.y}) cannot be before start (${e.start.x}, ${e.start.y})`);return t*(e.end.y-e.start.y)+(e.end.x-e.start.x+1)}var $x=new RegExp(" ","g"),Hx=class extends gg{constructor(e,t,s,i,r,n,o,a,l){super(),this._element=e,this._screenElement=t,this._linkifier=s,this._bufferService=i,this._coreService=r,this._mouseService=n,this._optionsService=o,this._renderService=a,this._coreBrowserService=l,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new Dm,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this._register(new Tg),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this._register(new Tg),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this._register(new Tg),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this._register(new Tg),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=e=>this._handleMouseMove(e),this._mouseUpListener=e=>this._handleMouseUp(e),this._coreService.onUserInput(()=>{this.hasSelection&&this.clearSelection()}),this._trimListener=this._bufferService.buffer.lines.onTrim(e=>this._handleTrim(e)),this._register(this._bufferService.buffers.onBufferActivate(e=>this._handleBufferActivate(e))),this.enable(),this._model=new Ax(this._bufferService),this._activeSelectionMode=0,this._register(fg(()=>{this._removeMouseDownListeners()})),this._register(this._bufferService.onResize(e=>{e.rowsChanged&&this.clearSelection()}))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;return!(!e||!t)&&(e[0]!==t[0]||e[1]!==t[1])}get selectionText(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;if(!e||!t)return"";let s=this._bufferService.buffer,i=[];if(3===this._activeSelectionMode){if(e[0]===t[0])return"";let r=e[0]<t[0]?e[0]:t[0],n=e[0]<t[0]?t[0]:e[0];for(let o=e[1];o<=t[1];o++){let e=s.translateBufferLineToString(o,!0,r,n);i.push(e)}}else{let r=e[1]===t[1]?t[0]:void 0;i.push(s.translateBufferLineToString(e[1],!0,e[0],r));for(let n=e[1]+1;n<=t[1]-1;n++){let e=s.lines.get(n),t=s.translateBufferLineToString(n,!0);(null==e?void 0:e.isWrapped)?i[i.length-1]+=t:i.push(t)}if(e[1]!==t[1]){let e=s.lines.get(t[1]),r=s.translateBufferLineToString(t[1],!0,0,t[0]);e&&e.isWrapped?i[i.length-1]+=r:i.push(r)}}return i.map(e=>e.replace($x," ")).join(Sx?"\r\n":"\n")}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(e){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),Cx&&e&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:3===this._activeSelectionMode})}_isClickInSelection(e){let t=this._getMouseBufferCoords(e),s=this._model.finalSelectionStart,i=this._model.finalSelectionEnd;return!!(s&&i&&t)&&this._areCoordsInSelection(t,s,i)}isCellInSelection(e,t){let s=this._model.finalSelectionStart,i=this._model.finalSelectionEnd;return!(!s||!i)&&this._areCoordsInSelection([e,t],s,i)}_areCoordsInSelection(e,t,s){return e[1]>t[1]&&e[1]<s[1]||t[1]===s[1]&&e[1]===t[1]&&e[0]>=t[0]&&e[0]<s[0]||t[1]<s[1]&&e[1]===s[1]&&e[0]<s[0]||t[1]<s[1]&&e[1]===t[1]&&e[0]>=t[0]}_selectWordAtCursor(e,t){var s,i;let r=null==(i=null==(s=this._linkifier.currentLink)?void 0:s.link)?void 0:i.range;if(r)return this._model.selectionStart=[r.start.x-1,r.start.y-1],this._model.selectionStartLength=zx(r,this._bufferService.cols),this._model.selectionEnd=void 0,!0;let n=this._getMouseBufferCoords(e);return!!n&&(this._selectWordAt(n,t),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(e,t){this._model.clearSelection(),e=Math.max(e,0),t=Math.min(t,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,e],this._model.selectionEnd=[this._bufferService.cols,t],this.refresh(),this._onSelectionChange.fire()}_handleTrim(e){this._model.handleTrim(e)&&this.refresh()}_getMouseBufferCoords(e){let t=this._mouseService.getCoords(e,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(t)return t[0]--,t[1]--,t[1]+=this._bufferService.buffer.ydisp,t}_getMouseEventScrollAmount(e){let t=cx(this._coreBrowserService.window,e,this._screenElement)[1],s=this._renderService.dimensions.css.canvas.height;return t>=0&&t<=s?0:(t>s&&(t-=s),t=Math.min(Math.max(t,-50),50),t/=50,t/Math.abs(t)+Math.round(14*t))}shouldForceSelection(e){return yx?e.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:e.shiftKey}handleMouseDown(e){if(this._mouseDownTimeStamp=e.timeStamp,(2!==e.button||!this.hasSelection)&&0===e.button){if(!this._enabled){if(!this.shouldForceSelection(e))return;e.stopPropagation()}e.preventDefault(),this._dragScrollAmount=0,this._enabled&&e.shiftKey?this._handleIncrementalClick(e):1===e.detail?this._handleSingleClick(e):2===e.detail?this._handleDoubleClick(e):3===e.detail&&this._handleTripleClick(e),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener("mouseup",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),50)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener("mouseup",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))}_handleSingleClick(e){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(e)?3:0,this._model.selectionStart=this._getMouseBufferCoords(e),!this._model.selectionStart)return;this._model.selectionEnd=void 0;let t=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);t&&t.length!==this._model.selectionStart[0]&&0===t.hasWidth(this._model.selectionStart[0])&&this._model.selectionStart[0]++}_handleDoubleClick(e){this._selectWordAtCursor(e,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(e){let t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=2,this._selectLineAt(t[1]))}shouldColumnSelect(e){return e.altKey&&!(yx&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(e){if(e.stopImmediatePropagation(),!this._model.selectionStart)return;let t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),!this._model.selectionEnd)return void this.refresh(!0);2===this._activeSelectionMode?this._model.selectionEnd[1]<this._model.selectionStart[1]?this._model.selectionEnd[0]=0:this._model.selectionEnd[0]=this._bufferService.cols:1===this._activeSelectionMode&&this._selectToWordAt(this._model.selectionEnd),this._dragScrollAmount=this._getMouseEventScrollAmount(e),3!==this._activeSelectionMode&&(this._dragScrollAmount>0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));let s=this._bufferService.buffer;if(this._model.selectionEnd[1]<s.lines.length){let e=s.lines.get(this._model.selectionEnd[1]);e&&0===e.hasWidth(this._model.selectionEnd[0])&&this._model.selectionEnd[0]<this._bufferService.cols&&this._model.selectionEnd[0]++}(!t||t[0]!==this._model.selectionEnd[0]||t[1]!==this._model.selectionEnd[1])&&this.refresh(!0)}_dragScroll(){if(this._model.selectionEnd&&this._model.selectionStart&&this._dragScrollAmount){this._onRequestScrollLines.fire({amount:this._dragScrollAmount,suppressScrollEvent:!1});let e=this._bufferService.buffer;this._dragScrollAmount>0?(3!==this._activeSelectionMode&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(e.ydisp+this._bufferService.rows,e.lines.length-1)):(3!==this._activeSelectionMode&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=e.ydisp),this.refresh()}}_handleMouseUp(e){let t=e.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&t<500&&e.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){let t=this._mouseService.getCoords(e,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(t&&void 0!==t[0]&&void 0!==t[1]){let e=Rx(t[0]-1,t[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(e,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd,s=!(!e||!t||e[0]===t[0]&&e[1]===t[1]);s?!e||!t||(!this._oldSelectionStart||!this._oldSelectionEnd||e[0]!==this._oldSelectionStart[0]||e[1]!==this._oldSelectionStart[1]||t[0]!==this._oldSelectionEnd[0]||t[1]!==this._oldSelectionEnd[1])&&this._fireOnSelectionChange(e,t,s):this._oldHasSelection&&this._fireOnSelectionChange(e,t,s)}_fireOnSelectionChange(e,t,s){this._oldSelectionStart=e,this._oldSelectionEnd=t,this._oldHasSelection=s,this._onSelectionChange.fire()}_handleBufferActivate(e){this.clearSelection(),this._trimListener.dispose(),this._trimListener=e.activeBuffer.lines.onTrim(e=>this._handleTrim(e))}_convertViewportColToCharacterIndex(e,t){let s=t;for(let i=0;t>=i;i++){let r=e.loadCell(i,this._workCell).getChars().length;0===this._workCell.getWidth()?s--:r>1&&t!==i&&(s+=r-1)}return s}setSelection(e,t,s){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[e,t],this._model.selectionStartLength=s,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(e){this._isClickInSelection(e)||(this._selectWordAtCursor(e,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(e,t,s=!0,i=!0){if(e[0]>=this._bufferService.cols)return;let r=this._bufferService.buffer,n=r.lines.get(e[1]);if(!n)return;let o=r.translateBufferLineToString(e[1],!1),a=this._convertViewportColToCharacterIndex(n,e[0]),l=a,c=e[0]-a,h=0,d=0,u=0,f=0;if(" "===o.charAt(a)){for(;a>0&&" "===o.charAt(a-1);)a--;for(;l<o.length&&" "===o.charAt(l+1);)l++}else{let t=e[0],s=e[0];0===n.getWidth(t)&&(h++,t--),2===n.getWidth(s)&&(d++,s++);let i=n.getString(s).length;for(i>1&&(f+=i-1,l+=i-1);t>0&&a>0&&!this._isCharWordSeparator(n.loadCell(t-1,this._workCell));){n.loadCell(t-1,this._workCell);let e=this._workCell.getChars().length;0===this._workCell.getWidth()?(h++,t--):e>1&&(u+=e-1,a-=e-1),a--,t--}for(;s<n.length&&l+1<o.length&&!this._isCharWordSeparator(n.loadCell(s+1,this._workCell));){n.loadCell(s+1,this._workCell);let e=this._workCell.getChars().length;2===this._workCell.getWidth()?(d++,s++):e>1&&(f+=e-1,l+=e-1),l++,s++}}l++;let p=a+c-h+u,m=Math.min(this._bufferService.cols,l-a+h+d-u-f);if(t||""!==o.slice(a,l).trim()){if(s&&0===p&&32!==n.getCodePoint(0)){let t=r.lines.get(e[1]-1);if(t&&n.isWrapped&&32!==t.getCodePoint(this._bufferService.cols-1)){let t=this._getWordAt([this._bufferService.cols-1,e[1]-1],!1,!0,!1);if(t){let e=this._bufferService.cols-t.start;p-=e,m+=e}}}if(i&&p+m===this._bufferService.cols&&32!==n.getCodePoint(this._bufferService.cols-1)){let t=r.lines.get(e[1]+1);if((null==t?void 0:t.isWrapped)&&32!==t.getCodePoint(0)){let t=this._getWordAt([0,e[1]+1],!1,!1,!0);t&&(m+=t.length)}}return{start:p,length:m}}}_selectWordAt(e,t){let s=this._getWordAt(e,t);if(s){for(;s.start<0;)s.start+=this._bufferService.cols,e[1]--;this._model.selectionStart=[s.start,e[1]],this._model.selectionStartLength=s.length}}_selectToWordAt(e){let t=this._getWordAt(e,!0);if(t){let s=e[1];for(;t.start<0;)t.start+=this._bufferService.cols,s--;if(!this._model.areSelectionValuesReversed())for(;t.start+t.length>this._bufferService.cols;)t.length-=this._bufferService.cols,s++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?t.start:t.start+t.length,s]}}_isCharWordSeparator(e){return 0!==e.getWidth()&&this._optionsService.rawOptions.wordSeparator.indexOf(e.getChars())>=0}_selectLineAt(e){let t=this._bufferService.buffer.getWrappedRangeForLine(e),s={start:{x:0,y:t.first},end:{x:this._bufferService.cols-1,y:t.last}};this._model.selectionStart=[0,t.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=zx(s,this._bufferService.cols)}};Hx=um([fm(3,Im),fm(4,Om),fm(5,Xm),fm(6,Hm),fm(7,Gm),fm(8,Ym)],Hx);var Wx=class{constructor(){this._data={}}set(e,t,s){this._data[e]||(this._data[e]={}),this._data[e][t]=s}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}},Fx=class{constructor(){this._color=new Wx,this._css=new Wx}setCss(e,t,s){this._css.set(e,t,s)}getCss(e,t){return this._css.get(e,t)}setColor(e,t,s){this._color.set(e,t,s)}getColor(e,t){return this._color.get(e,t)}clear(){this._color.clear(),this._css.clear()}},Kx=Object.freeze((()=>{let e=[Pv.toColor("#2e3436"),Pv.toColor("#cc0000"),Pv.toColor("#4e9a06"),Pv.toColor("#c4a000"),Pv.toColor("#3465a4"),Pv.toColor("#75507b"),Pv.toColor("#06989a"),Pv.toColor("#d3d7cf"),Pv.toColor("#555753"),Pv.toColor("#ef2929"),Pv.toColor("#8ae234"),Pv.toColor("#fce94f"),Pv.toColor("#729fcf"),Pv.toColor("#ad7fa8"),Pv.toColor("#34e2e2"),Pv.toColor("#eeeeec")],t=[0,95,135,175,215,255];for(let s=0;s<216;s++){let i=t[s/36%6|0],r=t[s/6%6|0],n=t[s%6];e.push({css:Dv.toCss(i,r,n),rgba:Dv.toRgba(i,r,n)})}for(let s=0;s<24;s++){let t=8+10*s;e.push({css:Dv.toCss(t,t,t),rgba:Dv.toRgba(t,t,t)})}return e})()),Vx=Pv.toColor("#ffffff"),Ux=Pv.toColor("#000000"),qx=Pv.toColor("#ffffff"),Yx=Ux,Xx={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117},Gx=Vx,Zx=class extends gg{constructor(e){super(),this._optionsService=e,this._contrastCache=new Fx,this._halfContrastCache=new Fx,this._onChangeColors=this._register(new Tg),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:Vx,background:Ux,cursor:qx,cursorAccent:Yx,selectionForeground:void 0,selectionBackgroundTransparent:Xx,selectionBackgroundOpaque:Rv.blend(Ux,Xx),selectionInactiveBackgroundTransparent:Xx,selectionInactiveBackgroundOpaque:Rv.blend(Ux,Xx),scrollbarSliderBackground:Rv.opacity(Vx,.2),scrollbarSliderHoverBackground:Rv.opacity(Vx,.4),scrollbarSliderActiveBackground:Rv.opacity(Vx,.5),overviewRulerBorder:Vx,ansi:Kx.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this._register(this._optionsService.onSpecificOptionChange("minimumContrastRatio",()=>this._contrastCache.clear())),this._register(this._optionsService.onSpecificOptionChange("theme",()=>this._setTheme(this._optionsService.rawOptions.theme)))}get colors(){return this._colors}_setTheme(e={}){let t=this._colors;if(t.foreground=Jx(e.foreground,Vx),t.background=Jx(e.background,Ux),t.cursor=Rv.blend(t.background,Jx(e.cursor,qx)),t.cursorAccent=Rv.blend(t.background,Jx(e.cursorAccent,Yx)),t.selectionBackgroundTransparent=Jx(e.selectionBackground,Xx),t.selectionBackgroundOpaque=Rv.blend(t.background,t.selectionBackgroundTransparent),t.selectionInactiveBackgroundTransparent=Jx(e.selectionInactiveBackground,t.selectionBackgroundTransparent),t.selectionInactiveBackgroundOpaque=Rv.blend(t.background,t.selectionInactiveBackgroundTransparent),t.selectionForeground=e.selectionForeground?Jx(e.selectionForeground,zv):void 0,t.selectionForeground===zv&&(t.selectionForeground=void 0),Rv.isOpaque(t.selectionBackgroundTransparent)&&(t.selectionBackgroundTransparent=Rv.opacity(t.selectionBackgroundTransparent,.3)),Rv.isOpaque(t.selectionInactiveBackgroundTransparent)&&(t.selectionInactiveBackgroundTransparent=Rv.opacity(t.selectionInactiveBackgroundTransparent,.3)),t.scrollbarSliderBackground=Jx(e.scrollbarSliderBackground,Rv.opacity(t.foreground,.2)),t.scrollbarSliderHoverBackground=Jx(e.scrollbarSliderHoverBackground,Rv.opacity(t.foreground,.4)),t.scrollbarSliderActiveBackground=Jx(e.scrollbarSliderActiveBackground,Rv.opacity(t.foreground,.5)),t.overviewRulerBorder=Jx(e.overviewRulerBorder,Gx),t.ansi=Kx.slice(),t.ansi[0]=Jx(e.black,Kx[0]),t.ansi[1]=Jx(e.red,Kx[1]),t.ansi[2]=Jx(e.green,Kx[2]),t.ansi[3]=Jx(e.yellow,Kx[3]),t.ansi[4]=Jx(e.blue,Kx[4]),t.ansi[5]=Jx(e.magenta,Kx[5]),t.ansi[6]=Jx(e.cyan,Kx[6]),t.ansi[7]=Jx(e.white,Kx[7]),t.ansi[8]=Jx(e.brightBlack,Kx[8]),t.ansi[9]=Jx(e.brightRed,Kx[9]),t.ansi[10]=Jx(e.brightGreen,Kx[10]),t.ansi[11]=Jx(e.brightYellow,Kx[11]),t.ansi[12]=Jx(e.brightBlue,Kx[12]),t.ansi[13]=Jx(e.brightMagenta,Kx[13]),t.ansi[14]=Jx(e.brightCyan,Kx[14]),t.ansi[15]=Jx(e.brightWhite,Kx[15]),e.extendedAnsi){let s=Math.min(t.ansi.length-16,e.extendedAnsi.length);for(let i=0;i<s;i++)t.ansi[i+16]=Jx(e.extendedAnsi[i],Kx[i+16])}this._contrastCache.clear(),this._halfContrastCache.clear(),this._updateRestoreColors(),this._onChangeColors.fire(this.colors)}restoreColor(e){this._restoreColor(e),this._onChangeColors.fire(this.colors)}_restoreColor(e){if(void 0!==e)switch(e){case 256:this._colors.foreground=this._restoreColors.foreground;break;case 257:this._colors.background=this._restoreColors.background;break;case 258:this._colors.cursor=this._restoreColors.cursor;break;default:this._colors.ansi[e]=this._restoreColors.ansi[e]}else for(let t=0;t<this._restoreColors.ansi.length;++t)this._colors.ansi[t]=this._restoreColors.ansi[t]}modifyColors(e){e(this._colors),this._onChangeColors.fire(this.colors)}_updateRestoreColors(){this._restoreColors={foreground:this._colors.foreground,background:this._colors.background,cursor:this._colors.cursor,ansi:this._colors.ansi.slice()}}};function Jx(e,t){if(void 0!==e)try{return Pv.toColor(e)}catch{}return t}Zx=um([fm(0,Hm)],Zx);var Qx=class{constructor(...e){this._entries=new Map;for(let[t,s]of e)this.set(t,s)}set(e,t){let s=this._entries.get(e);return this._entries.set(e,t),s}forEach(e){for(let[t,s]of this._entries.entries())e(t,s)}has(e){return this._entries.has(e)}get(e){return this._entries.get(e)}},ey=class{constructor(){this._services=new Qx,this._services.set(zm,this)}setService(e,t){this._services.set(e,t)}getService(e){return this._services.get(e)}createInstance(e,...t){let s=(r=e,r[Pm]||[]).sort((e,t)=>e.index-t.index),i=[];var r;for(let o of s){let t=this._services.get(o.id);if(!t)throw new Error(`[createInstance] ${e.name} depends on UNKNOWN service ${o.id._id}.`);i.push(t)}let n=s.length>0?s[0].index:t.length;if(t.length!==n)throw new Error(`[createInstance] First service dependency of ${e.name} at position ${n+1} conflicts with ${t.length} static arguments`);return new e(...t,...i)}},ty={trace:0,debug:1,info:2,warn:3,error:4,off:5},sy=class extends gg{constructor(e){super(),this._optionsService=e,this._logLevel=5,this._updateLogLevel(),this._register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel()))}get logLevel(){return this._logLevel}_updateLogLevel(){this._logLevel=ty[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;t<e.length;t++)"function"==typeof e[t]&&(e[t]=e[t]())}_log(e,t,s){this._evalLazyOptionalParams(s),e.call(console,(this._optionsService.options.logger?"":"xterm.js: ")+t,...s)}trace(e,...t){var s;this._logLevel<=0&&this._log((null==(s=this._optionsService.options.logger)?void 0:s.trace.bind(this._optionsService.options.logger))??console.log,e,t)}debug(e,...t){var s;this._logLevel<=1&&this._log((null==(s=this._optionsService.options.logger)?void 0:s.debug.bind(this._optionsService.options.logger))??console.log,e,t)}info(e,...t){var s;this._logLevel<=2&&this._log((null==(s=this._optionsService.options.logger)?void 0:s.info.bind(this._optionsService.options.logger))??console.info,e,t)}warn(e,...t){var s;this._logLevel<=3&&this._log((null==(s=this._optionsService.options.logger)?void 0:s.warn.bind(this._optionsService.options.logger))??console.warn,e,t)}error(e,...t){var s;this._logLevel<=4&&this._log((null==(s=this._optionsService.options.logger)?void 0:s.error.bind(this._optionsService.options.logger))??console.error,e,t)}};sy=um([fm(0,Hm)],sy);var iy=class extends gg{constructor(e){super(),this._maxLength=e,this.onDeleteEmitter=this._register(new Tg),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this._register(new Tg),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this._register(new Tg),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(e){if(this._maxLength===e)return;let t=new Array(e);for(let s=0;s<Math.min(e,this.length);s++)t[s]=this._array[this._getCyclicIndex(s)];this._array=t,this._maxLength=e,this._startIndex=0}get length(){return this._length}set length(e){if(e>this._length)for(let t=this._length;t<e;t++)this._array[t]=void 0;this._length=e}get(e){return this._array[this._getCyclicIndex(e)]}set(e,t){this._array[this._getCyclicIndex(e)]=t}push(e){this._array[this._getCyclicIndex(this._length)]=e,this._length===this._maxLength?(this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1)):this._length++}recycle(){if(this._length!==this._maxLength)throw new Error("Can only recycle when the buffer is full");return this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1),this._array[this._getCyclicIndex(this._length-1)]}get isFull(){return this._length===this._maxLength}pop(){return this._array[this._getCyclicIndex(this._length---1)]}splice(e,t,...s){if(t){for(let s=e;s<this._length-t;s++)this._array[this._getCyclicIndex(s)]=this._array[this._getCyclicIndex(s+t)];this._length-=t,this.onDeleteEmitter.fire({index:e,amount:t})}for(let i=this._length-1;i>=e;i--)this._array[this._getCyclicIndex(i+s.length)]=this._array[this._getCyclicIndex(i)];for(let i=0;i<s.length;i++)this._array[this._getCyclicIndex(e+i)]=s[i];if(s.length&&this.onInsertEmitter.fire({index:e,amount:s.length}),this._length+s.length>this._maxLength){let e=this._length+s.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=s.length}trimStart(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.onTrimEmitter.fire(e)}shiftElements(e,t,s){if(!(t<=0)){if(e<0||e>=this._length)throw new Error("start argument out of range");if(e+s<0)throw new Error("Cannot shift elements in list beyond index 0");if(s>0){for(let r=t-1;r>=0;r--)this.set(e+r+s,this.get(e+r));let i=e+t+s-this._length;if(i>0)for(this._length+=i;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let i=0;i<t;i++)this.set(e+i+s,this.get(e+i))}}_getCyclicIndex(e){return(this._startIndex+e)%this._maxLength}},ry=Object.freeze(new jm),ny=0,oy=class e{constructor(e,t,s=!1){this.isWrapped=s,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*e);let i=t||Dm.fromCharData([0,"",1,0]);for(let r=0;r<e;++r)this.setCell(r,i);this.length=e}get(e){let t=this._data[3*e+0],s=2097151&t;return[this._data[3*e+1],2097152&t?this._combined[e]:s?Sm(s):"",t>>22,2097152&t?this._combined[e].charCodeAt(this._combined[e].length-1):s]}set(e,t){this._data[3*e+1]=t[0],t[1].length>1?(this._combined[e]=t[1],this._data[3*e+0]=2097152|e|t[2]<<22):this._data[3*e+0]=t[1].charCodeAt(0)|t[2]<<22}getWidth(e){return this._data[3*e+0]>>22}hasWidth(e){return 12582912&this._data[3*e+0]}getFg(e){return this._data[3*e+1]}getBg(e){return this._data[3*e+2]}hasContent(e){return 4194303&this._data[3*e+0]}getCodePoint(e){let t=this._data[3*e+0];return 2097152&t?this._combined[e].charCodeAt(this._combined[e].length-1):2097151&t}isCombined(e){return 2097152&this._data[3*e+0]}getString(e){let t=this._data[3*e+0];return 2097152&t?this._combined[e]:2097151&t?Sm(2097151&t):""}isProtected(e){return 536870912&this._data[3*e+2]}loadCell(e,t){return ny=3*e,t.content=this._data[ny+0],t.fg=this._data[ny+1],t.bg=this._data[ny+2],2097152&t.content&&(t.combinedData=this._combined[e]),268435456&t.bg&&(t.extended=this._extendedAttrs[e]),t}setCell(e,t){2097152&t.content&&(this._combined[e]=t.combinedData),268435456&t.bg&&(this._extendedAttrs[e]=t.extended),this._data[3*e+0]=t.content,this._data[3*e+1]=t.fg,this._data[3*e+2]=t.bg}setCellFromCodepoint(e,t,s,i){268435456&i.bg&&(this._extendedAttrs[e]=i.extended),this._data[3*e+0]=t|s<<22,this._data[3*e+1]=i.fg,this._data[3*e+2]=i.bg}addCodepointToCell(e,t,s){let i=this._data[3*e+0];2097152&i?this._combined[e]+=Sm(t):2097151&i?(this._combined[e]=Sm(2097151&i)+Sm(t),i&=-2097152,i|=2097152):i=t|1<<22,s&&(i&=-12582913,i|=s<<22),this._data[3*e+0]=i}insertCells(e,t,s){if((e%=this.length)&&2===this.getWidth(e-1)&&this.setCellFromCodepoint(e-1,0,1,s),t<this.length-e){let i=new Dm;for(let s=this.length-e-t-1;s>=0;--s)this.setCell(e+t+s,this.loadCell(e+s,i));for(let r=0;r<t;++r)this.setCell(e+r,s)}else for(let i=e;i<this.length;++i)this.setCell(i,s);2===this.getWidth(this.length-1)&&this.setCellFromCodepoint(this.length-1,0,1,s)}deleteCells(e,t,s){if(e%=this.length,t<this.length-e){let i=new Dm;for(let s=0;s<this.length-e-t;++s)this.setCell(e+s,this.loadCell(e+t+s,i));for(let e=this.length-t;e<this.length;++e)this.setCell(e,s)}else for(let i=e;i<this.length;++i)this.setCell(i,s);e&&2===this.getWidth(e-1)&&this.setCellFromCodepoint(e-1,0,1,s),0===this.getWidth(e)&&!this.hasContent(e)&&this.setCellFromCodepoint(e,0,1,s)}replaceCells(e,t,s,i=!1){if(i)for(e&&2===this.getWidth(e-1)&&!this.isProtected(e-1)&&this.setCellFromCodepoint(e-1,0,1,s),t<this.length&&2===this.getWidth(t-1)&&!this.isProtected(t)&&this.setCellFromCodepoint(t,0,1,s);e<t&&e<this.length;)this.isProtected(e)||this.setCell(e,s),e++;else for(e&&2===this.getWidth(e-1)&&this.setCellFromCodepoint(e-1,0,1,s),t<this.length&&2===this.getWidth(t-1)&&this.setCellFromCodepoint(t,0,1,s);e<t&&e<this.length;)this.setCell(e++,s)}resize(e,t){if(e===this.length)return 4*this._data.length*2<this._data.buffer.byteLength;let s=3*e;if(e>this.length){if(this._data.buffer.byteLength>=4*s)this._data=new Uint32Array(this._data.buffer,0,s);else{let e=new Uint32Array(s);e.set(this._data),this._data=e}for(let s=this.length;s<e;++s)this.setCell(s,t)}else{this._data=this._data.subarray(0,s);let t=Object.keys(this._combined);for(let s=0;s<t.length;s++){let i=parseInt(t[s],10);i>=e&&delete this._combined[i]}let i=Object.keys(this._extendedAttrs);for(let s=0;s<i.length;s++){let t=parseInt(i[s],10);t>=e&&delete this._extendedAttrs[t]}}return this.length=e,4*s*2<this._data.buffer.byteLength}cleanupMemory(){if(4*this._data.length*2<this._data.buffer.byteLength){let e=new Uint32Array(this._data.length);return e.set(this._data),this._data=e,1}return 0}fill(e,t=!1){if(t)for(let s=0;s<this.length;++s)this.isProtected(s)||this.setCell(s,e);else{this._combined={},this._extendedAttrs={};for(let t=0;t<this.length;++t)this.setCell(t,e)}}copyFrom(e){this.length!==e.length?this._data=new Uint32Array(e._data):this._data.set(e._data),this.length=e.length,this._combined={};for(let t in e._combined)this._combined[t]=e._combined[t];this._extendedAttrs={};for(let t in e._extendedAttrs)this._extendedAttrs[t]=e._extendedAttrs[t];this.isWrapped=e.isWrapped}clone(){let t=new e(0);t._data=new Uint32Array(this._data),t.length=this.length;for(let e in this._combined)t._combined[e]=this._combined[e];for(let e in this._extendedAttrs)t._extendedAttrs[e]=this._extendedAttrs[e];return t.isWrapped=this.isWrapped,t}getTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0])return e+(this._data[3*e+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0]||50331648&this._data[3*e+2])return e+(this._data[3*e+0]>>22);return 0}copyCellsFrom(e,t,s,i,r){let n=e._data;if(r)for(let a=i-1;a>=0;a--){for(let e=0;e<3;e++)this._data[3*(s+a)+e]=n[3*(t+a)+e];268435456&n[3*(t+a)+2]&&(this._extendedAttrs[s+a]=e._extendedAttrs[t+a])}else for(let a=0;a<i;a++){for(let e=0;e<3;e++)this._data[3*(s+a)+e]=n[3*(t+a)+e];268435456&n[3*(t+a)+2]&&(this._extendedAttrs[s+a]=e._extendedAttrs[t+a])}let o=Object.keys(e._combined);for(let a=0;a<o.length;a++){let i=parseInt(o[a],10);i>=t&&(this._combined[i-t+s]=e._combined[i])}}translateToString(e,t,s,i){t=t??0,s=s??this.length,e&&(s=Math.min(s,this.getTrimmedLength())),i&&(i.length=0);let r="";for(;t<s;){let e=this._data[3*t+0],s=2097151&e,n=2097152&e?this._combined[t]:s?Sm(s):Em;if(r+=n,i)for(let r=0;r<n.length;++r)i.push(t);t+=e>>22||1}return i&&i.push(t),r}};function ay(e,t,s){let i=[],r=e.map((s,i)=>ly(e,i,t)).reduce((e,t)=>e+t),n=0,o=0,a=0;for(;a<r;){if(r-a<s){i.push(r-a);break}n+=s;let l=ly(e,o,t);n>l&&(n-=l,o++);let c=2===e[o].getWidth(n-1);c&&n--;let h=c?s-1:s;i.push(h),a+=h}return i}function ly(e,t,s){if(t===e.length-1)return e[t].getTrimmedLength();let i=!e[t].hasContent(s-1)&&1===e[t].getWidth(s-1),r=2===e[t+1].getWidth(0);return i&&r?s-1:s}var cy=class e{constructor(t){this.line=t,this.isDisposed=!1,this._disposables=[],this._id=e._nextId++,this._onDispose=this.register(new Tg),this.onDispose=this._onDispose.event}get id(){return this._id}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),ug(this._disposables),this._disposables.length=0)}register(e){return this._disposables.push(e),e}};cy._nextId=1;var hy=cy,dy={},uy=dy.B;dy[0]={"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"},dy.A={"#":"£"},dy.B=void 0,dy[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},dy.C=dy[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},dy.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},dy.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},dy.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},dy.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},dy.E=dy[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},dy.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},dy.H=dy[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},dy["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"};var fy=4294967295,py=class{constructor(e,t,s){this._hasScrollback=e,this._optionsService=t,this._bufferService=s,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=ry.clone(),this.savedCharset=uy,this.markers=[],this._nullCell=Dm.fromCharData([0,"",1,0]),this._whitespaceCell=Dm.fromCharData([0,Em,1,32]),this._isClearing=!1,this._memoryCleanupQueue=new Ex,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new iy(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(e){return e?(this._nullCell.fg=e.fg,this._nullCell.bg=e.bg,this._nullCell.extended=e.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new Mm),this._nullCell}getWhitespaceCell(e){return e?(this._whitespaceCell.fg=e.fg,this._whitespaceCell.bg=e.bg,this._whitespaceCell.extended=e.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new Mm),this._whitespaceCell}getBlankLine(e,t){return new oy(this._bufferService.cols,this.getNullCell(e),t)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){let e=this.ybase+this.y-this.ydisp;return e>=0&&e<this._rows}_getCorrectBufferLength(e){if(!this._hasScrollback)return e;let t=e+this._optionsService.rawOptions.scrollback;return t>fy?fy:t}fillViewportRows(e){if(0===this.lines.length){void 0===e&&(e=ry);let t=this._rows;for(;t--;)this.lines.push(this.getBlankLine(e))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new iy(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(e,t){let s=this.getNullCell(ry),i=0,r=this._getCorrectBufferLength(t);if(r>this.lines.maxLength&&(this.lines.maxLength=r),this.lines.length>0){if(this._cols<e)for(let t=0;t<this.lines.length;t++)i+=+this.lines.get(t).resize(e,s);let n=0;if(this._rows<t)for(let i=this._rows;i<t;i++)this.lines.length<t+this.ybase&&(this._optionsService.rawOptions.windowsMode||void 0!==this._optionsService.rawOptions.windowsPty.backend||void 0!==this._optionsService.rawOptions.windowsPty.buildNumber?this.lines.push(new oy(e,s)):this.ybase>0&&this.lines.length<=this.ybase+this.y+n+1?(this.ybase--,n++,this.ydisp>0&&this.ydisp--):this.lines.push(new oy(e,s)));else for(let e=this._rows;e>t;e--)this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(r<this.lines.maxLength){let e=this.lines.length-r;e>0&&(this.lines.trimStart(e),this.ybase=Math.max(this.ybase-e,0),this.ydisp=Math.max(this.ydisp-e,0),this.savedY=Math.max(this.savedY-e,0)),this.lines.maxLength=r}this.x=Math.min(this.x,e-1),this.y=Math.min(this.y,t-1),n&&(this.y+=n),this.savedX=Math.min(this.savedX,e-1),this.scrollTop=0}if(this.scrollBottom=t-1,this._isReflowEnabled&&(this._reflow(e,t),this._cols>e))for(let n=0;n<this.lines.length;n++)i+=+this.lines.get(n).resize(e,s);this._cols=e,this._rows=t,this._memoryCleanupQueue.clear(),i>.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let e=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,e=!1);let t=0;for(;this._memoryCleanupPosition<this.lines.length;)if(t+=this.lines.get(this._memoryCleanupPosition++).cleanupMemory(),t>100)return!0;return e}get _isReflowEnabled(){let e=this._optionsService.rawOptions.windowsPty;return e&&e.buildNumber?this._hasScrollback&&"conpty"===e.backend&&e.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(e,t){this._cols!==e&&(e>this._cols?this._reflowLarger(e,t):this._reflowSmaller(e,t))}_reflowLarger(e,t){let s=this._optionsService.rawOptions.reflowCursorLine,i=function(e,t,s,i,r,n){let o=[];for(let a=0;a<e.length-1;a++){let l=a,c=e.get(++l);if(!c.isWrapped)continue;let h=[e.get(a)];for(;l<e.length&&c.isWrapped;)h.push(c),c=e.get(++l);if(!n&&i>=a&&i<l){a+=h.length-1;continue}let d=0,u=ly(h,d,t),f=1,p=0;for(;f<h.length;){let e=ly(h,f,t),i=e-p,n=s-u,o=Math.min(i,n);h[d].copyCellsFrom(h[f],p,u,o,!1),u+=o,u===s&&(d++,u=0),p+=o,p===e&&(f++,p=0),0===u&&0!==d&&2===h[d-1].getWidth(s-1)&&(h[d].copyCellsFrom(h[d-1],s-1,u++,1,!1),h[d-1].setCell(s-1,r))}h[d].replaceCells(u,s,r);let m=0;for(let e=h.length-1;e>0&&(e>d||0===h[e].getTrimmedLength());e--)m++;m>0&&(o.push(a+h.length-m),o.push(m)),a+=h.length-1}return o}(this.lines,this._cols,e,this.ybase+this.y,this.getNullCell(ry),s);if(i.length>0){let s=function(e,t){let s=[],i=0,r=t[i],n=0;for(let o=0;o<e.length;o++)if(r===o){let s=t[++i];e.onDeleteEmitter.fire({index:o-n,amount:s}),o+=s-1,n+=s,r=t[++i]}else s.push(o);return{layout:s,countRemoved:n}}(this.lines,i);(function(e,t){let s=[];for(let i=0;i<t.length;i++)s.push(e.get(t[i]));for(let i=0;i<s.length;i++)e.set(i,s[i]);e.length=t.length})(this.lines,s.layout),this._reflowLargerAdjustViewport(e,t,s.countRemoved)}}_reflowLargerAdjustViewport(e,t,s){let i=this.getNullCell(ry),r=s;for(;r-- >0;)0===this.ybase?(this.y>0&&this.y--,this.lines.length<t&&this.lines.push(new oy(e,i))):(this.ydisp===this.ybase&&this.ydisp--,this.ybase--);this.savedY=Math.max(this.savedY-s,0)}_reflowSmaller(e,t){let s=this._optionsService.rawOptions.reflowCursorLine,i=this.getNullCell(ry),r=[],n=0;for(let o=this.lines.length-1;o>=0;o--){let a=this.lines.get(o);if(!a||!a.isWrapped&&a.getTrimmedLength()<=e)continue;let l=[a];for(;a.isWrapped&&o>0;)a=this.lines.get(--o),l.unshift(a);if(!s){let e=this.ybase+this.y;if(e>=o&&e<o+l.length)continue}let c,h=l[l.length-1].getTrimmedLength(),d=ay(l,this._cols,e),u=d.length-l.length;c=0===this.ybase&&this.y!==this.lines.length-1?Math.max(0,this.y-this.lines.maxLength+u):Math.max(0,this.lines.length-this.lines.maxLength+u);let f=[];for(let e=0;e<u;e++){let e=this.getBlankLine(ry,!0);f.push(e)}f.length>0&&(r.push({start:o+l.length+n,newLines:f}),n+=f.length),l.push(...f);let p=d.length-1,m=d[p];0===m&&(p--,m=d[p]);let g=l.length-u-1,_=h;for(;g>=0;){let e=Math.min(_,m);if(void 0===l[p])break;if(l[p].copyCellsFrom(l[g],_-e,m-e,e,!0),m-=e,0===m&&(p--,m=d[p]),_-=e,0===_){g--,_=ly(l,Math.max(g,0),this._cols)}}for(let t=0;t<l.length;t++)d[t]<e&&l[t].setCell(d[t],i);let v=u-c;for(;v-- >0;)0===this.ybase?this.y<t-1?(this.y++,this.lines.pop()):(this.ybase++,this.ydisp++):this.ybase<Math.min(this.lines.maxLength,this.lines.length+n)-t&&(this.ybase===this.ydisp&&this.ydisp++,this.ybase++);this.savedY=Math.min(this.savedY+u,this.ybase+t-1)}if(r.length>0){let e=[],t=[];for(let r=0;r<this.lines.length;r++)t.push(this.lines.get(r));let s=this.lines.length,i=s-1,o=0,a=r[o];this.lines.length=Math.min(this.lines.maxLength,this.lines.length+n);let l=0;for(let d=Math.min(this.lines.maxLength-1,s+n-1);d>=0;d--)if(a&&a.start>i+l){for(let e=a.newLines.length-1;e>=0;e--)this.lines.set(d--,a.newLines[e]);d++,e.push({index:i+1,amount:a.newLines.length}),l+=a.newLines.length,a=r[++o]}else this.lines.set(d,t[i--]);let c=0;for(let r=e.length-1;r>=0;r--)e[r].index+=c,this.lines.onInsertEmitter.fire(e[r]),c+=e[r].amount;let h=Math.max(0,s+n-this.lines.maxLength);h>0&&this.lines.onTrimEmitter.fire(h)}}translateBufferLineToString(e,t,s=0,i){let r=this.lines.get(e);return r?r.translateToString(t,s,i):""}getWrappedRangeForLine(e){let t=e,s=e;for(;t>0&&this.lines.get(t).isWrapped;)t--;for(;s+1<this.lines.length&&this.lines.get(s+1).isWrapped;)s++;return{first:t,last:s}}setupTabStops(e){for(null!=e?this.tabs[e]||(e=this.prevStop(e)):(this.tabs={},e=0);e<this._cols;e+=this._optionsService.rawOptions.tabStopWidth)this.tabs[e]=!0}prevStop(e){for(null==e&&(e=this.x);!this.tabs[--e]&&e>0;);return e>=this._cols?this._cols-1:e<0?0:e}nextStop(e){for(null==e&&(e=this.x);!this.tabs[++e]&&e<this._cols;);return e>=this._cols?this._cols-1:e<0?0:e}clearMarkers(e){this._isClearing=!0;for(let t=0;t<this.markers.length;t++)this.markers[t].line===e&&(this.markers[t].dispose(),this.markers.splice(t--,1));this._isClearing=!1}clearAllMarkers(){this._isClearing=!0;for(let e=0;e<this.markers.length;e++)this.markers[e].dispose();this.markers.length=0,this._isClearing=!1}addMarker(e){let t=new hy(e);return this.markers.push(t),t.register(this.lines.onTrim(e=>{t.line-=e,t.line<0&&t.dispose()})),t.register(this.lines.onInsert(e=>{t.line>=e.index&&(t.line+=e.amount)})),t.register(this.lines.onDelete(e=>{t.line>=e.index&&t.line<e.index+e.amount&&t.dispose(),t.line>e.index&&(t.line-=e.amount)})),t.register(t.onDispose(()=>this._removeMarker(t))),t}_removeMarker(e){this._isClearing||this.markers.splice(this.markers.indexOf(e),1)}},my=class extends gg{constructor(e,t){super(),this._optionsService=e,this._bufferService=t,this._onBufferActivate=this._register(new Tg),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this._register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this._register(this._optionsService.onSpecificOptionChange("tabStopWidth",()=>this.setupTabStops()))}reset(){this._normal=new py(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new py(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(e){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(e),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(e,t){this._normal.resize(e,t),this._alt.resize(e,t),this.setupTabStops(e)}setupTabStops(e){this._normal.setupTabStops(e),this._alt.setupTabStops(e)}},gy=class extends gg{constructor(e){super(),this.isUserScrolling=!1,this._onResize=this._register(new Tg),this.onResize=this._onResize.event,this._onScroll=this._register(new Tg),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,2),this.rows=Math.max(e.rawOptions.rows||0,1),this.buffers=this._register(new my(e,this)),this._register(this.buffers.onBufferActivate(e=>{this._onScroll.fire(e.activeBuffer.ydisp)}))}get buffer(){return this.buffers.active}resize(e,t){let s=this.cols!==e,i=this.rows!==t;this.cols=e,this.rows=t,this.buffers.resize(e,t),this._onResize.fire({cols:e,rows:t,colsChanged:s,rowsChanged:i})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,t=!1){let s,i=this.buffer;s=this._cachedBlankLine,(!s||s.length!==this.cols||s.getFg(0)!==e.fg||s.getBg(0)!==e.bg)&&(s=i.getBlankLine(e,t),this._cachedBlankLine=s),s.isWrapped=t;let r=i.ybase+i.scrollTop,n=i.ybase+i.scrollBottom;if(0===i.scrollTop){let e=i.lines.isFull;n===i.lines.length-1?e?i.lines.recycle().copyFrom(s):i.lines.push(s.clone()):i.lines.splice(n+1,0,s.clone()),e?this.isUserScrolling&&(i.ydisp=Math.max(i.ydisp-1,0)):(i.ybase++,this.isUserScrolling||i.ydisp++)}else{let e=n-r+1;i.lines.shiftElements(r+1,e-1,-1),i.lines.set(n,s.clone())}this.isUserScrolling||(i.ydisp=i.ybase),this._onScroll.fire(i.ydisp)}scrollLines(e,t){let s=this.buffer;if(e<0){if(0===s.ydisp)return;this.isUserScrolling=!0}else e+s.ydisp>=s.ybase&&(this.isUserScrolling=!1);let i=s.ydisp;s.ydisp=Math.max(Math.min(s.ydisp+e,s.ybase),0),i!==s.ydisp&&(t||this._onScroll.fire(s.ydisp))}};gy=um([fm(0,Hm)],gy);var _y={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,documentOverride:null,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnEraseInDisplay:!1,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},reflowCursorLine:!1,rescaleOverlappingGlyphs:!1,rightClickSelectsWord:yx,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRuler:{}},vy=["normal","bold","100","200","300","400","500","600","700","800","900"],xy=class extends gg{constructor(e){super(),this._onOptionChange=this._register(new Tg),this.onOptionChange=this._onOptionChange.event;let t={..._y};for(let s in e)if(s in t)try{let i=e[s];t[s]=this._sanitizeAndValidateOption(s,i)}catch(G_){console.error(G_)}this.rawOptions=t,this.options={...t},this._setupOptions(),this._register(fg(()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null}))}onSpecificOptionChange(e,t){return this.onOptionChange(s=>{s===e&&t(this.rawOptions[e])})}onMultipleOptionChange(e,t){return this.onOptionChange(s=>{-1!==e.indexOf(s)&&t()})}_setupOptions(){let e=e=>{if(!(e in _y))throw new Error(`No option with key "${e}"`);return this.rawOptions[e]},t=(e,t)=>{if(!(e in _y))throw new Error(`No option with key "${e}"`);t=this._sanitizeAndValidateOption(e,t),this.rawOptions[e]!==t&&(this.rawOptions[e]=t,this._onOptionChange.fire(e))};for(let s in this.rawOptions){let i={get:e.bind(this,s),set:t.bind(this,s)};Object.defineProperty(this.options,s,i)}}_sanitizeAndValidateOption(e,t){switch(e){case"cursorStyle":if(t||(t=_y[e]),"block"!==(s=t)&&"underline"!==s&&"bar"!==s)throw new Error(`"${t}" is not a valid value for ${e}`);break;case"wordSeparator":t||(t=_y[e]);break;case"fontWeight":case"fontWeightBold":if("number"==typeof t&&1<=t&&t<=1e3)break;t=vy.includes(t)?t:_y[e];break;case"cursorWidth":t=Math.floor(t);case"lineHeight":case"tabStopWidth":if(t<1)throw new Error(`${e} cannot be less than 1, value: ${t}`);break;case"minimumContrastRatio":t=Math.max(1,Math.min(21,Math.round(10*t)/10));break;case"scrollback":if((t=Math.min(t,4294967295))<0)throw new Error(`${e} cannot be less than 0, value: ${t}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(t<=0)throw new Error(`${e} cannot be less than or equal to 0, value: ${t}`);break;case"rows":case"cols":if(!t&&0!==t)throw new Error(`${e} must be numeric, value: ${t}`);break;case"windowsPty":t=t??{}}var s;return t}};function yy(e,t=5){if("object"!=typeof e)return e;let s=Array.isArray(e)?[]:{};for(let i in e)s[i]=t<=1?e[i]:e[i]&&yy(e[i],t-1);return s}var by=Object.freeze({insertMode:!1}),wy=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,cursorBlink:void 0,cursorStyle:void 0,origin:!1,reverseWraparound:!1,sendFocus:!1,synchronizedOutput:!1,wraparound:!0}),Sy=class extends gg{constructor(e,t,s){super(),this._bufferService=e,this._logService=t,this._optionsService=s,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this._register(new Tg),this.onData=this._onData.event,this._onUserInput=this._register(new Tg),this.onUserInput=this._onUserInput.event,this._onBinary=this._register(new Tg),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this._register(new Tg),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=yy(by),this.decPrivateModes=yy(wy)}reset(){this.modes=yy(by),this.decPrivateModes=yy(wy)}triggerDataEvent(e,t=!1){if(this._optionsService.rawOptions.disableStdin)return;let s=this._bufferService.buffer;t&&this._optionsService.rawOptions.scrollOnUserInput&&s.ybase!==s.ydisp&&this._onRequestScrollToBottom.fire(),t&&this._onUserInput.fire(),this._logService.debug(`sending data "${e}"`),this._logService.trace("sending data (codes)",()=>e.split("").map(e=>e.charCodeAt(0))),this._onData.fire(e)}triggerBinaryEvent(e){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${e}"`),this._logService.trace("sending binary (codes)",()=>e.split("").map(e=>e.charCodeAt(0))),this._onBinary.fire(e))}};Sy=um([fm(0,Im),fm(1,$m),fm(2,Hm)],Sy);var Cy={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:e=>4!==e.button&&1===e.action&&(e.ctrl=!1,e.alt=!1,e.shift=!1,!0)},VT200:{events:19,restrict:e=>32!==e.action},DRAG:{events:23,restrict:e=>!(32===e.action&&3===e.button)},ANY:{events:31,restrict:e=>!0}};function ky(e,t){let s=(e.ctrl?16:0)|(e.shift?4:0)|(e.alt?8:0);return 4===e.button?(s|=64,s|=e.action):(s|=3&e.button,4&e.button&&(s|=64),8&e.button&&(s|=128),32===e.action?s|=32:0===e.action&&!t&&(s|=3)),s}var Ny=String.fromCharCode,Ey={DEFAULT:e=>{let t=[ky(e,!1)+32,e.col+32,e.row+32];return t[0]>255||t[1]>255||t[2]>255?"":`${Ny(t[0])}${Ny(t[1])}${Ny(t[2])}`},SGR:e=>{let t=0===e.action&&4!==e.button?"m":"M";return`[<${ky(e,!0)};${e.col};${e.row}${t}`},SGR_PIXELS:e=>{let t=0===e.action&&4!==e.button?"m":"M";return`[<${ky(e,!0)};${e.x};${e.y}${t}`}},jy=class extends gg{constructor(e,t,s){super(),this._bufferService=e,this._coreService=t,this._optionsService=s,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._wheelPartialScroll=0,this._onProtocolChange=this._register(new Tg),this.onProtocolChange=this._onProtocolChange.event;for(let i of Object.keys(Cy))this.addProtocol(i,Cy[i]);for(let i of Object.keys(Ey))this.addEncoding(i,Ey[i]);this.reset()}addProtocol(e,t){this._protocols[e]=t}addEncoding(e,t){this._encodings[e]=t}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return 0!==this._protocols[this._activeProtocol].events}set activeProtocol(e){if(!this._protocols[e])throw new Error(`unknown protocol "${e}"`);this._activeProtocol=e,this._onProtocolChange.fire(this._protocols[e].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(e){if(!this._encodings[e])throw new Error(`unknown encoding "${e}"`);this._activeEncoding=e}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null,this._wheelPartialScroll=0}consumeWheelEvent(e,t,s){if(0===e.deltaY||e.shiftKey||void 0===t||void 0===s)return 0;let i=t/s,r=this._applyScrollModifier(e.deltaY,e);return e.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(r/=i+0,Math.abs(e.deltaY)<50&&(r*=.3),this._wheelPartialScroll+=r,r=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(r*=this._bufferService.rows),r}_applyScrollModifier(e,t){return t.altKey||t.ctrlKey||t.shiftKey?e*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:e*this._optionsService.rawOptions.scrollSensitivity}triggerMouseEvent(e){if(e.col<0||e.col>=this._bufferService.cols||e.row<0||e.row>=this._bufferService.rows||4===e.button&&32===e.action||3===e.button&&32!==e.action||4!==e.button&&(2===e.action||3===e.action)||(e.col++,e.row++,32===e.action&&this._lastEvent&&this._equalEvents(this._lastEvent,e,"SGR_PIXELS"===this._activeEncoding))||!this._protocols[this._activeProtocol].restrict(e))return!1;let t=this._encodings[this._activeEncoding](e);return t&&("DEFAULT"===this._activeEncoding?this._coreService.triggerBinaryEvent(t):this._coreService.triggerDataEvent(t,!0)),this._lastEvent=e,!0}explainEvents(e){return{down:!!(1&e),up:!!(2&e),drag:!!(4&e),move:!!(8&e),wheel:!!(16&e)}}_equalEvents(e,t,s){if(s){if(e.x!==t.x||e.y!==t.y)return!1}else if(e.col!==t.col||e.row!==t.row)return!1;return!(e.button!==t.button||e.action!==t.action||e.ctrl!==t.ctrl||e.alt!==t.alt||e.shift!==t.shift)}};jy=um([fm(0,Im),fm(1,Om),fm(2,Hm)],jy);var My,Dy=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],Ry=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];var Py=class{constructor(){if(this.version="6",!My){(My=new Uint8Array(65536)).fill(1),My[0]=0,My.fill(0,1,32),My.fill(0,127,160),My.fill(2,4352,4448),My[9001]=2,My[9002]=2,My.fill(2,11904,42192),My[12351]=1,My.fill(2,44032,55204),My.fill(2,63744,64256),My.fill(2,65040,65050),My.fill(2,65072,65136),My.fill(2,65280,65377),My.fill(2,65504,65511);for(let e=0;e<Dy.length;++e)My.fill(0,Dy[e][0],Dy[e][1]+1)}}wcwidth(e){return e<32?0:e<127?1:e<65536?My[e]:function(e,t){let s,i=0,r=t.length-1;if(e<t[0][0]||e>t[r][1])return!1;for(;r>=i;)if(s=i+r>>1,e>t[s][1])i=s+1;else{if(!(e<t[s][0]))return!0;r=s-1}return!1}(e,Ry)?0:e>=131072&&e<=196605||e>=196608&&e<=262141?2:1}charProperties(e,t){let s=this.wcwidth(e),i=0===s&&0!==t;if(i){let e=Ly.extractWidth(t);0===e?i=!1:e>s&&(s=e)}return Ly.createPropertyValue(0,s,i)}},Ly=class e{constructor(){this._providers=Object.create(null),this._active="",this._onChange=new Tg,this.onChange=this._onChange.event;let e=new Py;this.register(e),this._active=e.version,this._activeProvider=e}static extractShouldJoin(e){return!!(1&e)}static extractWidth(e){return e>>1&3}static extractCharKind(e){return e>>3}static createPropertyValue(e,t,s=!1){return(16777215&e)<<3|(3&t)<<1|(s?1:0)}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(e){if(!this._providers[e])throw new Error(`unknown Unicode version "${e}"`);this._active=e,this._activeProvider=this._providers[e],this._onChange.fire(e)}register(e){this._providers[e.version]=e}wcwidth(e){return this._activeProvider.wcwidth(e)}getStringCellWidth(t){let s=0,i=0,r=t.length;for(let n=0;n<r;++n){let o=t.charCodeAt(n);if(55296<=o&&o<=56319){if(++n>=r)return s+this.wcwidth(o);let e=t.charCodeAt(n);56320<=e&&e<=57343?o=1024*(o-55296)+e-56320+65536:s+=this.wcwidth(e)}let a=this.charProperties(o,i),l=e.extractWidth(a);e.extractShouldJoin(a)&&(l-=e.extractWidth(i)),s+=l,i=a}return s}charProperties(e,t){return this._activeProvider.charProperties(e,t)}},Ty=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(e){this.glevel=e,this.charset=this._charsets[e]}setgCharset(e,t){this._charsets[e]=t,this.glevel===e&&(this.charset=t)}};function Iy(e){var t;let s=null==(t=e.buffer.lines.get(e.buffer.ybase+e.buffer.y-1))?void 0:t.get(e.cols-1),i=e.buffer.lines.get(e.buffer.ybase+e.buffer.y);i&&s&&(i.isWrapped=0!==s[3]&&32!==s[3])}var By=2147483647,Oy=class e{constructor(e=32,t=32){if(this.maxLength=e,this.maxSubParamsLength=t,t>256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(e),this.length=0,this._subParams=new Int32Array(t),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(e),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}static fromArray(t){let s=new e;if(!t.length)return s;for(let e=Array.isArray(t[0])?1:0;e<t.length;++e){let i=t[e];if(Array.isArray(i))for(let e=0;e<i.length;++e)s.addSubParam(i[e]);else s.addParam(i)}return s}clone(){let t=new e(this.maxLength,this.maxSubParamsLength);return t.params.set(this.params),t.length=this.length,t._subParams.set(this._subParams),t._subParamsLength=this._subParamsLength,t._subParamsIdx.set(this._subParamsIdx),t._rejectDigits=this._rejectDigits,t._rejectSubDigits=this._rejectSubDigits,t._digitIsSub=this._digitIsSub,t}toArray(){let e=[];for(let t=0;t<this.length;++t){e.push(this.params[t]);let s=this._subParamsIdx[t]>>8,i=255&this._subParamsIdx[t];i-s>0&&e.push(Array.prototype.slice.call(this._subParams,s,i))}return e}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(e){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(e<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=e>By?By:e}}addSubParam(e){if(this._digitIsSub=!0,this.length){if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)return void(this._rejectSubDigits=!0);if(e<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=e>By?By:e,this._subParamsIdx[this.length-1]++}}hasSubParams(e){return(255&this._subParamsIdx[e])-(this._subParamsIdx[e]>>8)>0}getSubParams(e){let t=this._subParamsIdx[e]>>8,s=255&this._subParamsIdx[e];return s-t>0?this._subParams.subarray(t,s):null}getSubParamsAll(){let e={};for(let t=0;t<this.length;++t){let s=this._subParamsIdx[t]>>8,i=255&this._subParamsIdx[t];i-s>0&&(e[t]=this._subParams.slice(s,i))}return e}addDigit(e){let t;if(this._rejectDigits||!(t=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;let s=this._digitIsSub?this._subParams:this.params,i=s[t-1];s[t-1]=~i?Math.min(10*i+e,By):e}},Ay=[],zy=class{constructor(){this._state=0,this._active=Ay,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(e,t){void 0===this._handlers[e]&&(this._handlers[e]=[]);let s=this._handlers[e];return s.push(t),{dispose:()=>{let e=s.indexOf(t);-1!==e&&s.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=Ay}reset(){if(2===this._state)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].end(!1);this._stack.paused=!1,this._active=Ay,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||Ay,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].start();else this._handlerFb(this._id,"START")}_put(e,t,s){if(this._active.length)for(let i=this._active.length-1;i>=0;i--)this._active[i].put(e,t,s);else this._handlerFb(this._id,"PUT",Cm(e,t,s))}start(){this.reset(),this._state=1}put(e,t,s){if(3!==this._state){if(1===this._state)for(;t<s;){let s=e[t++];if(59===s){this._state=2,this._start();break}if(s<48||57<s)return void(this._state=3);-1===this._id&&(this._id=0),this._id=10*this._id+s-48}2===this._state&&s-t>0&&this._put(e,t,s)}}end(e,t=!0){if(0!==this._state){if(3!==this._state)if(1===this._state&&this._start(),this._active.length){let s=!1,i=this._active.length-1,r=!1;if(this._stack.paused&&(i=this._stack.loopPosition-1,s=t,r=this._stack.fallThrough,this._stack.paused=!1),!r&&!1===s){for(;i>=0&&(s=this._active[i].end(e),!0!==s);i--)if(s instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=i,this._stack.fallThrough=!1,s;i--}for(;i>=0;i--)if(s=this._active[i].end(!1),s instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=i,this._stack.fallThrough=!0,s}else this._handlerFb(this._id,"END",e);this._active=Ay,this._id=-1,this._state=0}}},$y=class{constructor(e){this._handler=e,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(e,t,s){this._hitLimit||(this._data+=Cm(e,t,s),this._data.length>1e7&&(this._data="",this._hitLimit=!0))}end(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data),t instanceof Promise))return t.then(e=>(this._data="",this._hitLimit=!1,e));return this._data="",this._hitLimit=!1,t}},Hy=[],Wy=class{constructor(){this._handlers=Object.create(null),this._active=Hy,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=Hy}registerHandler(e,t){void 0===this._handlers[e]&&(this._handlers[e]=[]);let s=this._handlers[e];return s.push(t),{dispose:()=>{let e=s.indexOf(t);-1!==e&&s.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}reset(){if(this._active.length)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].unhook(!1);this._stack.paused=!1,this._active=Hy,this._ident=0}hook(e,t){if(this.reset(),this._ident=e,this._active=this._handlers[e]||Hy,this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].hook(t);else this._handlerFb(this._ident,"HOOK",t)}put(e,t,s){if(this._active.length)for(let i=this._active.length-1;i>=0;i--)this._active[i].put(e,t,s);else this._handlerFb(this._ident,"PUT",Cm(e,t,s))}unhook(e,t=!0){if(this._active.length){let s=!1,i=this._active.length-1,r=!1;if(this._stack.paused&&(i=this._stack.loopPosition-1,s=t,r=this._stack.fallThrough,this._stack.paused=!1),!r&&!1===s){for(;i>=0&&(s=this._active[i].unhook(e),!0!==s);i--)if(s instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=i,this._stack.fallThrough=!1,s;i--}for(;i>=0;i--)if(s=this._active[i].unhook(!1),s instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=i,this._stack.fallThrough=!0,s}else this._handlerFb(this._ident,"UNHOOK",e);this._active=Hy,this._ident=0}},Fy=new Oy;Fy.addParam(0);var Ky=class{constructor(e){this._handler=e,this._data="",this._params=Fy,this._hitLimit=!1}hook(e){this._params=e.length>1||e.params[0]?e.clone():Fy,this._data="",this._hitLimit=!1}put(e,t,s){this._hitLimit||(this._data+=Cm(e,t,s),this._data.length>1e7&&(this._data="",this._hitLimit=!0))}unhook(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data,this._params),t instanceof Promise))return t.then(e=>(this._params=Fy,this._data="",this._hitLimit=!1,e));return this._params=Fy,this._data="",this._hitLimit=!1,t}},Vy=class{constructor(e){this.table=new Uint8Array(e)}setDefault(e,t){this.table.fill(e<<4|t)}add(e,t,s,i){this.table[t<<8|e]=s<<4|i}addMany(e,t,s,i){for(let r=0;r<e.length;r++)this.table[t<<8|e[r]]=s<<4|i}},Uy=160,qy=function(){let e=new Vy(4095),t=Array.apply(null,Array(256)).map((e,t)=>t),s=(e,s)=>t.slice(e,s),i=s(32,127),r=s(0,24);r.push(25),r.push.apply(r,s(28,32));let n,o=s(0,14);for(n in e.setDefault(1,0),e.addMany(i,0,2,0),o)e.addMany([24,26,153,154],n,3,0),e.addMany(s(128,144),n,3,0),e.addMany(s(144,152),n,3,0),e.add(156,n,0,0),e.add(27,n,11,1),e.add(157,n,4,8),e.addMany([152,158,159],n,0,7),e.add(155,n,11,3),e.add(144,n,11,9);return e.addMany(r,0,3,0),e.addMany(r,1,3,1),e.add(127,1,0,1),e.addMany(r,8,0,8),e.addMany(r,3,3,3),e.add(127,3,0,3),e.addMany(r,4,3,4),e.add(127,4,0,4),e.addMany(r,6,3,6),e.addMany(r,5,3,5),e.add(127,5,0,5),e.addMany(r,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(i,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(s(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(i,7,0,7),e.addMany(r,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(s(64,127),3,7,0),e.addMany(s(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(s(48,60),4,8,4),e.addMany(s(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(s(32,64),6,0,6),e.add(127,6,0,6),e.addMany(s(64,127),6,0,0),e.addMany(s(32,48),3,9,5),e.addMany(s(32,48),5,9,5),e.addMany(s(48,64),5,0,6),e.addMany(s(64,127),5,7,0),e.addMany(s(32,48),4,9,5),e.addMany(s(32,48),1,9,2),e.addMany(s(32,48),2,9,2),e.addMany(s(48,127),2,10,0),e.addMany(s(48,80),1,10,0),e.addMany(s(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(s(96,127),1,10,0),e.add(80,1,11,9),e.addMany(r,9,0,9),e.add(127,9,0,9),e.addMany(s(28,32),9,0,9),e.addMany(s(32,48),9,9,12),e.addMany(s(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(r,11,0,11),e.addMany(s(32,128),11,0,11),e.addMany(s(28,32),11,0,11),e.addMany(r,10,0,10),e.add(127,10,0,10),e.addMany(s(28,32),10,0,10),e.addMany(s(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(s(32,48),10,9,12),e.addMany(r,12,0,12),e.add(127,12,0,12),e.addMany(s(28,32),12,0,12),e.addMany(s(32,48),12,9,12),e.addMany(s(48,64),12,0,11),e.addMany(s(64,127),12,12,13),e.addMany(s(64,127),10,12,13),e.addMany(s(64,127),9,12,13),e.addMany(r,13,13,13),e.addMany(i,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(Uy,0,2,0),e.add(Uy,8,5,8),e.add(Uy,6,0,6),e.add(Uy,11,0,11),e.add(Uy,13,13,13),e}(),Yy=class extends gg{constructor(e=qy){super(),this._transitions=e,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new Oy,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(e,t,s)=>{},this._executeHandlerFb=e=>{},this._csiHandlerFb=(e,t)=>{},this._escHandlerFb=e=>{},this._errorHandlerFb=e=>e,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this._register(fg(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this._register(new zy),this._dcsParser=this._register(new Wy),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(e,t=[64,126]){let s=0;if(e.prefix){if(e.prefix.length>1)throw new Error("only one byte as prefix supported");if(s=e.prefix.charCodeAt(0),s&&60>s||s>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(e.intermediates){if(e.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let t=0;t<e.intermediates.length;++t){let i=e.intermediates.charCodeAt(t);if(32>i||i>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");s<<=8,s|=i}}if(1!==e.final.length)throw new Error("final must be a single byte");let i=e.final.charCodeAt(0);if(t[0]>i||i>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return s<<=8,s|=i,s}identToString(e){let t=[];for(;e;)t.push(String.fromCharCode(255&e)),e>>=8;return t.reverse().join("")}setPrintHandler(e){this._printHandler=e}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(e,t){let s=this._identifier(e,[48,126]);void 0===this._escHandlers[s]&&(this._escHandlers[s]=[]);let i=this._escHandlers[s];return i.push(t),{dispose:()=>{let e=i.indexOf(t);-1!==e&&i.splice(e,1)}}}clearEscHandler(e){this._escHandlers[this._identifier(e,[48,126])]&&delete this._escHandlers[this._identifier(e,[48,126])]}setEscHandlerFallback(e){this._escHandlerFb=e}setExecuteHandler(e,t){this._executeHandlers[e.charCodeAt(0)]=t}clearExecuteHandler(e){this._executeHandlers[e.charCodeAt(0)]&&delete this._executeHandlers[e.charCodeAt(0)]}setExecuteHandlerFallback(e){this._executeHandlerFb=e}registerCsiHandler(e,t){let s=this._identifier(e);void 0===this._csiHandlers[s]&&(this._csiHandlers[s]=[]);let i=this._csiHandlers[s];return i.push(t),{dispose:()=>{let e=i.indexOf(t);-1!==e&&i.splice(e,1)}}}clearCsiHandler(e){this._csiHandlers[this._identifier(e)]&&delete this._csiHandlers[this._identifier(e)]}setCsiHandlerFallback(e){this._csiHandlerFb=e}registerDcsHandler(e,t){return this._dcsParser.registerHandler(this._identifier(e),t)}clearDcsHandler(e){this._dcsParser.clearHandler(this._identifier(e))}setDcsHandlerFallback(e){this._dcsParser.setHandlerFallback(e)}registerOscHandler(e,t){return this._oscParser.registerHandler(e,t)}clearOscHandler(e){this._oscParser.clearHandler(e)}setOscHandlerFallback(e){this._oscParser.setHandlerFallback(e)}setErrorHandler(e){this._errorHandler=e}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0,0!==this._parseStack.state&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(e,t,s,i,r){this._parseStack.state=e,this._parseStack.handlers=t,this._parseStack.handlerPos=s,this._parseStack.transition=i,this._parseStack.chunkPos=r}parse(e,t,s){let i,r=0,n=0,o=0;if(this._parseStack.state)if(2===this._parseStack.state)this._parseStack.state=0,o=this._parseStack.chunkPos+1;else{if(void 0===s||1===this._parseStack.state)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");let t=this._parseStack.handlers,n=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(!1===s&&n>-1)for(;n>=0&&(i=t[n](this._params),!0!==i);n--)if(i instanceof Promise)return this._parseStack.handlerPos=n,i;this._parseStack.handlers=[];break;case 4:if(!1===s&&n>-1)for(;n>=0&&(i=t[n](),!0!==i);n--)if(i instanceof Promise)return this._parseStack.handlerPos=n,i;this._parseStack.handlers=[];break;case 6:if(r=e[this._parseStack.chunkPos],i=this._dcsParser.unhook(24!==r&&26!==r,s),i)return i;27===r&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(r=e[this._parseStack.chunkPos],i=this._oscParser.end(24!==r&&26!==r,s),i)return i;27===r&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,o=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=15&this._parseStack.transition}for(let a=o;a<t;++a){switch(r=e[a],n=this._transitions.table[this.currentState<<8|(r<160?r:Uy)],n>>4){case 2:for(let i=a+1;;++i){if(i>=t||(r=e[i])<32||r>126&&r<Uy){this._printHandler(e,a,i),a=i-1;break}if(++i>=t||(r=e[i])<32||r>126&&r<Uy){this._printHandler(e,a,i),a=i-1;break}if(++i>=t||(r=e[i])<32||r>126&&r<Uy){this._printHandler(e,a,i),a=i-1;break}if(++i>=t||(r=e[i])<32||r>126&&r<Uy){this._printHandler(e,a,i),a=i-1;break}}break;case 3:this._executeHandlers[r]?this._executeHandlers[r]():this._executeHandlerFb(r),this.precedingJoinState=0;break;case 0:break;case 1:if(this._errorHandler({position:a,code:r,currentState:this.currentState,collect:this._collect,params:this._params,abort:!1}).abort)return;break;case 7:let s=this._csiHandlers[this._collect<<8|r],o=s?s.length-1:-1;for(;o>=0&&(i=s[o](this._params),!0!==i);o--)if(i instanceof Promise)return this._preserveStack(3,s,o,n,a),i;o<0&&this._csiHandlerFb(this._collect<<8|r,this._params),this.precedingJoinState=0;break;case 8:do{switch(r){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(r-48)}}while(++a<t&&(r=e[a])>47&&r<60);a--;break;case 9:this._collect<<=8,this._collect|=r;break;case 10:let l=this._escHandlers[this._collect<<8|r],c=l?l.length-1:-1;for(;c>=0&&(i=l[c](),!0!==i);c--)if(i instanceof Promise)return this._preserveStack(4,l,c,n,a),i;c<0&&this._escHandlerFb(this._collect<<8|r),this.precedingJoinState=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|r,this._params);break;case 13:for(let i=a+1;;++i)if(i>=t||24===(r=e[i])||26===r||27===r||r>127&&r<Uy){this._dcsParser.put(e,a,i),a=i-1;break}break;case 14:if(i=this._dcsParser.unhook(24!==r&&26!==r),i)return this._preserveStack(6,[],0,n,a),i;27===r&&(n|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0;break;case 4:this._oscParser.start();break;case 5:for(let i=a+1;;i++)if(i>=t||(r=e[i])<32||r>127&&r<Uy){this._oscParser.put(e,a,i),a=i-1;break}break;case 6:if(i=this._oscParser.end(24!==r&&26!==r),i)return this._preserveStack(5,[],0,n,a),i;27===r&&(n|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0}this.currentState=15&n}}},Xy=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,Gy=/^[\da-f]+$/;function Zy(e){if(!e)return;let t=e.toLowerCase();if(0===t.indexOf("rgb:")){t=t.slice(4);let e=Xy.exec(t);if(e){let t=e[1]?15:e[4]?255:e[7]?4095:65535;return[Math.round(parseInt(e[1]||e[4]||e[7]||e[10],16)/t*255),Math.round(parseInt(e[2]||e[5]||e[8]||e[11],16)/t*255),Math.round(parseInt(e[3]||e[6]||e[9]||e[12],16)/t*255)]}}else if(0===t.indexOf("#")&&(t=t.slice(1),Gy.exec(t)&&[3,6,9,12].includes(t.length))){let e=t.length/3,s=[0,0,0];for(let i=0;i<3;++i){let r=parseInt(t.slice(e*i,e*i+e),16);s[i]=1===e?r<<4:2===e?r:3===e?r>>4:r>>8}return s}}function Jy(e,t){let s=e.toString(16),i=s.length<2?"0"+s:s;switch(t){case 4:return s[0];case 8:return i;case 12:return(i+i).slice(0,3);default:return i+i}}function Qy(e,t=16){let[s,i,r]=e;return`rgb:${Jy(s,t)}/${Jy(i,t)}/${Jy(r,t)}`}var eb={"(":0,")":1,"*":2,"+":3,"-":1,".":2},tb=131072;function sb(e,t){if(e>24)return t.setWinLines||!1;switch(e){case 1:return!!t.restoreWin;case 2:return!!t.minimizeWin;case 3:return!!t.setWinPosition;case 4:return!!t.setWinSizePixels;case 5:return!!t.raiseWin;case 6:return!!t.lowerWin;case 7:return!!t.refreshWin;case 8:return!!t.setWinSizeChars;case 9:return!!t.maximizeWin;case 10:return!!t.fullscreenWin;case 11:return!!t.getWinState;case 13:return!!t.getWinPosition;case 14:return!!t.getWinSizePixels;case 15:return!!t.getScreenSizePixels;case 16:return!!t.getCellSizePixels;case 18:return!!t.getWinSizeChars;case 19:return!!t.getScreenSizeChars;case 20:return!!t.getIconTitle;case 21:return!!t.getWinTitle;case 22:return!!t.pushTitle;case 23:return!!t.popTitle;case 24:return!!t.setWinLines}return!1}var ib=0,rb=class extends gg{constructor(e,t,s,i,r,n,o,a,l=new Yy){super(),this._bufferService=e,this._charsetService=t,this._coreService=s,this._logService=i,this._optionsService=r,this._oscLinkService=n,this._coreMouseService=o,this._unicodeService=a,this._parser=l,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new km,this._utf8Decoder=new Nm,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=ry.clone(),this._eraseAttrDataInternal=ry.clone(),this._onRequestBell=this._register(new Tg),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this._register(new Tg),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this._register(new Tg),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this._register(new Tg),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this._register(new Tg),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this._register(new Tg),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this._register(new Tg),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this._register(new Tg),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this._register(new Tg),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this._register(new Tg),this.onLineFeed=this._onLineFeed.event,this._onScroll=this._register(new Tg),this.onScroll=this._onScroll.event,this._onTitleChange=this._register(new Tg),this.onTitleChange=this._onTitleChange.event,this._onColor=this._register(new Tg),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this._register(this._parser),this._dirtyRowTracker=new nb(this._bufferService),this._activeBuffer=this._bufferService.buffer,this._register(this._bufferService.buffers.onBufferActivate(e=>this._activeBuffer=e.activeBuffer)),this._parser.setCsiHandlerFallback((e,t)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(e),params:t.toArray()})}),this._parser.setEscHandlerFallback(e=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(e)})}),this._parser.setExecuteHandlerFallback(e=>{this._logService.debug("Unknown EXECUTE code: ",{code:e})}),this._parser.setOscHandlerFallback((e,t,s)=>{this._logService.debug("Unknown OSC code: ",{identifier:e,action:t,data:s})}),this._parser.setDcsHandlerFallback((e,t,s)=>{"HOOK"===t&&(s=s.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(e),action:t,payload:s})}),this._parser.setPrintHandler((e,t,s)=>this.print(e,t,s)),this._parser.registerCsiHandler({final:"@"},e=>this.insertChars(e)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},e=>this.scrollLeft(e)),this._parser.registerCsiHandler({final:"A"},e=>this.cursorUp(e)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},e=>this.scrollRight(e)),this._parser.registerCsiHandler({final:"B"},e=>this.cursorDown(e)),this._parser.registerCsiHandler({final:"C"},e=>this.cursorForward(e)),this._parser.registerCsiHandler({final:"D"},e=>this.cursorBackward(e)),this._parser.registerCsiHandler({final:"E"},e=>this.cursorNextLine(e)),this._parser.registerCsiHandler({final:"F"},e=>this.cursorPrecedingLine(e)),this._parser.registerCsiHandler({final:"G"},e=>this.cursorCharAbsolute(e)),this._parser.registerCsiHandler({final:"H"},e=>this.cursorPosition(e)),this._parser.registerCsiHandler({final:"I"},e=>this.cursorForwardTab(e)),this._parser.registerCsiHandler({final:"J"},e=>this.eraseInDisplay(e,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},e=>this.eraseInDisplay(e,!0)),this._parser.registerCsiHandler({final:"K"},e=>this.eraseInLine(e,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},e=>this.eraseInLine(e,!0)),this._parser.registerCsiHandler({final:"L"},e=>this.insertLines(e)),this._parser.registerCsiHandler({final:"M"},e=>this.deleteLines(e)),this._parser.registerCsiHandler({final:"P"},e=>this.deleteChars(e)),this._parser.registerCsiHandler({final:"S"},e=>this.scrollUp(e)),this._parser.registerCsiHandler({final:"T"},e=>this.scrollDown(e)),this._parser.registerCsiHandler({final:"X"},e=>this.eraseChars(e)),this._parser.registerCsiHandler({final:"Z"},e=>this.cursorBackwardTab(e)),this._parser.registerCsiHandler({final:"`"},e=>this.charPosAbsolute(e)),this._parser.registerCsiHandler({final:"a"},e=>this.hPositionRelative(e)),this._parser.registerCsiHandler({final:"b"},e=>this.repeatPrecedingCharacter(e)),this._parser.registerCsiHandler({final:"c"},e=>this.sendDeviceAttributesPrimary(e)),this._parser.registerCsiHandler({prefix:">",final:"c"},e=>this.sendDeviceAttributesSecondary(e)),this._parser.registerCsiHandler({final:"d"},e=>this.linePosAbsolute(e)),this._parser.registerCsiHandler({final:"e"},e=>this.vPositionRelative(e)),this._parser.registerCsiHandler({final:"f"},e=>this.hVPosition(e)),this._parser.registerCsiHandler({final:"g"},e=>this.tabClear(e)),this._parser.registerCsiHandler({final:"h"},e=>this.setMode(e)),this._parser.registerCsiHandler({prefix:"?",final:"h"},e=>this.setModePrivate(e)),this._parser.registerCsiHandler({final:"l"},e=>this.resetMode(e)),this._parser.registerCsiHandler({prefix:"?",final:"l"},e=>this.resetModePrivate(e)),this._parser.registerCsiHandler({final:"m"},e=>this.charAttributes(e)),this._parser.registerCsiHandler({final:"n"},e=>this.deviceStatus(e)),this._parser.registerCsiHandler({prefix:"?",final:"n"},e=>this.deviceStatusPrivate(e)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},e=>this.softReset(e)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},e=>this.setCursorStyle(e)),this._parser.registerCsiHandler({final:"r"},e=>this.setScrollRegion(e)),this._parser.registerCsiHandler({final:"s"},e=>this.saveCursor(e)),this._parser.registerCsiHandler({final:"t"},e=>this.windowOptions(e)),this._parser.registerCsiHandler({final:"u"},e=>this.restoreCursor(e)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},e=>this.insertColumns(e)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},e=>this.deleteColumns(e)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},e=>this.selectProtected(e)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},e=>this.requestMode(e,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},e=>this.requestMode(e,!1)),this._parser.setExecuteHandler(xv.BEL,()=>this.bell()),this._parser.setExecuteHandler(xv.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(xv.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(xv.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(xv.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(xv.BS,()=>this.backspace()),this._parser.setExecuteHandler(xv.HT,()=>this.tab()),this._parser.setExecuteHandler(xv.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(xv.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(bv.IND,()=>this.index()),this._parser.setExecuteHandler(bv.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(bv.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new $y(e=>(this.setTitle(e),this.setIconName(e),!0))),this._parser.registerOscHandler(1,new $y(e=>this.setIconName(e))),this._parser.registerOscHandler(2,new $y(e=>this.setTitle(e))),this._parser.registerOscHandler(4,new $y(e=>this.setOrReportIndexedColor(e))),this._parser.registerOscHandler(8,new $y(e=>this.setHyperlink(e))),this._parser.registerOscHandler(10,new $y(e=>this.setOrReportFgColor(e))),this._parser.registerOscHandler(11,new $y(e=>this.setOrReportBgColor(e))),this._parser.registerOscHandler(12,new $y(e=>this.setOrReportCursorColor(e))),this._parser.registerOscHandler(104,new $y(e=>this.restoreIndexedColor(e))),this._parser.registerOscHandler(110,new $y(e=>this.restoreFgColor(e))),this._parser.registerOscHandler(111,new $y(e=>this.restoreBgColor(e))),this._parser.registerOscHandler(112,new $y(e=>this.restoreCursorColor(e))),this._parser.registerEscHandler({final:"7"},()=>this.saveCursor()),this._parser.registerEscHandler({final:"8"},()=>this.restoreCursor()),this._parser.registerEscHandler({final:"D"},()=>this.index()),this._parser.registerEscHandler({final:"E"},()=>this.nextLine()),this._parser.registerEscHandler({final:"H"},()=>this.tabSet()),this._parser.registerEscHandler({final:"M"},()=>this.reverseIndex()),this._parser.registerEscHandler({final:"="},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:">"},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:"c"},()=>this.fullReset()),this._parser.registerEscHandler({final:"n"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"o"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"|"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"}"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"~"},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:"%",final:"@"},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:"%",final:"G"},()=>this.selectDefaultCharset());for(let c in dy)this._parser.registerEscHandler({intermediates:"(",final:c},()=>this.selectCharset("("+c)),this._parser.registerEscHandler({intermediates:")",final:c},()=>this.selectCharset(")"+c)),this._parser.registerEscHandler({intermediates:"*",final:c},()=>this.selectCharset("*"+c)),this._parser.registerEscHandler({intermediates:"+",final:c},()=>this.selectCharset("+"+c)),this._parser.registerEscHandler({intermediates:"-",final:c},()=>this.selectCharset("-"+c)),this._parser.registerEscHandler({intermediates:".",final:c},()=>this.selectCharset("."+c)),this._parser.registerEscHandler({intermediates:"/",final:c},()=>this.selectCharset("/"+c));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(e=>(this._logService.error("Parsing error: ",e),e)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new Ky((e,t)=>this.requestStatusString(e,t)))}getAttrData(){return this._curAttrData}_preserveStack(e,t,s,i){this._parseStack.paused=!0,this._parseStack.cursorStartX=e,this._parseStack.cursorStartY=t,this._parseStack.decodedLength=s,this._parseStack.position=i}_logSlowResolvingAsync(e){this._logService.logLevel<=3&&Promise.race([e,new Promise((e,t)=>setTimeout(()=>t("#SLOW_TIMEOUT"),5e3))]).catch(e=>{if("#SLOW_TIMEOUT"!==e)throw e;console.warn("async parser handler taking longer than 5000 ms")})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(e,t){let s,i=this._activeBuffer.x,r=this._activeBuffer.y,n=0,o=this._parseStack.paused;if(o){if(s=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,t))return this._logSlowResolvingAsync(s),s;i=this._parseStack.cursorStartX,r=this._parseStack.cursorStartY,this._parseStack.paused=!1,e.length>tb&&(n=this._parseStack.position+tb)}if(this._logService.logLevel<=1&&this._logService.debug("parsing data "+("string"==typeof e?` "${e}"`:` "${Array.prototype.map.call(e,e=>String.fromCharCode(e)).join("")}"`)),0===this._logService.logLevel&&this._logService.trace("parsing data (codes)","string"==typeof e?e.split("").map(e=>e.charCodeAt(0)):e),this._parseBuffer.length<e.length&&this._parseBuffer.length<tb&&(this._parseBuffer=new Uint32Array(Math.min(e.length,tb))),o||this._dirtyRowTracker.clearRange(),e.length>tb)for(let c=n;c<e.length;c+=tb){let t=c+tb<e.length?c+tb:e.length,n="string"==typeof e?this._stringDecoder.decode(e.substring(c,t),this._parseBuffer):this._utf8Decoder.decode(e.subarray(c,t),this._parseBuffer);if(s=this._parser.parse(this._parseBuffer,n))return this._preserveStack(i,r,n,c),this._logSlowResolvingAsync(s),s}else if(!o){let t="string"==typeof e?this._stringDecoder.decode(e,this._parseBuffer):this._utf8Decoder.decode(e,this._parseBuffer);if(s=this._parser.parse(this._parseBuffer,t))return this._preserveStack(i,r,t,0),this._logSlowResolvingAsync(s),s}(this._activeBuffer.x!==i||this._activeBuffer.y!==r)&&this._onCursorMove.fire();let a=this._dirtyRowTracker.end+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp),l=this._dirtyRowTracker.start+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp);l<this._bufferService.rows&&this._onRequestRefreshRows.fire({start:Math.min(l,this._bufferService.rows-1),end:Math.min(a,this._bufferService.rows-1)})}print(e,t,s){let i,r,n=this._charsetService.charset,o=this._optionsService.rawOptions.screenReaderMode,a=this._bufferService.cols,l=this._coreService.decPrivateModes.wraparound,c=this._coreService.modes.insertMode,h=this._curAttrData,d=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._activeBuffer.x&&s-t>0&&2===d.getWidth(this._activeBuffer.x-1)&&d.setCellFromCodepoint(this._activeBuffer.x-1,0,1,h);let u=this._parser.precedingJoinState;for(let f=t;f<s;++f){if(i=e[f],i<127&&n){let e=n[String.fromCharCode(i)];e&&(i=e.charCodeAt(0))}let t=this._unicodeService.charProperties(i,u);r=Ly.extractWidth(t);let s=Ly.extractShouldJoin(t),p=s?Ly.extractWidth(u):0;if(u=t,o&&this._onA11yChar.fire(Sm(i)),this._getCurrentLinkId()&&this._oscLinkService.addLineToLink(this._getCurrentLinkId(),this._activeBuffer.ybase+this._activeBuffer.y),this._activeBuffer.x+r-p>a)if(l){let e=d,t=this._activeBuffer.x-p;for(this._activeBuffer.x=p,this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData(),!0)):(this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),d=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),p>0&&d instanceof oy&&d.copyCellsFrom(e,t,0,p,!1);t<a;)e.setCellFromCodepoint(t++,0,1,h)}else if(this._activeBuffer.x=a-1,2===r)continue;if(s&&this._activeBuffer.x){let e=d.getWidth(this._activeBuffer.x-1)?1:2;d.addCodepointToCell(this._activeBuffer.x-e,i,r);for(let t=r-p;--t>=0;)d.setCellFromCodepoint(this._activeBuffer.x++,0,0,h);continue}if(c&&(d.insertCells(this._activeBuffer.x,r-p,this._activeBuffer.getNullCell(h)),2===d.getWidth(a-1)&&d.setCellFromCodepoint(a-1,0,1,h)),d.setCellFromCodepoint(this._activeBuffer.x++,i,r,h),r>0)for(;--r;)d.setCellFromCodepoint(this._activeBuffer.x++,0,0,h)}this._parser.precedingJoinState=u,this._activeBuffer.x<a&&s-t>0&&0===d.getWidth(this._activeBuffer.x)&&!d.hasContent(this._activeBuffer.x)&&d.setCellFromCodepoint(this._activeBuffer.x,0,1,h),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(e,t){return"t"!==e.final||e.prefix||e.intermediates?this._parser.registerCsiHandler(e,t):this._parser.registerCsiHandler(e,e=>!sb(e.params[0],this._optionsService.rawOptions.windowOptions)||t(e))}registerDcsHandler(e,t){return this._parser.registerDcsHandler(e,new Ky(t))}registerEscHandler(e,t){return this._parser.registerEscHandler(e,t)}registerOscHandler(e,t){return this._parser.registerOscHandler(e,new $y(t))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){var e;if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(0===this._activeBuffer.x&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&(null==(e=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y))?void 0:e.isWrapped)){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);e.hasWidth(this._activeBuffer.x)&&!e.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let e=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-e),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(e=this._bufferService.cols-1){this._activeBuffer.x=Math.min(e,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(e,t){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=e,this._activeBuffer.y=this._activeBuffer.scrollTop+t):(this._activeBuffer.x=e,this._activeBuffer.y=t),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(e,t){this._restrictCursor(),this._setCursor(this._activeBuffer.x+e,this._activeBuffer.y+t)}cursorUp(e){let t=this._activeBuffer.y-this._activeBuffer.scrollTop;return t>=0?this._moveCursor(0,-Math.min(t,e.params[0]||1)):this._moveCursor(0,-(e.params[0]||1)),!0}cursorDown(e){let t=this._activeBuffer.scrollBottom-this._activeBuffer.y;return t>=0?this._moveCursor(0,Math.min(t,e.params[0]||1)):this._moveCursor(0,e.params[0]||1),!0}cursorForward(e){return this._moveCursor(e.params[0]||1,0),!0}cursorBackward(e){return this._moveCursor(-(e.params[0]||1),0),!0}cursorNextLine(e){return this.cursorDown(e),this._activeBuffer.x=0,!0}cursorPrecedingLine(e){return this.cursorUp(e),this._activeBuffer.x=0,!0}cursorCharAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(e){return this._setCursor(e.length>=2?(e.params[1]||1)-1:0,(e.params[0]||1)-1),!0}charPosAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(e){return this._moveCursor(e.params[0]||1,0),!0}linePosAbsolute(e){return this._setCursor(this._activeBuffer.x,(e.params[0]||1)-1),!0}vPositionRelative(e){return this._moveCursor(0,e.params[0]||1),!0}hVPosition(e){return this.cursorPosition(e),!0}tabClear(e){let t=e.params[0];return 0===t?delete this._activeBuffer.tabs[this._activeBuffer.x]:3===t&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(e){let t=e.params[0];return 1===t&&(this._curAttrData.bg|=536870912),(2===t||0===t)&&(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(e,t,s,i=!1,r=!1){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n.replaceCells(t,s,this._activeBuffer.getNullCell(this._eraseAttrData()),r),i&&(n.isWrapped=!1)}_resetBufferLine(e,t=!1){let s=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);s&&(s.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),t),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+e),s.isWrapped=!1)}eraseInDisplay(e,t=!1){var s;let i;switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:for(i=this._activeBuffer.y,this._dirtyRowTracker.markDirty(i),this._eraseInBufferLine(i++,this._activeBuffer.x,this._bufferService.cols,0===this._activeBuffer.x,t);i<this._bufferService.rows;i++)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(i);break;case 1:for(i=this._activeBuffer.y,this._dirtyRowTracker.markDirty(i),this._eraseInBufferLine(i,0,this._activeBuffer.x+1,!0,t),this._activeBuffer.x+1>=this._bufferService.cols&&(this._activeBuffer.lines.get(i+1).isWrapped=!1);i--;)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(0);break;case 2:if(this._optionsService.rawOptions.scrollOnEraseInDisplay){for(i=this._bufferService.rows,this._dirtyRowTracker.markRangeDirty(0,i-1);i--&&!(null==(s=this._activeBuffer.lines.get(this._activeBuffer.ybase+i))?void 0:s.getTrimmedLength()););for(;i>=0;i--)this._bufferService.scroll(this._eraseAttrData())}else{for(i=this._bufferService.rows,this._dirtyRowTracker.markDirty(i-1);i--;)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(0)}break;case 3:let e=this._activeBuffer.lines.length-this._bufferService.rows;e>0&&(this._activeBuffer.lines.trimStart(e),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-e,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-e,0),this._onScroll.fire(0))}return!0}eraseInLine(e,t=!1){switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,0===this._activeBuffer.x,t);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,t);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,t)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let s=this._activeBuffer.ybase+this._activeBuffer.y,i=this._bufferService.rows-1-this._activeBuffer.scrollBottom,r=this._bufferService.rows-1+this._activeBuffer.ybase-i+1;for(;t--;)this._activeBuffer.lines.splice(r-1,1),this._activeBuffer.lines.splice(s,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}deleteLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let s,i=this._activeBuffer.ybase+this._activeBuffer.y;for(s=this._bufferService.rows-1-this._activeBuffer.scrollBottom,s=this._bufferService.rows-1+this._activeBuffer.ybase-s;t--;)this._activeBuffer.lines.splice(i,1),this._activeBuffer.lines.splice(s,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}insertChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.insertCells(this._activeBuffer.x,e.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}deleteChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.deleteCells(this._activeBuffer.x,e.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}scrollUp(e){let t=e.params[0]||1;for(;t--;)this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollTop,1),this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollBottom,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollDown(e){let t=e.params[0]||1;for(;t--;)this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollBottom,1),this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollTop,0,this._activeBuffer.getBlankLine(ry));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollLeft(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let s=this._activeBuffer.scrollTop;s<=this._activeBuffer.scrollBottom;++s){let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+s);e.deleteCells(0,t,this._activeBuffer.getNullCell(this._eraseAttrData())),e.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollRight(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let s=this._activeBuffer.scrollTop;s<=this._activeBuffer.scrollBottom;++s){let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+s);e.insertCells(0,t,this._activeBuffer.getNullCell(this._eraseAttrData())),e.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}insertColumns(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let s=this._activeBuffer.scrollTop;s<=this._activeBuffer.scrollBottom;++s){let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+s);e.insertCells(this._activeBuffer.x,t,this._activeBuffer.getNullCell(this._eraseAttrData())),e.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}deleteColumns(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let s=this._activeBuffer.scrollTop;s<=this._activeBuffer.scrollBottom;++s){let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+s);e.deleteCells(this._activeBuffer.x,t,this._activeBuffer.getNullCell(this._eraseAttrData())),e.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}eraseChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.replaceCells(this._activeBuffer.x,this._activeBuffer.x+(e.params[0]||1),this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}repeatPrecedingCharacter(e){let t=this._parser.precedingJoinState;if(!t)return!0;let s=e.params[0]||1,i=Ly.extractWidth(t),r=this._activeBuffer.x-i,n=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).getString(r),o=new Uint32Array(n.length*s),a=0;for(let c=0;c<n.length;){let e=n.codePointAt(c)||0;o[a++]=e,c+=e>65535?2:1}let l=a;for(let c=1;c<s;++c)o.copyWithin(l,0,a),l+=a;return this.print(o,0,l),!0}sendDeviceAttributesPrimary(e){return e.params[0]>0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(xv.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(xv.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(e){return e.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(xv.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(xv.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(e.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(xv.ESC+"[>83;40003;0c")),!0}_is(e){return 0===(this._optionsService.rawOptions.termName+"").indexOf(e)}setMode(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 4:this._coreService.modes.insertMode=!0;break;case 20:this._optionsService.options.convertEol=!0}return!0}setModePrivate(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!0;break;case 2:this._charsetService.setgCharset(0,uy),this._charsetService.setgCharset(1,uy),this._charsetService.setgCharset(2,uy),this._charsetService.setgCharset(3,uy);break;case 3:this._optionsService.rawOptions.windowOptions.setWinLines&&(this._bufferService.resize(132,this._bufferService.rows),this._onRequestReset.fire());break;case 6:this._coreService.decPrivateModes.origin=!0,this._setCursor(0,0);break;case 7:this._coreService.decPrivateModes.wraparound=!0;break;case 12:this._optionsService.options.cursorBlink=!0;break;case 45:this._coreService.decPrivateModes.reverseWraparound=!0;break;case 66:this._logService.debug("Serial port requested application keypad."),this._coreService.decPrivateModes.applicationKeypad=!0,this._onRequestSyncScrollBar.fire();break;case 9:this._coreMouseService.activeProtocol="X10";break;case 1e3:this._coreMouseService.activeProtocol="VT200";break;case 1002:this._coreMouseService.activeProtocol="DRAG";break;case 1003:this._coreMouseService.activeProtocol="ANY";break;case 1004:this._coreService.decPrivateModes.sendFocus=!0,this._onRequestSendFocus.fire();break;case 1005:this._logService.debug("DECSET 1005 not supported (see #2507)");break;case 1006:this._coreMouseService.activeEncoding="SGR";break;case 1015:this._logService.debug("DECSET 1015 not supported (see #2507)");break;case 1016:this._coreMouseService.activeEncoding="SGR_PIXELS";break;case 25:this._coreService.isCursorHidden=!1;break;case 1048:this.saveCursor();break;case 1049:this.saveCursor();case 47:case 1047:this._bufferService.buffers.activateAltBuffer(this._eraseAttrData()),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(void 0),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!0;break;case 2026:this._coreService.decPrivateModes.synchronizedOutput=!0}return!0}resetMode(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 4:this._coreService.modes.insertMode=!1;break;case 20:this._optionsService.options.convertEol=!1}return!0}resetModePrivate(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!1;break;case 3:this._optionsService.rawOptions.windowOptions.setWinLines&&(this._bufferService.resize(80,this._bufferService.rows),this._onRequestReset.fire());break;case 6:this._coreService.decPrivateModes.origin=!1,this._setCursor(0,0);break;case 7:this._coreService.decPrivateModes.wraparound=!1;break;case 12:this._optionsService.options.cursorBlink=!1;break;case 45:this._coreService.decPrivateModes.reverseWraparound=!1;break;case 66:this._logService.debug("Switching back to normal keypad."),this._coreService.decPrivateModes.applicationKeypad=!1,this._onRequestSyncScrollBar.fire();break;case 9:case 1e3:case 1002:case 1003:this._coreMouseService.activeProtocol="NONE";break;case 1004:this._coreService.decPrivateModes.sendFocus=!1;break;case 1005:this._logService.debug("DECRST 1005 not supported (see #2507)");break;case 1006:case 1016:this._coreMouseService.activeEncoding="DEFAULT";break;case 1015:this._logService.debug("DECRST 1015 not supported (see #2507)");break;case 25:this._coreService.isCursorHidden=!0;break;case 1048:this.restoreCursor();break;case 1049:case 47:case 1047:this._bufferService.buffers.activateNormalBuffer(),1049===e.params[t]&&this.restoreCursor(),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(void 0),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!1;break;case 2026:this._coreService.decPrivateModes.synchronizedOutput=!1,this._onRequestRefreshRows.fire(void 0)}return!0}requestMode(e,t){let s;var i;(i=s||(s={}))[i.NOT_RECOGNIZED=0]="NOT_RECOGNIZED",i[i.SET=1]="SET",i[i.RESET=2]="RESET",i[i.PERMANENTLY_SET=3]="PERMANENTLY_SET",i[i.PERMANENTLY_RESET=4]="PERMANENTLY_RESET";let r=this._coreService.decPrivateModes,{activeProtocol:n,activeEncoding:o}=this._coreMouseService,a=this._coreService,{buffers:l,cols:c}=this._bufferService,{active:h,alt:d}=l,u=this._optionsService.rawOptions,f=(e,s)=>(a.triggerDataEvent(`${xv.ESC}[${t?"":"?"}${e};${s}$y`),!0),p=e=>e?1:2,m=e.params[0];return f(m,t?2===m?4:4===m?p(a.modes.insertMode):12===m?3:20===m?p(u.convertEol):0:1===m?p(r.applicationCursorKeys):3===m?u.windowOptions.setWinLines?80===c?2:132===c?1:0:0:6===m?p(r.origin):7===m?p(r.wraparound):8===m?3:9===m?p("X10"===n):12===m?p(u.cursorBlink):25===m?p(!a.isCursorHidden):45===m?p(r.reverseWraparound):66===m?p(r.applicationKeypad):67===m?4:1e3===m?p("VT200"===n):1002===m?p("DRAG"===n):1003===m?p("ANY"===n):1004===m?p(r.sendFocus):1005===m?4:1006===m?p("SGR"===o):1015===m?4:1016===m?p("SGR_PIXELS"===o):1048===m?1:47===m||1047===m||1049===m?p(h===d):2004===m?p(r.bracketedPasteMode):2026===m?p(r.synchronizedOutput):0)}_updateAttrColor(e,t,s,i,r){return 2===t?(e|=50331648,e&=-16777216,e|=jm.fromColorRGB([s,i,r])):5===t&&(e&=-50331904,e|=33554432|255&s),e}_extractColor(e,t,s){let i=[0,0,-1,0,0,0],r=0,n=0;do{if(i[n+r]=e.params[t+n],e.hasSubParams(t+n)){let s=e.getSubParams(t+n),o=0;do{5===i[1]&&(r=1),i[n+o+1+r]=s[o]}while(++o<s.length&&o+n+1+r<i.length);break}if(5===i[1]&&n+r>=2||2===i[1]&&n+r>=5)break;i[1]&&(r=1)}while(++n+t<e.length&&n+r<i.length);for(let o=2;o<i.length;++o)-1===i[o]&&(i[o]=0);switch(i[0]){case 38:s.fg=this._updateAttrColor(s.fg,i[1],i[3],i[4],i[5]);break;case 48:s.bg=this._updateAttrColor(s.bg,i[1],i[3],i[4],i[5]);break;case 58:s.extended=s.extended.clone(),s.extended.underlineColor=this._updateAttrColor(s.extended.underlineColor,i[1],i[3],i[4],i[5])}return n}_processUnderline(e,t){t.extended=t.extended.clone(),(!~e||e>5)&&(e=1),t.extended.underlineStyle=e,t.fg|=268435456,0===e&&(t.fg&=-268435457),t.updateExtended()}_processSGR0(e){e.fg=ry.fg,e.bg=ry.bg,e.extended=e.extended.clone(),e.extended.underlineStyle=0,e.extended.underlineColor&=-67108864,e.updateExtended()}charAttributes(e){if(1===e.length&&0===e.params[0])return this._processSGR0(this._curAttrData),!0;let t,s=e.length,i=this._curAttrData;for(let r=0;r<s;r++)t=e.params[r],t>=30&&t<=37?(i.fg&=-50331904,i.fg|=16777216|t-30):t>=40&&t<=47?(i.bg&=-50331904,i.bg|=16777216|t-40):t>=90&&t<=97?(i.fg&=-50331904,i.fg|=16777224|t-90):t>=100&&t<=107?(i.bg&=-50331904,i.bg|=16777224|t-100):0===t?this._processSGR0(i):1===t?i.fg|=134217728:3===t?i.bg|=67108864:4===t?(i.fg|=268435456,this._processUnderline(e.hasSubParams(r)?e.getSubParams(r)[0]:1,i)):5===t?i.fg|=536870912:7===t?i.fg|=67108864:8===t?i.fg|=1073741824:9===t?i.fg|=2147483648:2===t?i.bg|=134217728:21===t?this._processUnderline(2,i):22===t?(i.fg&=-134217729,i.bg&=-134217729):23===t?i.bg&=-67108865:24===t?(i.fg&=-268435457,this._processUnderline(0,i)):25===t?i.fg&=-536870913:27===t?i.fg&=-67108865:28===t?i.fg&=-1073741825:29===t?i.fg&=2147483647:39===t?(i.fg&=-67108864,i.fg|=16777215&ry.fg):49===t?(i.bg&=-67108864,i.bg|=16777215&ry.bg):38===t||48===t||58===t?r+=this._extractColor(e,r,i):53===t?i.bg|=1073741824:55===t?i.bg&=-1073741825:59===t?(i.extended=i.extended.clone(),i.extended.underlineColor=-1,i.updateExtended()):100===t?(i.fg&=-67108864,i.fg|=16777215&ry.fg,i.bg&=-67108864,i.bg|=16777215&ry.bg):this._logService.debug("Unknown SGR attribute: %d.",t);return!0}deviceStatus(e){switch(e.params[0]){case 5:this._coreService.triggerDataEvent(`${xv.ESC}[0n`);break;case 6:let e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${xv.ESC}[${e};${t}R`)}return!0}deviceStatusPrivate(e){if(6===e.params[0]){let e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${xv.ESC}[?${e};${t}R`)}return!0}softReset(e){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=ry.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(e){let t=0===e.length?1:e.params[0];if(0===t)this._coreService.decPrivateModes.cursorStyle=void 0,this._coreService.decPrivateModes.cursorBlink=void 0;else{switch(t){case 1:case 2:this._coreService.decPrivateModes.cursorStyle="block";break;case 3:case 4:this._coreService.decPrivateModes.cursorStyle="underline";break;case 5:case 6:this._coreService.decPrivateModes.cursorStyle="bar"}let e=t%2==1;this._coreService.decPrivateModes.cursorBlink=e}return!0}setScrollRegion(e){let t,s=e.params[0]||1;return(e.length<2||(t=e.params[1])>this._bufferService.rows||0===t)&&(t=this._bufferService.rows),t>s&&(this._activeBuffer.scrollTop=s-1,this._activeBuffer.scrollBottom=t-1,this._setCursor(0,0)),!0}windowOptions(e){if(!sb(e.params[0],this._optionsService.rawOptions.windowOptions))return!0;let t=e.length>1?e.params[1]:0;switch(e.params[0]){case 14:2!==t&&this._onRequestWindowsOptionsReport.fire(0);break;case 16:this._onRequestWindowsOptionsReport.fire(1);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${xv.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:(0===t||2===t)&&(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),(0===t||1===t)&&(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:(0===t||2===t)&&this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),(0===t||1===t)&&this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(e){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(e){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(e){return this._windowTitle=e,this._onTitleChange.fire(e),!0}setIconName(e){return this._iconName=e,!0}setOrReportIndexedColor(e){let t=[],s=e.split(";");for(;s.length>1;){let e=s.shift(),i=s.shift();if(/^\d+$/.exec(e)){let s=parseInt(e);if(ob(s))if("?"===i)t.push({type:0,index:s});else{let e=Zy(i);e&&t.push({type:1,index:s,color:e})}}}return t.length&&this._onColor.fire(t),!0}setHyperlink(e){let t=e.indexOf(";");if(-1===t)return!0;let s=e.slice(0,t).trim(),i=e.slice(t+1);return i?this._createHyperlink(s,i):!s.trim()&&this._finishHyperlink()}_createHyperlink(e,t){this._getCurrentLinkId()&&this._finishHyperlink();let s,i=e.split(":"),r=i.findIndex(e=>e.startsWith("id="));return-1!==r&&(s=i[r].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:s,uri:t}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(e,t){let s=e.split(";");for(let i=0;i<s.length&&!(t>=this._specialColors.length);++i,++t)if("?"===s[i])this._onColor.fire([{type:0,index:this._specialColors[t]}]);else{let e=Zy(s[i]);e&&this._onColor.fire([{type:1,index:this._specialColors[t],color:e}])}return!0}setOrReportFgColor(e){return this._setOrReportSpecialColor(e,0)}setOrReportBgColor(e){return this._setOrReportSpecialColor(e,1)}setOrReportCursorColor(e){return this._setOrReportSpecialColor(e,2)}restoreIndexedColor(e){if(!e)return this._onColor.fire([{type:2}]),!0;let t=[],s=e.split(";");for(let i=0;i<s.length;++i)if(/^\d+$/.exec(s[i])){let e=parseInt(s[i]);ob(e)&&t.push({type:2,index:e})}return t.length&&this._onColor.fire(t),!0}restoreFgColor(e){return this._onColor.fire([{type:2,index:256}]),!0}restoreBgColor(e){return this._onColor.fire([{type:2,index:257}]),!0}restoreCursorColor(e){return this._onColor.fire([{type:2,index:258}]),!0}nextLine(){return this._activeBuffer.x=0,this.index(),!0}keypadApplicationMode(){return this._logService.debug("Serial port requested application keypad."),this._coreService.decPrivateModes.applicationKeypad=!0,this._onRequestSyncScrollBar.fire(),!0}keypadNumericMode(){return this._logService.debug("Switching back to normal keypad."),this._coreService.decPrivateModes.applicationKeypad=!1,this._onRequestSyncScrollBar.fire(),!0}selectDefaultCharset(){return this._charsetService.setgLevel(0),this._charsetService.setgCharset(0,uy),!0}selectCharset(e){return 2!==e.length?(this.selectDefaultCharset(),!0):("/"===e[0]||this._charsetService.setgCharset(eb[e[0]],dy[e[1]]||uy),!0)}index(){return this._restrictCursor(),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){let e=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,e,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=ry.clone(),this._eraseAttrDataInternal=ry.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(e){return this._charsetService.setgLevel(e),!0}screenAlignmentPattern(){let e=new Dm;e.content=4194373,e.fg=this._curAttrData.fg,e.bg=this._curAttrData.bg,this._setCursor(0,0);for(let t=0;t<this._bufferService.rows;++t){let s=this._activeBuffer.ybase+this._activeBuffer.y+t,i=this._activeBuffer.lines.get(s);i&&(i.fill(e),i.isWrapped=!1)}return this._dirtyRowTracker.markAllDirty(),this._setCursor(0,0),!0}requestStatusString(e,t){let s=this._bufferService.buffer,i=this._optionsService.rawOptions;return(e=>(this._coreService.triggerDataEvent(`${xv.ESC}${e}${xv.ESC}\\`),!0))('"q'===e?`P1$r${this._curAttrData.isProtected()?1:0}"q`:'"p'===e?'P1$r61;1"p':"r"===e?`P1$r${s.scrollTop+1};${s.scrollBottom+1}r`:"m"===e?"P1$r0m":" q"===e?`P1$r${{block:2,underline:4,bar:6}[i.cursorStyle]-(i.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(e,t){this._dirtyRowTracker.markRangeDirty(e,t)}},nb=class{constructor(e){this._bufferService=e,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(e){e<this.start?this.start=e:e>this.end&&(this.end=e)}markRangeDirty(e,t){e>t&&(ib=e,e=t,t=ib),e<this.start&&(this.start=e),t>this.end&&(this.end=t)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function ob(e){return 0<=e&&e<256}nb=um([fm(0,Im)],nb);var ab=class extends gg{constructor(e){super(),this._action=e,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this._register(new Tg),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(e,t){if(void 0!==t&&this._syncCalls>t)return void(this._syncCalls=0);if(this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let s;for(this._isSyncWriting=!0;s=this._writeBuffer.shift();){this._action(s);let e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(e,t){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t)}_innerWrite(e=0,t=!0){let s=e||performance.now();for(;this._writeBuffer.length>this._bufferOffset;){let e=this._writeBuffer[this._bufferOffset],i=this._action(e,t);if(i){let e=e=>performance.now()-s>=12?setTimeout(()=>this._innerWrite(0,e)):this._innerWrite(s,e);return void i.catch(e=>(queueMicrotask(()=>{throw e}),Promise.resolve(!1))).then(e)}let r=this._callbacks[this._bufferOffset];if(r&&r(),this._bufferOffset++,this._pendingData-=e.length,performance.now()-s>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}},lb=class{constructor(e){this._bufferService=e,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(e){let t=this._bufferService.buffer;if(void 0===e.id){let s=t.addMarker(t.ybase+t.y),i={data:e,id:this._nextId++,lines:[s]};return s.onDispose(()=>this._removeMarkerFromLink(i,s)),this._dataByLinkId.set(i.id,i),i.id}let s=e,i=this._getEntryIdKey(s),r=this._entriesWithId.get(i);if(r)return this.addLineToLink(r.id,t.ybase+t.y),r.id;let n=t.addMarker(t.ybase+t.y),o={id:this._nextId++,key:this._getEntryIdKey(s),data:s,lines:[n]};return n.onDispose(()=>this._removeMarkerFromLink(o,n)),this._entriesWithId.set(o.key,o),this._dataByLinkId.set(o.id,o),o.id}addLineToLink(e,t){let s=this._dataByLinkId.get(e);if(s&&s.lines.every(e=>e.line!==t)){let e=this._bufferService.buffer.addMarker(t);s.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(s,e))}}getLinkData(e){var t;return null==(t=this._dataByLinkId.get(e))?void 0:t.data}_getEntryIdKey(e){return`${e.id};;${e.uri}`}_removeMarkerFromLink(e,t){let s=e.lines.indexOf(t);-1!==s&&(e.lines.splice(s,1),0===e.lines.length&&(void 0!==e.data.id&&this._entriesWithId.delete(e.key),this._dataByLinkId.delete(e.id)))}};lb=um([fm(0,Im)],lb);var cb=!1,hb=class extends gg{constructor(e){super(),this._windowsWrappingHeuristics=this._register(new _g),this._onBinary=this._register(new Tg),this.onBinary=this._onBinary.event,this._onData=this._register(new Tg),this.onData=this._onData.event,this._onLineFeed=this._register(new Tg),this.onLineFeed=this._onLineFeed.event,this._onResize=this._register(new Tg),this.onResize=this._onResize.event,this._onWriteParsed=this._register(new Tg),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this._register(new Tg),this._instantiationService=new ey,this.optionsService=this._register(new xy(e)),this._instantiationService.setService(Hm,this.optionsService),this._bufferService=this._register(this._instantiationService.createInstance(gy)),this._instantiationService.setService(Im,this._bufferService),this._logService=this._register(this._instantiationService.createInstance(sy)),this._instantiationService.setService($m,this._logService),this.coreService=this._register(this._instantiationService.createInstance(Sy)),this._instantiationService.setService(Om,this.coreService),this.coreMouseService=this._register(this._instantiationService.createInstance(jy)),this._instantiationService.setService(Bm,this.coreMouseService),this.unicodeService=this._register(this._instantiationService.createInstance(Ly)),this._instantiationService.setService(Fm,this.unicodeService),this._charsetService=this._instantiationService.createInstance(Ty),this._instantiationService.setService(Am,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(lb),this._instantiationService.setService(Wm,this._oscLinkService),this._inputHandler=this._register(new rb(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this._register(yg.forward(this._inputHandler.onLineFeed,this._onLineFeed)),this._register(this._inputHandler),this._register(yg.forward(this._bufferService.onResize,this._onResize)),this._register(yg.forward(this.coreService.onData,this._onData)),this._register(yg.forward(this.coreService.onBinary,this._onBinary)),this._register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom(!0))),this._register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this._register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this._register(this._bufferService.onScroll(()=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this._register(new ab((e,t)=>this._inputHandler.parse(e,t))),this._register(yg.forward(this._writeBuffer.onWriteParsed,this._onWriteParsed))}get onScroll(){return this._onScrollApi||(this._onScrollApi=this._register(new Tg),this._onScroll.event(e=>{var t;null==(t=this._onScrollApi)||t.fire(e.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(e){for(let t in e)this.optionsService.options[t]=e[t]}write(e,t){this._writeBuffer.write(e,t)}writeSync(e,t){this._logService.logLevel<=3&&!cb&&(this._logService.warn("writeSync is unreliable and will be removed soon."),cb=!0),this._writeBuffer.writeSync(e,t)}input(e,t=!0){this.coreService.triggerDataEvent(e,t)}resize(e,t){isNaN(e)||isNaN(t)||(e=Math.max(e,2),t=Math.max(t,1),this._bufferService.resize(e,t))}scroll(e,t=!1){this._bufferService.scroll(e,t)}scrollLines(e,t){this._bufferService.scrollLines(e,t)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(e){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){let t=e-this._bufferService.buffer.ydisp;0!==t&&this.scrollLines(t)}registerEscHandler(e,t){return this._inputHandler.registerEscHandler(e,t)}registerDcsHandler(e,t){return this._inputHandler.registerDcsHandler(e,t)}registerCsiHandler(e,t){return this._inputHandler.registerCsiHandler(e,t)}registerOscHandler(e,t){return this._inputHandler.registerOscHandler(e,t)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let e=!1,t=this.optionsService.rawOptions.windowsPty;t&&void 0!==t.buildNumber&&void 0!==t.buildNumber?e="conpty"===t.backend&&t.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(e=!0),e?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){let e=[];e.push(this.onLineFeed(Iy.bind(null,this._bufferService))),e.push(this.registerCsiHandler({final:"H"},()=>(Iy(this._bufferService),!1))),this._windowsWrappingHeuristics.value=fg(()=>{for(let t of e)t.dispose()})}}},db={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};var ub=0,fb=class{constructor(e){this._getKey=e,this._array=[],this._insertedValues=[],this._flushInsertedTask=new Ex,this._isFlushingInserted=!1,this._deletedIndices=[],this._flushDeletedTask=new Ex,this._isFlushingDeleted=!1}clear(){this._array.length=0,this._insertedValues.length=0,this._flushInsertedTask.clear(),this._isFlushingInserted=!1,this._deletedIndices.length=0,this._flushDeletedTask.clear(),this._isFlushingDeleted=!1}insert(e){this._flushCleanupDeleted(),0===this._insertedValues.length&&this._flushInsertedTask.enqueue(()=>this._flushInserted()),this._insertedValues.push(e)}_flushInserted(){let e=this._insertedValues.sort((e,t)=>this._getKey(e)-this._getKey(t)),t=0,s=0,i=new Array(this._array.length+this._insertedValues.length);for(let r=0;r<i.length;r++)s>=this._array.length||this._getKey(e[t])<=this._getKey(this._array[s])?(i[r]=e[t],t++):i[r]=this._array[s++];this._array=i,this._insertedValues.length=0}_flushCleanupInserted(){!this._isFlushingInserted&&this._insertedValues.length>0&&this._flushInsertedTask.flush()}delete(e){if(this._flushCleanupInserted(),0===this._array.length)return!1;let t=this._getKey(e);if(void 0===t||-1===(ub=this._search(t))||this._getKey(this._array[ub])!==t)return!1;do{if(this._array[ub]===e)return 0===this._deletedIndices.length&&this._flushDeletedTask.enqueue(()=>this._flushDeleted()),this._deletedIndices.push(ub),!0}while(++ub<this._array.length&&this._getKey(this._array[ub])===t);return!1}_flushDeleted(){this._isFlushingDeleted=!0;let e=this._deletedIndices.sort((e,t)=>e-t),t=0,s=new Array(this._array.length-e.length),i=0;for(let r=0;r<this._array.length;r++)e[t]===r?t++:s[i++]=this._array[r];this._array=s,this._deletedIndices.length=0,this._isFlushingDeleted=!1}_flushCleanupDeleted(){!this._isFlushingDeleted&&this._deletedIndices.length>0&&this._flushDeletedTask.flush()}*getKeyIterator(e){if(this._flushCleanupInserted(),this._flushCleanupDeleted(),0!==this._array.length&&(!((ub=this._search(e))<0||ub>=this._array.length)&&this._getKey(this._array[ub])===e))do{yield this._array[ub]}while(++ub<this._array.length&&this._getKey(this._array[ub])===e)}forEachByKey(e,t){if(this._flushCleanupInserted(),this._flushCleanupDeleted(),0!==this._array.length&&(!((ub=this._search(e))<0||ub>=this._array.length)&&this._getKey(this._array[ub])===e))do{t(this._array[ub])}while(++ub<this._array.length&&this._getKey(this._array[ub])===e)}values(){return this._flushCleanupInserted(),this._flushCleanupDeleted(),[...this._array].values()}_search(e){let t=0,s=this._array.length-1;for(;s>=t;){let i=t+s>>1,r=this._getKey(this._array[i]);if(r>e)s=i-1;else{if(!(r<e)){for(;i>0&&this._getKey(this._array[i-1])===e;)i--;return i}t=i+1}}return t}},pb=0,mb=0,gb=class extends gg{constructor(){super(),this._decorations=new fb(e=>null==e?void 0:e.marker.line),this._onDecorationRegistered=this._register(new Tg),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this._register(new Tg),this.onDecorationRemoved=this._onDecorationRemoved.event,this._register(fg(()=>this.reset()))}get decorations(){return this._decorations.values()}registerDecoration(e){if(e.marker.isDisposed)return;let t=new _b(e);if(t){let e=t.marker.onDispose(()=>t.dispose()),s=t.onDispose(()=>{s.dispose(),t&&(this._decorations.delete(t)&&this._onDecorationRemoved.fire(t),e.dispose())});this._decorations.insert(t),this._onDecorationRegistered.fire(t)}return t}reset(){for(let e of this._decorations.values())e.dispose();this._decorations.clear()}*getDecorationsAtCell(e,t,s){let i=0,r=0;for(let n of this._decorations.getKeyIterator(t))i=n.options.x??0,r=i+(n.options.width??1),e>=i&&e<r&&(!s||(n.options.layer??"bottom")===s)&&(yield n)}forEachDecorationAtCell(e,t,s,i){this._decorations.forEachByKey(t,t=>{pb=t.options.x??0,mb=pb+(t.options.width??1),e>=pb&&e<mb&&(!s||(t.options.layer??"bottom")===s)&&i(t)})}},_b=class extends mg{constructor(e){super(),this.options=e,this.onRenderEmitter=this.add(new Tg),this.onRender=this.onRenderEmitter.event,this._onDispose=this.add(new Tg),this.onDispose=this._onDispose.event,this._cachedBg=null,this._cachedFg=null,this.marker=e.marker,this.options.overviewRulerOptions&&!this.options.overviewRulerOptions.position&&(this.options.overviewRulerOptions.position="full")}get backgroundColorRGB(){return null===this._cachedBg&&(this.options.backgroundColor?this._cachedBg=Pv.toColor(this.options.backgroundColor):this._cachedBg=void 0),this._cachedBg}get foregroundColorRGB(){return null===this._cachedFg&&(this.options.foregroundColor?this._cachedFg=Pv.toColor(this.options.foregroundColor):this._cachedFg=void 0),this._cachedFg}dispose(){this._onDispose.fire(),super.dispose()}},vb=class{constructor(e,t=1e3){this._renderCallback=e,this._debounceThresholdMS=t,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(e,t,s){this._rowCount=s,e=void 0!==e?e:0,t=void 0!==t?t:this._rowCount-1,this._rowStart=void 0!==this._rowStart?Math.min(this._rowStart,e):e,this._rowEnd=void 0!==this._rowEnd?Math.max(this._rowEnd,t):t;let i=performance.now();if(i-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=i,this._innerRefresh();else if(!this._additionalRefreshRequested){let e=i-this._lastRefreshMs,t=this._debounceThresholdMS-e;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=performance.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},t)}}_innerRefresh(){if(void 0===this._rowStart||void 0===this._rowEnd||void 0===this._rowCount)return;let e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t)}},xb=class extends gg{constructor(e,t,s,i){super(),this._terminal=e,this._coreBrowserService=s,this._renderService=i,this._rowColumns=new WeakMap,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="";let r=this._coreBrowserService.mainDocument;this._accessibilityContainer=r.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=r.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let n=0;n<this._terminal.rows;n++)this._rowElements[n]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[n]);if(this._topBoundaryFocusListener=e=>this._handleBoundaryFocus(e,0),this._bottomBoundaryFocusListener=e=>this._handleBoundaryFocus(e,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=r.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this._register(new vb(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this._register(this._terminal.onResize(e=>this._handleResize(e.rows))),this._register(this._terminal.onRender(e=>this._refreshRows(e.start,e.end))),this._register(this._terminal.onScroll(()=>this._refreshRows())),this._register(this._terminal.onA11yChar(e=>this._handleChar(e))),this._register(this._terminal.onLineFeed(()=>this._handleChar("\n"))),this._register(this._terminal.onA11yTab(e=>this._handleTab(e))),this._register(this._terminal.onKey(e=>this._handleKey(e.key))),this._register(this._terminal.onBlur(()=>this._clearLiveRegion())),this._register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this._register($_(r,"selectionchange",()=>this._handleSelectionChange())),this._register(this._coreBrowserService.onDprChange(()=>this._refreshRowsDimensions())),this._refreshRowsDimensions(),this._refreshRows(),this._register(fg(()=>{this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(e){for(let t=0;t<e;t++)this._handleChar(" ")}_handleChar(e){this._liveRegionLineCount<21&&(this._charsToConsume.length>0?this._charsToConsume.shift()!==e&&(this._charsToAnnounce+=e):this._charsToAnnounce+=e,"\n"===e&&(this._liveRegionLineCount++,21===this._liveRegionLineCount&&(this._liveRegion.textContent+=vm())))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0}_handleKey(e){this._clearLiveRegion(),new RegExp("\\p{Control}","u").test(e)||this._charsToConsume.push(e)}_refreshRows(e,t){this._liveRegionDebouncer.refresh(e,t,this._terminal.rows)}_renderRows(e,t){let s=this._terminal.buffer,i=s.lines.length.toString();for(let r=e;r<=t;r++){let e=s.lines.get(s.ydisp+r),t=[],n=(null==e?void 0:e.translateToString(!0,void 0,void 0,t))||"",o=(s.ydisp+r+1).toString(),a=this._rowElements[r];a&&(0===n.length?(a.textContent=" ",this._rowColumns.set(a,[0,1])):(a.textContent=n,this._rowColumns.set(a,t)),a.setAttribute("aria-posinset",o),a.setAttribute("aria-setsize",i),this._alignRowWidth(a))}this._announceCharacters()}_announceCharacters(){0!==this._charsToAnnounce.length&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(e,t){let s,i,r=e.target,n=this._rowElements[0===t?1:this._rowElements.length-2];if(r.getAttribute("aria-posinset")!==(0===t?"1":`${this._terminal.buffer.lines.length}`)&&e.relatedTarget===n){if(0===t?(s=r,i=this._rowElements.pop(),this._rowContainer.removeChild(i)):(s=this._rowElements.shift(),i=r,this._rowContainer.removeChild(s)),s.removeEventListener("focus",this._topBoundaryFocusListener),i.removeEventListener("focus",this._bottomBoundaryFocusListener),0===t){let e=this._createAccessibilityTreeNode();this._rowElements.unshift(e),this._rowContainer.insertAdjacentElement("afterbegin",e)}else{let e=this._createAccessibilityTreeNode();this._rowElements.push(e),this._rowContainer.appendChild(e)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(0===t?-1:1),this._rowElements[0===t?1:this._rowElements.length-2].focus(),e.preventDefault(),e.stopImmediatePropagation()}}_handleSelectionChange(){var e;if(0===this._rowElements.length)return;let t=this._coreBrowserService.mainDocument.getSelection();if(!t)return;if(t.isCollapsed)return void(this._rowContainer.contains(t.anchorNode)&&this._terminal.clearSelection());if(!t.anchorNode||!t.focusNode)return void console.error("anchorNode and/or focusNode are null");let s={node:t.anchorNode,offset:t.anchorOffset},i={node:t.focusNode,offset:t.focusOffset};if((s.node.compareDocumentPosition(i.node)&Node.DOCUMENT_POSITION_PRECEDING||s.node===i.node&&s.offset>i.offset)&&([s,i]=[i,s]),s.node.compareDocumentPosition(this._rowElements[0])&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_FOLLOWING)&&(s={node:this._rowElements[0].childNodes[0],offset:0}),!this._rowContainer.contains(s.node))return;let r=this._rowElements.slice(-1)[0];if(i.node.compareDocumentPosition(r)&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_PRECEDING)&&(i={node:r,offset:(null==(e=r.textContent)?void 0:e.length)??0}),!this._rowContainer.contains(i.node))return;let n=({node:e,offset:t})=>{let s=e instanceof Text?e.parentNode:e,i=parseInt(null==s?void 0:s.getAttribute("aria-posinset"),10)-1;if(isNaN(i))return console.warn("row is invalid. Race condition?"),null;let r=this._rowColumns.get(s);if(!r)return console.warn("columns is null. Race condition?"),null;let n=t<r.length?r[t]:r.slice(-1)[0]+1;return n>=this._terminal.cols&&(++i,n=0),{row:i,column:n}},o=n(s),a=n(i);if(o&&a){if(o.row>a.row||o.row===a.row&&o.column>=a.column)throw new Error("invalid range");this._terminal.select(o.column,o.row,(a.row-o.row)*this._terminal.cols-o.column+a.column)}}_handleResize(e){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let t=this._rowContainer.children.length;t<this._terminal.rows;t++)this._rowElements[t]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[t]);for(;this._rowElements.length>e;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){let e=this._coreBrowserService.mainDocument.createElement("div");return e.setAttribute("role","listitem"),e.tabIndex=-1,this._refreshRowDimensions(e),e}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){Object.assign(this._accessibilityContainer.style,{width:`${this._renderService.dimensions.css.canvas.width}px`,fontSize:`${this._terminal.options.fontSize}px`}),this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let e=0;e<this._terminal.rows;e++)this._refreshRowDimensions(this._rowElements[e]),this._alignRowWidth(this._rowElements[e])}}_refreshRowDimensions(e){e.style.height=`${this._renderService.dimensions.css.cell.height}px`}_alignRowWidth(e){var t,s;e.style.transform="";let i=e.getBoundingClientRect().width,r=null==(s=null==(t=this._rowColumns.get(e))?void 0:t.slice(-1))?void 0:s[0];if(!r)return;let n=r*this._renderService.dimensions.css.cell.width;e.style.transform=`scaleX(${n/i})`}};xb=um([fm(1,zm),fm(2,Ym),fm(3,Gm)],xb);var yb=class extends gg{constructor(e,t,s,i,r){super(),this._element=e,this._mouseService=t,this._renderService=s,this._bufferService=i,this._linkProviderService=r,this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this._register(new Tg),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this._register(new Tg),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this._register(fg(()=>{var e;ug(this._linkCacheDisposables),this._linkCacheDisposables.length=0,this._lastMouseEvent=void 0,null==(e=this._activeProviderReplies)||e.clear()})),this._register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0})),this._register($_(this._element,"mouseleave",()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this._register($_(this._element,"mousemove",this._handleMouseMove.bind(this))),this._register($_(this._element,"mousedown",this._handleMouseDown.bind(this))),this._register($_(this._element,"mouseup",this._handleMouseUp.bind(this)))}get currentLink(){return this._currentLink}_handleMouseMove(e){this._lastMouseEvent=e;let t=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!t)return;this._isMouseOut=!1;let s=e.composedPath();for(let i=0;i<s.length;i++){let e=s[i];if(e.classList.contains("xterm"))break;if(e.classList.contains("xterm-hover"))return}(!this._lastBufferCell||t.x!==this._lastBufferCell.x||t.y!==this._lastBufferCell.y)&&(this._handleHover(t),this._lastBufferCell=t)}_handleHover(e){if(this._activeLine!==e.y||this._wasResized)return this._clearCurrentLink(),this._askForLink(e,!1),void(this._wasResized=!1);this._currentLink&&this._linkAtPosition(this._currentLink.link,e)||(this._clearCurrentLink(),this._askForLink(e,!0))}_askForLink(e,t){var s,i;(!this._activeProviderReplies||!t)&&(null==(s=this._activeProviderReplies)||s.forEach(e=>{null==e||e.forEach(e=>{e.link.dispose&&e.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let r=!1;for(let[n,o]of this._linkProviderService.linkProviders.entries())t?(null==(i=this._activeProviderReplies)?void 0:i.get(n))&&(r=this._checkLinkProviderResult(n,e,r)):o.provideLinks(e.y,t=>{var s,i;if(this._isMouseOut)return;let o=null==t?void 0:t.map(e=>({link:e}));null==(s=this._activeProviderReplies)||s.set(n,o),r=this._checkLinkProviderResult(n,e,r),(null==(i=this._activeProviderReplies)?void 0:i.size)===this._linkProviderService.linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,t){let s=new Set;for(let i=0;i<t.size;i++){let r=t.get(i);if(r)for(let t=0;t<r.length;t++){let i=r[t],n=i.link.range.start.y<e?0:i.link.range.start.x,o=i.link.range.end.y>e?this._bufferService.cols:i.link.range.end.x;for(let e=n;e<=o;e++){if(s.has(e)){r.splice(t--,1);break}s.add(e)}}}}_checkLinkProviderResult(e,t,s){var i;if(!this._activeProviderReplies)return s;let r=this._activeProviderReplies.get(e),n=!1;for(let o=0;o<e;o++)(!this._activeProviderReplies.has(o)||this._activeProviderReplies.get(o))&&(n=!0);if(!n&&r){let e=r.find(e=>this._linkAtPosition(e.link,t));e&&(s=!0,this._handleNewLink(e))}if(this._activeProviderReplies.size===this._linkProviderService.linkProviders.length&&!s)for(let o=0;o<this._activeProviderReplies.size;o++){let e=null==(i=this._activeProviderReplies.get(o))?void 0:i.find(e=>this._linkAtPosition(e.link,t));if(e){s=!0,this._handleNewLink(e);break}}return s}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._currentLink)return;let t=this._positionFromMouseEvent(e,this._element,this._mouseService);var s,i;t&&this._mouseDownLink&&(s=this._mouseDownLink.link,i=this._currentLink.link,s.text===i.text&&s.range.start.x===i.range.start.x&&s.range.start.y===i.range.start.y&&s.range.end.x===i.range.end.x&&s.range.end.y===i.range.end.y)&&this._linkAtPosition(this._currentLink.link,t)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,t){!this._currentLink||!this._lastMouseEvent||(!e||!t||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=t)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,ug(this._linkCacheDisposables),this._linkCacheDisposables.length=0)}_handleNewLink(e){if(!this._lastMouseEvent)return;let t=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);t&&this._linkAtPosition(e.link,t)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:void 0===e.link.decorations||e.link.decorations.underline,pointerCursor:void 0===e.link.decorations||e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>{var e,t;return null==(t=null==(e=this._currentLink)?void 0:e.state)?void 0:t.decorations.pointerCursor},set:e=>{var t;(null==(t=this._currentLink)?void 0:t.state)&&this._currentLink.state.decorations.pointerCursor!==e&&(this._currentLink.state.decorations.pointerCursor=e,this._currentLink.state.isHovered&&this._element.classList.toggle("xterm-cursor-pointer",e))}},underline:{get:()=>{var e,t;return null==(t=null==(e=this._currentLink)?void 0:e.state)?void 0:t.decorations.underline},set:t=>{var s,i,r;(null==(s=this._currentLink)?void 0:s.state)&&(null==(r=null==(i=this._currentLink)?void 0:i.state)?void 0:r.decorations.underline)!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(e=>{if(!this._currentLink)return;let t=0===e.start?0:e.start+1+this._bufferService.buffer.ydisp,s=this._bufferService.buffer.ydisp+1+e.end;if(this._currentLink.link.range.start.y>=t&&this._currentLink.link.range.end.y<=s&&(this._clearCurrentLink(t,s),this._lastMouseEvent)){let e=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);e&&this._askForLink(e,!1)}})))}_linkHover(e,t,s){var i;(null==(i=this._currentLink)?void 0:i.state)&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add("xterm-cursor-pointer")),t.hover&&t.hover(s,t.text)}_fireUnderlineEvent(e,t){let s=e.range,i=this._bufferService.buffer.ydisp,r=this._createLinkUnderlineEvent(s.start.x-1,s.start.y-i-1,s.end.x,s.end.y-i-1,void 0);(t?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(r)}_linkLeave(e,t,s){var i;(null==(i=this._currentLink)?void 0:i.state)&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove("xterm-cursor-pointer")),t.leave&&t.leave(s,t.text)}_linkAtPosition(e,t){let s=e.range.start.y*this._bufferService.cols+e.range.start.x,i=e.range.end.y*this._bufferService.cols+e.range.end.x,r=t.y*this._bufferService.cols+t.x;return s<=r&&r<=i}_positionFromMouseEvent(e,t,s){let i=s.getCoords(e,t,this._bufferService.cols,this._bufferService.rows);if(i)return{x:i[0],y:i[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,t,s,i,r){return{x1:e,y1:t,x2:s,y2:i,cols:this._bufferService.cols,fg:r}}};yb=um([fm(1,Xm),fm(2,Gm),fm(3,Im),fm(4,eg)],yb);var bb=class extends hb{constructor(e={}){super(e),this._linkifier=this._register(new _g),this.browser=ux,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this._register(new _g),this._onCursorMove=this._register(new Tg),this.onCursorMove=this._onCursorMove.event,this._onKey=this._register(new Tg),this.onKey=this._onKey.event,this._onRender=this._register(new Tg),this.onRender=this._onRender.event,this._onSelectionChange=this._register(new Tg),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this._register(new Tg),this.onTitleChange=this._onTitleChange.event,this._onBell=this._register(new Tg),this.onBell=this._onBell.event,this._onFocus=this._register(new Tg),this._onBlur=this._register(new Tg),this._onA11yCharEmitter=this._register(new Tg),this._onA11yTabEmitter=this._register(new Tg),this._onWillOpen=this._register(new Tg),this._setup(),this._decorationService=this._instantiationService.createInstance(gb),this._instantiationService.setService(Km,this._decorationService),this._linkProviderService=this._instantiationService.createInstance(lx),this._instantiationService.setService(eg,this._linkProviderService),this._linkProviderService.registerLinkProvider(this._instantiationService.createInstance(Vm)),this._register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this._register(this._inputHandler.onRequestRefreshRows(e=>this.refresh((null==e?void 0:e.start)??0,(null==e?void 0:e.end)??this.rows-1))),this._register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this._register(this._inputHandler.onRequestReset(()=>this.reset())),this._register(this._inputHandler.onRequestWindowsOptionsReport(e=>this._reportWindowsOptions(e))),this._register(this._inputHandler.onColor(e=>this._handleColorEvent(e))),this._register(yg.forward(this._inputHandler.onCursorMove,this._onCursorMove)),this._register(yg.forward(this._inputHandler.onTitleChange,this._onTitleChange)),this._register(yg.forward(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this._register(yg.forward(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this._register(this._bufferService.onResize(e=>this._afterResize(e.cols,e.rows))),this._register(fg(()=>{var e,t;this._customKeyEventHandler=void 0,null==(t=null==(e=this.element)?void 0:e.parentNode)||t.removeChild(this.element)}))}get linkifier(){return this._linkifier.value}get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}_handleColorEvent(e){if(this._themeService)for(let t of e){let e,s="";switch(t.index){case 256:e="foreground",s="10";break;case 257:e="background",s="11";break;case 258:e="cursor",s="12";break;default:e="ansi",s="4;"+t.index}switch(t.type){case 0:let i=Rv.toColorRGB("ansi"===e?this._themeService.colors.ansi[t.index]:this._themeService.colors[e]);this.coreService.triggerDataEvent(`${xv.ESC}]${s};${Qy(i)}${Sv.ST}`);break;case 1:if("ansi"===e)this._themeService.modifyColors(e=>e.ansi[t.index]=Dv.toColor(...t.color));else{let s=e;this._themeService.modifyColors(e=>e[s]=Dv.toColor(...t.color))}break;case 2:this._themeService.restoreColor(t.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(e){e?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(xb,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(e){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(xv.ESC+"[I"),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){var e;return null==(e=this.textarea)?void 0:e.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(xv.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;let e=this.buffer.ybase+this.buffer.y,t=this.buffer.lines.get(e);if(!t)return;let s=Math.min(this.buffer.x,this.cols-1),i=this._renderService.dimensions.css.cell.height,r=t.getWidth(s),n=this._renderService.dimensions.css.cell.width*r,o=this.buffer.y*this._renderService.dimensions.css.cell.height,a=s*this._renderService.dimensions.css.cell.width;this.textarea.style.left=a+"px",this.textarea.style.top=o+"px",this.textarea.style.width=n+"px",this.textarea.style.height=i+"px",this.textarea.style.lineHeight=i+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this._register($_(this.element,"copy",e=>{var t,s;this.hasSelection()&&(t=e,s=this._selectionService,t.clipboardData&&t.clipboardData.setData("text/plain",s.selectionText),t.preventDefault())}));let e=e=>function(e,t,s,i){e.stopPropagation(),e.clipboardData&&ym(e.clipboardData.getData("text/plain"),t,s,i)}(e,this.textarea,this.coreService,this.optionsService);this._register($_(this.textarea,"paste",e)),this._register($_(this.element,"paste",e)),gx?this._register($_(this.element,"mousedown",e=>{2===e.button&&wm(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this._register($_(this.element,"contextmenu",e=>{wm(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),Cx&&this._register($_(this.element,"auxclick",e=>{1===e.button&&bm(e,this.textarea,this.screenElement)}))}_bindKeys(){this._register($_(this.textarea,"keyup",e=>this._keyUp(e),!0)),this._register($_(this.textarea,"keydown",e=>this._keyDown(e),!0)),this._register($_(this.textarea,"keypress",e=>this._keyPress(e),!0)),this._register($_(this.textarea,"compositionstart",()=>this._compositionHelper.compositionstart())),this._register($_(this.textarea,"compositionupdate",e=>this._compositionHelper.compositionupdate(e))),this._register($_(this.textarea,"compositionend",()=>this._compositionHelper.compositionend())),this._register($_(this.textarea,"input",e=>this._inputEvent(e),!0)),this._register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(e){var t;if(!e)throw new Error("Terminal requires a parent element.");if(e.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),(null==(t=this.element)?void 0:t.ownerDocument.defaultView)&&this._coreBrowserService)return void(this.element.ownerDocument.defaultView!==this._coreBrowserService.window&&(this._coreBrowserService.window=this.element.ownerDocument.defaultView));this._document=e.ownerDocument,this.options.documentOverride&&this.options.documentOverride instanceof Document&&(this._document=this.optionsService.rawOptions.documentOverride),this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),e.appendChild(this.element);let s=this._document.createDocumentFragment();this._viewportElement=this._document.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),s.appendChild(this._viewportElement),this.screenElement=this._document.createElement("div"),this.screenElement.classList.add("xterm-screen"),this._register($_(this.screenElement,"mousemove",e=>this.updateCursorStyle(e))),this._helperContainer=this._document.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),s.appendChild(this.screenElement);let i=this.textarea=this._document.createElement("textarea");this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",mm()),kx||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._register(this.optionsService.onSpecificOptionChange("disableStdin",()=>i.readOnly=this.optionsService.rawOptions.disableStdin)),this.textarea.readOnly=this.optionsService.rawOptions.disableStdin,this._coreBrowserService=this._register(this._instantiationService.createInstance(ox,this.textarea,e.ownerDocument.defaultView??window,this._document??typeof window<"u"?window.document:null)),this._instantiationService.setService(Ym,this._coreBrowserService),this._register($_(this.textarea,"focus",e=>this._handleTextAreaFocus(e))),this._register($_(this.textarea,"blur",()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(sx,this._document,this._helperContainer),this._instantiationService.setService(qm,this._charSizeService),this._themeService=this._instantiationService.createInstance(Zx),this._instantiationService.setService(Qm,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(Fv),this._instantiationService.setService(Jm,this._characterJoinerService),this._renderService=this._register(this._instantiationService.createInstance(Mx,this.rows,this.screenElement)),this._instantiationService.setService(Gm,this._renderService),this._register(this._renderService.onRenderedViewportChange(e=>this._onRender.fire(e))),this.onResize(e=>this._renderService.resize(e.cols,e.rows)),this._compositionView=this._document.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(Mv,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this._mouseService=this._instantiationService.createInstance(hx),this._instantiationService.setService(Xm,this._mouseService);let r=this._linkifier.value=this._register(this._instantiationService.createInstance(yb,this.screenElement));this.element.appendChild(s);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this._register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this._register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this._register(this.onBlur(()=>this._renderService.handleBlur())),this._register(this.onFocus(()=>this._renderService.handleFocus())),this._viewport=this._register(this._instantiationService.createInstance(_v,this.element,this.screenElement)),this._register(this._viewport.onRequestScrollLines(e=>{super.scrollLines(e,!1),this.refresh(0,this.rows-1)})),this._selectionService=this._register(this._instantiationService.createInstance(Hx,this.element,this.screenElement,r)),this._instantiationService.setService(Zm,this._selectionService),this._register(this._selectionService.onRequestScrollLines(e=>this.scrollLines(e.amount,e.suppressScrollEvent))),this._register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this._register(this._selectionService.onRequestRedraw(e=>this._renderService.handleSelectionChanged(e.start,e.end,e.columnSelectMode))),this._register(this._selectionService.onLinuxMouseSelection(e=>{this.textarea.value=e,this.textarea.focus(),this.textarea.select()})),this._register(yg.any(this._onScroll.event,this._inputHandler.onScroll)(()=>{var e;this._selectionService.refresh(),null==(e=this._viewport)||e.queueSync()})),this._register(this._instantiationService.createInstance(vv,this.screenElement)),this._register($_(this.element,"mousedown",e=>this._selectionService.handleMouseDown(e))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(xb,this)),this._register(this.optionsService.onSpecificOptionChange("screenReaderMode",e=>this._handleScreenReaderModeOptionChange(e))),this.options.overviewRuler.width&&(this._overviewRulerRenderer=this._register(this._instantiationService.createInstance(jv,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRuler",e=>{!this._overviewRulerRenderer&&e&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this._register(this._instantiationService.createInstance(jv,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(tx,this,this._document,this.element,this.screenElement,this._viewportElement,this._helperContainer,this.linkifier)}bindMouse(){let e=this,t=this.element;function s(t){var s,i,r,n,o;let a,l,c=e._mouseService.getMouseReportCoords(t,e.screenElement);if(!c)return!1;switch(t.overrideType||t.type){case"mousemove":l=32,void 0===t.buttons?(a=3,void 0!==t.button&&(a=t.button<3?t.button:3)):a=1&t.buttons?0:4&t.buttons?1:2&t.buttons?2:3;break;case"mouseup":l=0,a=t.button<3?t.button:3;break;case"mousedown":l=1,a=t.button<3?t.button:3;break;case"wheel":if(e._customWheelEventHandler&&!1===e._customWheelEventHandler(t))return!1;let c=t.deltaY;if(0===c||0===e.coreMouseService.consumeWheelEvent(t,null==(n=null==(r=null==(i=null==(s=e._renderService)?void 0:s.dimensions)?void 0:i.device)?void 0:r.cell)?void 0:n.height,null==(o=e._coreBrowserService)?void 0:o.dpr))return!1;l=c<0?0:1,a=4;break;default:return!1}return!(void 0===l||void 0===a||a>4)&&e.coreMouseService.triggerMouseEvent({col:c.col,row:c.row,x:c.x,y:c.y,button:a,action:l,ctrl:t.ctrlKey,alt:t.altKey,shift:t.shiftKey})}let i={mouseup:null,wheel:null,mousedrag:null,mousemove:null},r={mouseup:e=>(s(e),e.buttons||(this._document.removeEventListener("mouseup",i.mouseup),i.mousedrag&&this._document.removeEventListener("mousemove",i.mousedrag)),this.cancel(e)),wheel:e=>(s(e),this.cancel(e,!0)),mousedrag:e=>{e.buttons&&s(e)},mousemove:e=>{e.buttons||s(e)}};this._register(this.coreMouseService.onProtocolChange(e=>{e?("debug"===this.optionsService.rawOptions.logLevel&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(e)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),8&e?i.mousemove||(t.addEventListener("mousemove",r.mousemove),i.mousemove=r.mousemove):(t.removeEventListener("mousemove",i.mousemove),i.mousemove=null),16&e?i.wheel||(t.addEventListener("wheel",r.wheel,{passive:!1}),i.wheel=r.wheel):(t.removeEventListener("wheel",i.wheel),i.wheel=null),2&e?i.mouseup||(i.mouseup=r.mouseup):(this._document.removeEventListener("mouseup",i.mouseup),i.mouseup=null),4&e?i.mousedrag||(i.mousedrag=r.mousedrag):(this._document.removeEventListener("mousemove",i.mousedrag),i.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this._register($_(t,"mousedown",e=>{if(e.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(e))return s(e),i.mouseup&&this._document.addEventListener("mouseup",i.mouseup),i.mousedrag&&this._document.addEventListener("mousemove",i.mousedrag),this.cancel(e)})),this._register($_(t,"wheel",t=>{var s,r,n,o,a;if(!i.wheel){if(this._customWheelEventHandler&&!1===this._customWheelEventHandler(t))return!1;if(!this.buffer.hasScrollback){if(0===t.deltaY)return!1;if(0===e.coreMouseService.consumeWheelEvent(t,null==(o=null==(n=null==(r=null==(s=e._renderService)?void 0:s.dimensions)?void 0:r.device)?void 0:n.cell)?void 0:o.height,null==(a=e._coreBrowserService)?void 0:a.dpr))return this.cancel(t,!0);let i=xv.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(t.deltaY<0?"A":"B");return this.coreService.triggerDataEvent(i,!0),this.cancel(t,!0)}}},{passive:!1}))}refresh(e,t){var s;null==(s=this._renderService)||s.refreshRows(e,t)}updateCursorStyle(e){var t;(null==(t=this._selectionService)?void 0:t.shouldColumnSelect(e))?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(e,t){this._viewport?this._viewport.scrollLines(e):super.scrollLines(e,t),this.refresh(0,this.rows-1)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(e){e&&this._viewport?this._viewport.scrollToLine(this.buffer.ybase,!0):this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){let t=e-this._bufferService.buffer.ydisp;0!==t&&this.scrollLines(t)}paste(e){ym(e,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(e){this._customKeyEventHandler=e}attachCustomWheelEventHandler(e){this._customWheelEventHandler=e}registerLinkProvider(e){return this._linkProviderService.registerLinkProvider(e)}registerCharacterJoiner(e){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");let t=this._characterJoinerService.register(e);return this.refresh(0,this.rows-1),t}deregisterCharacterJoiner(e){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(e)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(e){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+e)}registerDecoration(e){return this._decorationService.registerDecoration(e)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(e,t,s){this._selectionService.setSelection(e,t,s)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){var e;null==(e=this._selectionService)||e.clearSelection()}selectAll(){var e;null==(e=this._selectionService)||e.selectAll()}selectLines(e,t){var s;null==(s=this._selectionService)||s.selectLines(e,t)}_keyDown(e){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&!1===this._customKeyEventHandler(e))return!1;let t=this.browser.isMac&&this.options.macOptionIsMeta&&e.altKey;if(!t&&!this._compositionHelper.keydown(e))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(!0),!1;!t&&("Dead"===e.key||"AltGraph"===e.key)&&(this._unprocessedDeadKey=!0);let s=function(e,t,s,i){var r;let n={type:0,cancel:!1,key:void 0},o=(e.shiftKey?1:0)|(e.altKey?2:0)|(e.ctrlKey?4:0)|(e.metaKey?8:0);switch(e.keyCode){case 0:"UIKeyInputUpArrow"===e.key?n.key=t?xv.ESC+"OA":xv.ESC+"[A":"UIKeyInputLeftArrow"===e.key?n.key=t?xv.ESC+"OD":xv.ESC+"[D":"UIKeyInputRightArrow"===e.key?n.key=t?xv.ESC+"OC":xv.ESC+"[C":"UIKeyInputDownArrow"===e.key&&(n.key=t?xv.ESC+"OB":xv.ESC+"[B");break;case 8:n.key=e.ctrlKey?"\b":xv.DEL,e.altKey&&(n.key=xv.ESC+n.key);break;case 9:if(e.shiftKey){n.key=xv.ESC+"[Z";break}n.key=xv.HT,n.cancel=!0;break;case 13:n.key=e.altKey?xv.ESC+xv.CR:xv.CR,n.cancel=!0;break;case 27:n.key=xv.ESC,e.altKey&&(n.key=xv.ESC+xv.ESC),n.cancel=!0;break;case 37:if(e.metaKey)break;n.key=o?xv.ESC+"[1;"+(o+1)+"D":t?xv.ESC+"OD":xv.ESC+"[D";break;case 39:if(e.metaKey)break;n.key=o?xv.ESC+"[1;"+(o+1)+"C":t?xv.ESC+"OC":xv.ESC+"[C";break;case 38:if(e.metaKey)break;n.key=o?xv.ESC+"[1;"+(o+1)+"A":t?xv.ESC+"OA":xv.ESC+"[A";break;case 40:if(e.metaKey)break;n.key=o?xv.ESC+"[1;"+(o+1)+"B":t?xv.ESC+"OB":xv.ESC+"[B";break;case 45:!e.shiftKey&&!e.ctrlKey&&(n.key=xv.ESC+"[2~");break;case 46:n.key=o?xv.ESC+"[3;"+(o+1)+"~":xv.ESC+"[3~";break;case 36:n.key=o?xv.ESC+"[1;"+(o+1)+"H":t?xv.ESC+"OH":xv.ESC+"[H";break;case 35:n.key=o?xv.ESC+"[1;"+(o+1)+"F":t?xv.ESC+"OF":xv.ESC+"[F";break;case 33:e.shiftKey?n.type=2:e.ctrlKey?n.key=xv.ESC+"[5;"+(o+1)+"~":n.key=xv.ESC+"[5~";break;case 34:e.shiftKey?n.type=3:e.ctrlKey?n.key=xv.ESC+"[6;"+(o+1)+"~":n.key=xv.ESC+"[6~";break;case 112:n.key=o?xv.ESC+"[1;"+(o+1)+"P":xv.ESC+"OP";break;case 113:n.key=o?xv.ESC+"[1;"+(o+1)+"Q":xv.ESC+"OQ";break;case 114:n.key=o?xv.ESC+"[1;"+(o+1)+"R":xv.ESC+"OR";break;case 115:n.key=o?xv.ESC+"[1;"+(o+1)+"S":xv.ESC+"OS";break;case 116:n.key=o?xv.ESC+"[15;"+(o+1)+"~":xv.ESC+"[15~";break;case 117:n.key=o?xv.ESC+"[17;"+(o+1)+"~":xv.ESC+"[17~";break;case 118:n.key=o?xv.ESC+"[18;"+(o+1)+"~":xv.ESC+"[18~";break;case 119:n.key=o?xv.ESC+"[19;"+(o+1)+"~":xv.ESC+"[19~";break;case 120:n.key=o?xv.ESC+"[20;"+(o+1)+"~":xv.ESC+"[20~";break;case 121:n.key=o?xv.ESC+"[21;"+(o+1)+"~":xv.ESC+"[21~";break;case 122:n.key=o?xv.ESC+"[23;"+(o+1)+"~":xv.ESC+"[23~";break;case 123:n.key=o?xv.ESC+"[24;"+(o+1)+"~":xv.ESC+"[24~";break;default:if(!e.ctrlKey||e.shiftKey||e.altKey||e.metaKey)if(s&&!i||!e.altKey||e.metaKey)!s||e.altKey||e.ctrlKey||e.shiftKey||!e.metaKey?e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.keyCode>=48&&1===e.key.length?n.key=e.key:e.key&&e.ctrlKey&&("_"===e.key&&(n.key=xv.US),"@"===e.key&&(n.key=xv.NUL)):65===e.keyCode&&(n.type=1);else{let t=null==(r=db[e.keyCode])?void 0:r[e.shiftKey?1:0];if(t)n.key=xv.ESC+t;else if(e.keyCode>=65&&e.keyCode<=90){let t=e.ctrlKey?e.keyCode-64:e.keyCode+32,s=String.fromCharCode(t);e.shiftKey&&(s=s.toUpperCase()),n.key=xv.ESC+s}else if(32===e.keyCode)n.key=xv.ESC+(e.ctrlKey?xv.NUL:" ");else if("Dead"===e.key&&e.code.startsWith("Key")){let t=e.code.slice(3,4);e.shiftKey||(t=t.toLowerCase()),n.key=xv.ESC+t,n.cancel=!0}}else e.keyCode>=65&&e.keyCode<=90?n.key=String.fromCharCode(e.keyCode-64):32===e.keyCode?n.key=xv.NUL:e.keyCode>=51&&e.keyCode<=55?n.key=String.fromCharCode(e.keyCode-51+27):56===e.keyCode?n.key=xv.DEL:219===e.keyCode?n.key=xv.ESC:220===e.keyCode?n.key=xv.FS:221===e.keyCode&&(n.key=xv.GS)}return n}(e,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(e),3===s.type||2===s.type){let t=this.rows-1;return this.scrollLines(2===s.type?-t:t),this.cancel(e,!0)}return 1===s.type&&this.selectAll(),!!(this._isThirdLevelShift(this.browser,e)||(s.cancel&&this.cancel(e,!0),!s.key)||e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&1===e.key.length&&e.key.charCodeAt(0)>=65&&e.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):((s.key===xv.ETX||s.key===xv.CR)&&(this.textarea.value=""),this._onKey.fire({key:s.key,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(s.key,!0),!this.optionsService.rawOptions.screenReaderMode||e.altKey||e.ctrlKey?this.cancel(e,!0):void(this._keyDownHandled=!0)))}_isThirdLevelShift(e,t){let s=e.isMac&&!this.options.macOptionIsMeta&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.isWindows&&t.altKey&&t.ctrlKey&&!t.metaKey||e.isWindows&&t.getModifierState("AltGraph");return"keypress"===t.type?s:s&&(!t.keyCode||t.keyCode>47)}_keyUp(e){var t;this._keyDownSeen=!1,(!this._customKeyEventHandler||!1!==this._customKeyEventHandler(e))&&(16===(t=e).keyCode||17===t.keyCode||18===t.keyCode||this.focus(),this.updateCursorStyle(e),this._keyPressHandled=!1)}_keyPress(e){let t;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&!1===this._customKeyEventHandler(e))return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(null===e.which||void 0===e.which)t=e.keyCode;else{if(0===e.which||0===e.charCode)return!1;t=e.which}return!(!t||(e.altKey||e.ctrlKey||e.metaKey)&&!this._isThirdLevelShift(this.browser,e))&&(t=String.fromCharCode(t),this._onKey.fire({key:t,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(t,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,!0)}_inputEvent(e){if(e.data&&"insertText"===e.inputType&&(!e.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;let t=e.data;return this.coreService.triggerDataEvent(t,!0),this.cancel(e),!0}return!1}resize(e,t){e!==this.cols||t!==this.rows?super.resize(e,t):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(e,t){var s;null==(s=this._charSizeService)||s.measure()}clear(){if(0!==this.buffer.ybase||0!==this.buffer.y){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let e=1;e<this.rows;e++)this.buffer.lines.push(this.buffer.getBlankLine(ry));this._onScroll.fire({position:this.buffer.ydisp}),this.refresh(0,this.rows-1)}}reset(){var e;this.options.rows=this.rows,this.options.cols=this.cols;let t=this._customKeyEventHandler;this._setup(),super.reset(),null==(e=this._selectionService)||e.reset(),this._decorationService.reset(),this._customKeyEventHandler=t,this.refresh(0,this.rows-1)}clearTextureAtlas(){var e;null==(e=this._renderService)||e.clearTextureAtlas()}_reportFocus(){var e;(null==(e=this.element)?void 0:e.classList.contains("focus"))?this.coreService.triggerDataEvent(xv.ESC+"[I"):this.coreService.triggerDataEvent(xv.ESC+"[O")}_reportWindowsOptions(e){if(this._renderService)switch(e){case 0:let e=this._renderService.dimensions.css.canvas.width.toFixed(0),t=this._renderService.dimensions.css.canvas.height.toFixed(0);this.coreService.triggerDataEvent(`${xv.ESC}[4;${t};${e}t`);break;case 1:let s=this._renderService.dimensions.css.cell.width.toFixed(0),i=this._renderService.dimensions.css.cell.height.toFixed(0);this.coreService.triggerDataEvent(`${xv.ESC}[6;${i};${s}t`)}}cancel(e,t){if(this.options.cancelEvents||t)return e.preventDefault(),e.stopPropagation(),!1}};var wb=class{constructor(){this._addons=[]}dispose(){for(let e=this._addons.length-1;e>=0;e--)this._addons[e].instance.dispose()}loadAddon(e,t){let s={instance:t,dispose:t.dispose,isDisposed:!1};this._addons.push(s),t.dispose=()=>this._wrappedAddonDispose(s),t.activate(e)}_wrappedAddonDispose(e){if(e.isDisposed)return;let t=-1;for(let s=0;s<this._addons.length;s++)if(this._addons[s]===e){t=s;break}if(-1===t)throw new Error("Could not dispose an addon that has not been loaded");e.isDisposed=!0,e.dispose.apply(e.instance),this._addons.splice(t,1)}},Sb=class{constructor(e){this._line=e}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(e,t){if(!(e<0||e>=this._line.length))return t?(this._line.loadCell(e,t),t):this._line.loadCell(e,new Dm)}translateToString(e,t,s){return this._line.translateToString(e,t,s)}},Cb=class{constructor(e,t){this._buffer=e,this.type=t}init(e){return this._buffer=e,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(e){let t=this._buffer.lines.get(e);if(t)return new Sb(t)}getNullCell(){return new Dm}},kb=class extends gg{constructor(e){super(),this._core=e,this._onBufferChange=this._register(new Tg),this.onBufferChange=this._onBufferChange.event,this._normal=new Cb(this._core.buffers.normal,"normal"),this._alternate=new Cb(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}},Nb=class{constructor(e){this._core=e}registerCsiHandler(e,t){return this._core.registerCsiHandler(e,e=>t(e.toArray()))}addCsiHandler(e,t){return this.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._core.registerDcsHandler(e,(e,s)=>t(e,s.toArray()))}addDcsHandler(e,t){return this.registerDcsHandler(e,t)}registerEscHandler(e,t){return this._core.registerEscHandler(e,t)}addEscHandler(e,t){return this.registerEscHandler(e,t)}registerOscHandler(e,t){return this._core.registerOscHandler(e,t)}addOscHandler(e,t){return this.registerOscHandler(e,t)}},Eb=class{constructor(e){this._core=e}register(e){this._core.unicodeService.register(e)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(e){this._core.unicodeService.activeVersion=e}},jb=["cols","rows"],Mb=0,Db=class extends gg{constructor(e){super(),this._core=this._register(new bb(e)),this._addonManager=this._register(new wb),this._publicOptions={...this._core.options};let t=e=>this._core.options[e],s=(e,t)=>{this._checkReadonlyOptions(e),this._core.options[e]=t};for(let i in this._core.options){let e={get:t.bind(this,i),set:s.bind(this,i)};Object.defineProperty(this._publicOptions,i,e)}}_checkReadonlyOptions(e){if(jb.includes(e))throw new Error(`Option "${e}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new Nb(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new Eb(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this._register(new kb(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){let e=this._core.coreService.decPrivateModes,t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any"}return{applicationCursorKeysMode:e.applicationCursorKeys,applicationKeypadMode:e.applicationKeypad,bracketedPasteMode:e.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:e.origin,reverseWraparoundMode:e.reverseWraparound,sendFocusMode:e.sendFocus,synchronizedOutputMode:e.synchronizedOutput,wraparoundMode:e.wraparound}}get options(){return this._publicOptions}set options(e){for(let t in e)this._publicOptions[t]=e[t]}blur(){this._core.blur()}focus(){this._core.focus()}input(e,t=!0){this._core.input(e,t)}resize(e,t){this._verifyIntegers(e,t),this._core.resize(e,t)}open(e){this._core.open(e)}attachCustomKeyEventHandler(e){this._core.attachCustomKeyEventHandler(e)}attachCustomWheelEventHandler(e){this._core.attachCustomWheelEventHandler(e)}registerLinkProvider(e){return this._core.registerLinkProvider(e)}registerCharacterJoiner(e){return this._checkProposedApi(),this._core.registerCharacterJoiner(e)}deregisterCharacterJoiner(e){this._checkProposedApi(),this._core.deregisterCharacterJoiner(e)}registerMarker(e=0){return this._verifyIntegers(e),this._core.registerMarker(e)}registerDecoration(e){return this._checkProposedApi(),this._verifyPositiveIntegers(e.x??0,e.width??0,e.height??0),this._core.registerDecoration(e)}hasSelection(){return this._core.hasSelection()}select(e,t,s){this._verifyIntegers(e,t,s),this._core.select(e,t,s)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(e,t){this._verifyIntegers(e,t),this._core.selectLines(e,t)}dispose(){super.dispose()}scrollLines(e){this._verifyIntegers(e),this._core.scrollLines(e)}scrollPages(e){this._verifyIntegers(e),this._core.scrollPages(e)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(e){this._verifyIntegers(e),this._core.scrollToLine(e)}clear(){this._core.clear()}write(e,t){this._core.write(e,t)}writeln(e,t){this._core.write(e),this._core.write("\r\n",t)}paste(e){this._core.paste(e)}refresh(e,t){this._verifyIntegers(e,t),this._core.refresh(e,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(e){this._addonManager.loadAddon(this,e)}static get strings(){return{get promptLabel(){return mm()},set promptLabel(e){gm(e)},get tooMuchOutput(){return vm()},set tooMuchOutput(e){xm(e)}}}_verifyIntegers(...e){for(Mb of e)if(Mb===1/0||isNaN(Mb)||Mb%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...e){for(Mb of e)if(Mb&&(Mb===1/0||isNaN(Mb)||Mb%1!=0||Mb<0))throw new Error("This API only accepts positive integers")}},Rb=class{activate(e){this._terminal=e}dispose(){}fit(){let e=this.proposeDimensions();if(!e||!this._terminal||isNaN(e.cols)||isNaN(e.rows))return;let t=this._terminal._core;(this._terminal.rows!==e.rows||this._terminal.cols!==e.cols)&&(t._renderService.clear(),this._terminal.resize(e.cols,e.rows))}proposeDimensions(){var e;if(!this._terminal||!this._terminal.element||!this._terminal.element.parentElement)return;let t=this._terminal._core._renderService.dimensions;if(0===t.css.cell.width||0===t.css.cell.height)return;let s=0===this._terminal.options.scrollback?0:(null==(e=this._terminal.options.overviewRuler)?void 0:e.width)||14,i=window.getComputedStyle(this._terminal.element.parentElement),r=parseInt(i.getPropertyValue("height")),n=Math.max(0,parseInt(i.getPropertyValue("width"))),o=window.getComputedStyle(this._terminal.element),a=r-(parseInt(o.getPropertyValue("padding-top"))+parseInt(o.getPropertyValue("padding-bottom"))),l=n-(parseInt(o.getPropertyValue("padding-right"))+parseInt(o.getPropertyValue("padding-left")))-s;return{cols:Math.max(2,Math.floor(l/t.css.cell.width)),rows:Math.max(1,Math.floor(a/t.css.cell.height))}}},Pb=new class{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(e){setTimeout(()=>{throw e.stack?zb.isErrorNoTelemetry(e)?new zb(e.message+"\n\n"+e.stack):new Error(e.message+"\n\n"+e.stack):e},0)}}addListener(e){return this.listeners.push(e),()=>{this._removeListener(e)}}emit(e){this.listeners.forEach(t=>{t(e)})}_removeListener(e){this.listeners.splice(this.listeners.indexOf(e),1)}setUnexpectedErrorHandler(e){this.unexpectedErrorHandler=e}getUnexpectedErrorHandler(){return this.unexpectedErrorHandler}onUnexpectedError(e){this.unexpectedErrorHandler(e),this.emit(e)}onUnexpectedExternalError(e){this.unexpectedErrorHandler(e)}};function Lb(e){(function(e){return e instanceof Ab||e instanceof Error&&e.name===Tb&&e.message===Tb})(e)||Pb.onUnexpectedError(e)}var Tb="Canceled";var Ib,Bb,Ob,Ab=class extends Error{constructor(){super(Tb),this.name=this.message}},zb=class e extends Error{constructor(e){super(e),this.name="CodeExpectedError"}static fromError(t){if(t instanceof e)return t;let s=new e;return s.message=t.message,s.stack=t.stack,s}static isErrorNoTelemetry(e){return"CodeExpectedError"===e.name}};function $b(e,t){let s,i=this,r=!1;return function(){return r||(r=!0,t||(s=e.apply(i,arguments))),s}}function Hb(e){if(Ob.is(e)){let t=[];for(let s of e)if(s)try{s.dispose()}catch(G_){t.push(G_)}if(1===t.length)throw t[0];if(t.length>1)throw new AggregateError(t,"Encountered errors while disposing of store");return Array.isArray(e)?[]:e}if(e)return e.dispose(),e}function Wb(...e){return Fb(()=>Hb(e))}function Fb(e){return{dispose:$b(()=>{e()})}}(Bb=Ib||(Ib={})).isLessThan=function(e){return e<0},Bb.isLessThanOrEqual=function(e){return e<=0},Bb.isGreaterThan=function(e){return e>0},Bb.isNeitherLessOrGreaterThan=function(e){return 0===e},Bb.greaterThan=1,Bb.lessThan=-1,Bb.neitherLessOrGreaterThan=0,(e=>{function t(e){return e&&"object"==typeof e&&"function"==typeof e[Symbol.iterator]}e.is=t;let s=Object.freeze([]);function*i(e){yield e}e.empty=function(){return s},e.single=i,e.wrap=function(e){return t(e)?e:i(e)},e.from=function(e){return e||s},e.reverse=function*(e){for(let t=e.length-1;t>=0;t--)yield e[t]},e.isEmpty=function(e){return!e||!0===e[Symbol.iterator]().next().done},e.first=function(e){return e[Symbol.iterator]().next().value},e.some=function(e,t){let s=0;for(let i of e)if(t(i,s++))return!0;return!1},e.find=function(e,t){for(let s of e)if(t(s))return s},e.filter=function*(e,t){for(let s of e)t(s)&&(yield s)},e.map=function*(e,t){let s=0;for(let i of e)yield t(i,s++)},e.flatMap=function*(e,t){let s=0;for(let i of e)yield*t(i,s++)},e.concat=function*(...e){for(let t of e)yield*t},e.reduce=function(e,t,s){let i=s;for(let r of e)i=t(i,r);return i},e.slice=function*(e,t,s=e.length){for(t<0&&(t+=e.length),s<0?s+=e.length:s>e.length&&(s=e.length);t<s;t++)yield e[t]},e.consume=function(t,s=Number.POSITIVE_INFINITY){let i=[];if(0===s)return[i,t];let r=t[Symbol.iterator]();for(let n=0;n<s;n++){let t=r.next();if(t.done)return[i,e.empty()];i.push(t.value)}return[i,{[Symbol.iterator]:()=>r}]},e.asyncToArray=async function(e){let t=[];for await(let s of e)t.push(s);return Promise.resolve(t)}})(Ob||(Ob={}));var Kb=class e{constructor(){this._toDispose=new Set,this._isDisposed=!1}dispose(){this._isDisposed||(this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(0!==this._toDispose.size)try{Hb(this._toDispose)}finally{this._toDispose.clear()}}add(t){if(!t)return t;if(t===this)throw new Error("Cannot register a disposable on itself!");return this._isDisposed?e.DISABLE_DISPOSED_WARNING||console.warn(new Error("Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!").stack):this._toDispose.add(t),t}delete(e){if(e){if(e===this)throw new Error("Cannot dispose a disposable on itself!");this._toDispose.delete(e),e.dispose()}}deleteAndLeak(e){e&&this._toDispose.has(e)&&this._toDispose.delete(e)}};Kb.DISABLE_DISPOSED_WARNING=!1;var Vb=Kb,Ub=class{constructor(){this._store=new Vb,this._store}dispose(){this._store.dispose()}_register(e){if(e===this)throw new Error("Cannot register a disposable on itself!");return this._store.add(e)}};Ub.None=Object.freeze({dispose(){}});var qb,Yb=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(e){var t;this._isDisposed||e===this._value||(null==(t=this._value)||t.dispose(),this._value=e)}clear(){this.value=void 0}dispose(){var e;this._isDisposed=!0,null==(e=this._value)||e.dispose(),this._value=void 0}clearAndLeak(){let e=this._value;return this._value=void 0,e}},Xb=globalThis.performance&&"function"==typeof globalThis.performance.now,Gb=class e{static create(t){return new e(t)}constructor(e){this._now=Xb&&!1===e?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}reset(){this._startTime=this._now(),this._stopTime=-1}elapsed(){return-1!==this._stopTime?this._stopTime-this._startTime:this._now()-this._startTime}};(e=>{function t(e){return(t,s=null,i)=>{let r,n=!1;return r=e(e=>{if(!n)return r?r.dispose():n=!0,t.call(s,e)},null,i),n&&r.dispose(),r}}function s(e,t,s){return r((s,i=null,r)=>e(e=>s.call(i,t(e)),null,r),s)}function i(e,t,s){return r((s,i=null,r)=>e(e=>t(e)&&s.call(i,e),null,r),s)}function r(e,t){let s,i=new aw({onWillAddFirstListener(){s=e(i.fire,i)},onDidRemoveLastListener(){null==s||s.dispose()}});return null==t||t.add(i),i.event}function n(e,t,s=100,i=!1,r=!1,n,o){let a,l,c,h,d=0,u=new aw({leakWarningThreshold:n,onWillAddFirstListener(){a=e(e=>{d++,l=t(l,e),i&&!c&&(u.fire(l),l=void 0),h=()=>{let e=l;l=void 0,c=void 0,(!i||d>1)&&u.fire(e),d=0},"number"==typeof s?(clearTimeout(c),c=setTimeout(h,s)):void 0===c&&(c=0,queueMicrotask(h))})},onWillRemoveListener(){r&&d>0&&(null==h||h())},onDidRemoveLastListener(){h=void 0,a.dispose()}});return null==o||o.add(u),u.event}e.None=()=>Ub.None,e.defer=function(e,t){return n(e,()=>{},0,void 0,!0,void 0,t)},e.once=t,e.map=s,e.forEach=function(e,t,s){return r((s,i=null,r)=>e(e=>{t(e),s.call(i,e)},null,r),s)},e.filter=i,e.signal=function(e){return e},e.any=function(...e){return(t,s=null,i)=>{let r=Wb(...e.map(e=>e(e=>t.call(s,e))));return function(e,t){return t instanceof Array?t.push(e):t&&t.add(e),e}(r,i)}},e.reduce=function(e,t,i,r){let n=i;return s(e,e=>(n=t(n,e),n),r)},e.debounce=n,e.accumulate=function(t,s=0,i){return e.debounce(t,(e,t)=>e?(e.push(t),e):[t],s,void 0,!0,void 0,i)},e.latch=function(e,t=(e,t)=>e===t,s){let r,n=!0;return i(e,e=>{let s=n||!t(e,r);return n=!1,r=e,s},s)},e.split=function(t,s,i){return[e.filter(t,s,i),e.filter(t,e=>!s(e),i)]},e.buffer=function(e,t=!1,s=[],i){let r=s.slice(),n=e(e=>{r?r.push(e):a.fire(e)});i&&i.add(n);let o=()=>{null==r||r.forEach(e=>a.fire(e)),r=null},a=new aw({onWillAddFirstListener(){n||(n=e(e=>a.fire(e)),i&&i.add(n))},onDidAddFirstListener(){r&&(t?setTimeout(o):o())},onDidRemoveLastListener(){n&&n.dispose(),n=null}});return i&&i.add(a),a.event},e.chain=function(e,t){return(s,i,r)=>{let n=t(new a);return e(function(e){let t=n.evaluate(e);t!==o&&s.call(i,t)},void 0,r)}};let o=Symbol("HaltChainable");class a{constructor(){this.steps=[]}map(e){return this.steps.push(e),this}forEach(e){return this.steps.push(t=>(e(t),t)),this}filter(e){return this.steps.push(t=>e(t)?t:o),this}reduce(e,t){let s=t;return this.steps.push(t=>(s=e(s,t),s)),this}latch(e=(e,t)=>e===t){let t,s=!0;return this.steps.push(i=>{let r=s||!e(i,t);return s=!1,t=i,r?i:o}),this}evaluate(e){for(let t of this.steps)if((e=t(e))===o)break;return e}}e.fromNodeEventEmitter=function(e,t,s=e=>e){let i=(...e)=>r.fire(s(...e)),r=new aw({onWillAddFirstListener:()=>e.on(t,i),onDidRemoveLastListener:()=>e.removeListener(t,i)});return r.event},e.fromDOMEventEmitter=function(e,t,s=e=>e){let i=(...e)=>r.fire(s(...e)),r=new aw({onWillAddFirstListener:()=>e.addEventListener(t,i),onDidRemoveLastListener:()=>e.removeEventListener(t,i)});return r.event},e.toPromise=function(e){return new Promise(s=>t(e)(s))},e.fromPromise=function(e){let t=new aw;return e.then(e=>{t.fire(e)},()=>{t.fire(void 0)}).finally(()=>{t.dispose()}),t.event},e.forward=function(e,t){return e(e=>t.fire(e))},e.runAndSubscribe=function(e,t,s){return t(s),e(e=>t(e))};class l{constructor(e,t){this._observable=e,this._counter=0,this._hasChanged=!1;let s={onWillAddFirstListener:()=>{e.addObserver(this)},onDidRemoveLastListener:()=>{e.removeObserver(this)}};this.emitter=new aw(s),t&&t.add(this.emitter)}beginUpdate(e){this._counter++}handlePossibleChange(e){}handleChange(e,t){this._hasChanged=!0}endUpdate(e){this._counter--,0===this._counter&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}e.fromObservable=function(e,t){return new l(e,t).emitter.event},e.fromObservableLight=function(e){return(t,s,i)=>{let r=0,n=!1,o={beginUpdate(){r++},endUpdate(){r--,0===r&&(e.reportChanges(),n&&(n=!1,t.call(s)))},handlePossibleChange(){},handleChange(){n=!0}};e.addObserver(o),e.reportChanges();let a={dispose(){e.removeObserver(o)}};return i instanceof Vb?i.add(a):Array.isArray(i)&&i.push(a),a}}})(qb||(qb={}));var Zb=class e{constructor(t){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${t}_${e._idPool++}`,e.all.add(this)}start(e){this._stopWatch=new Gb,this.listenerCount=e}stop(){if(this._stopWatch){let e=this._stopWatch.elapsed();this.durations.push(e),this.elapsedOverall+=e,this.invocationCount+=1,this._stopWatch=void 0}}};Zb.all=new Set,Zb._idPool=0;var Jb=Zb,Qb=class e{constructor(t,s,i=(e._idPool++).toString(16).padStart(3,"0")){this._errorHandler=t,this.threshold=s,this.name=i,this._warnCountdown=0}dispose(){var e;null==(e=this._stacks)||e.clear()}check(e,t){let s=this.threshold;if(s<=0||t<s)return;this._stacks||(this._stacks=new Map);let i=this._stacks.get(e.value)||0;if(this._stacks.set(e.value,i+1),this._warnCountdown-=1,this._warnCountdown<=0){this._warnCountdown=.5*s;let[e,i]=this.getMostFrequentStack(),r=`[${this.name}] potential listener LEAK detected, having ${t} listeners already. MOST frequent listener (${i}):`;console.warn(r),console.warn(e);let n=new iw(r,e);this._errorHandler(n)}return()=>{let t=this._stacks.get(e.value)||0;this._stacks.set(e.value,t-1)}}getMostFrequentStack(){if(!this._stacks)return;let e,t=0;for(let[s,i]of this._stacks)(!e||t<i)&&(e=[s,i],t=i);return e}};Qb._idPool=1;var ew,tw=Qb,sw=class e{constructor(e){this.value=e}static create(){let t=new Error;return new e(t.stack??"")}print(){console.warn(this.value.split("\n").slice(2).join("\n"))}},iw=class extends Error{constructor(e,t){super(e),this.name="ListenerLeakError",this.stack=t}},rw=class extends Error{constructor(e,t){super(e),this.name="ListenerRefusalError",this.stack=t}},nw=0,ow=class{constructor(e){this.value=e,this.id=nw++}},aw=class{constructor(e){var t,s,i,r;this._size=0,this._options=e,this._leakageMon=(null==(t=this._options)?void 0:t.leakWarningThreshold)?new tw((null==e?void 0:e.onListenerError)??Lb,(null==(s=this._options)?void 0:s.leakWarningThreshold)??-1):void 0,this._perfMon=(null==(i=this._options)?void 0:i._profName)?new Jb(this._options._profName):void 0,this._deliveryQueue=null==(r=this._options)?void 0:r.deliveryQueue}dispose(){var e,t,s,i;this._disposed||(this._disposed=!0,(null==(e=this._deliveryQueue)?void 0:e.current)===this&&this._deliveryQueue.reset(),this._listeners&&(this._listeners=void 0,this._size=0),null==(s=null==(t=this._options)?void 0:t.onDidRemoveLastListener)||s.call(t),null==(i=this._leakageMon)||i.dispose())}get event(){return this._event??(this._event=(e,t,s)=>{var i,r,n,o,a;if(this._leakageMon&&this._size>this._leakageMon.threshold**2){let e=`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;console.warn(e);let t=this._leakageMon.getMostFrequentStack()??["UNKNOWN stack",-1],s=new rw(`${e}. HINT: Stack shows most frequent listener (${t[1]}-times)`,t[0]);return((null==(i=this._options)?void 0:i.onListenerError)||Lb)(s),Ub.None}if(this._disposed)return Ub.None;t&&(e=e.bind(t));let l,c=new ow(e);this._leakageMon&&this._size>=Math.ceil(.2*this._leakageMon.threshold)&&(c.stack=sw.create(),l=this._leakageMon.check(c.stack,this._size+1)),this._listeners?this._listeners instanceof ow?(this._deliveryQueue??(this._deliveryQueue=new lw),this._listeners=[this._listeners,c]):this._listeners.push(c):(null==(n=null==(r=this._options)?void 0:r.onWillAddFirstListener)||n.call(r,this),this._listeners=c,null==(a=null==(o=this._options)?void 0:o.onDidAddFirstListener)||a.call(o,this)),this._size++;let h=Fb(()=>{null==l||l(),this._removeListener(c)});return s instanceof Vb?s.add(h):Array.isArray(s)&&s.push(h),h}),this._event}_removeListener(e){var t,s,i,r;if(null==(s=null==(t=this._options)?void 0:t.onWillRemoveListener)||s.call(t,this),!this._listeners)return;if(1===this._size)return this._listeners=void 0,null==(r=null==(i=this._options)?void 0:i.onDidRemoveLastListener)||r.call(i,this),void(this._size=0);let n=this._listeners,o=n.indexOf(e);if(-1===o)throw console.log("disposed?",this._disposed),console.log("size?",this._size),console.log("arr?",JSON.stringify(this._listeners)),new Error("Attempted to dispose unknown listener");this._size--,n[o]=void 0;let a=this._deliveryQueue.current===this;if(2*this._size<=n.length){let e=0;for(let t=0;t<n.length;t++)n[t]?n[e++]=n[t]:a&&(this._deliveryQueue.end--,e<this._deliveryQueue.i&&this._deliveryQueue.i--);n.length=e}}_deliver(e,t){var s;if(!e)return;let i=(null==(s=this._options)?void 0:s.onListenerError)||Lb;if(i)try{e.value(t)}catch(t_){i(t_)}else e.value(t)}_deliverQueue(e){let t=e.current._listeners;for(;e.i<e.end;)this._deliver(t[e.i++],e.value);e.reset()}fire(e){var t,s,i,r;if((null==(t=this._deliveryQueue)?void 0:t.current)&&(this._deliverQueue(this._deliveryQueue),null==(s=this._perfMon)||s.stop()),null==(i=this._perfMon)||i.start(this._size),this._listeners)if(this._listeners instanceof ow)this._deliver(this._listeners,e);else{let t=this._deliveryQueue;t.enqueue(this,e,this._listeners.length),this._deliverQueue(t)}null==(r=this._perfMon)||r.stop()}hasListeners(){return this._size>0}},lw=class{constructor(){this.i=-1,this.end=0}enqueue(e,t,s){this.i=0,this.end=s,this.current=e,this.value=t}reset(){this.i=this.end,this.current=void 0,this.value=void 0}},cw=Object.freeze(function(e,t){let s=setTimeout(e.bind(t),0);return{dispose(){clearTimeout(s)}}});(e=>{e.isCancellationToken=function(t){return t===e.None||t===e.Cancelled||t instanceof uw||!(!t||"object"!=typeof t)&&("boolean"==typeof t.isCancellationRequested&&"function"==typeof t.onCancellationRequested)},e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:qb.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:cw})})(ew||(ew={}));var hw,dw,uw=class{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?cw:(this._emitter||(this._emitter=new aw),this._emitter.event)}dispose(){this._emitter&&(this._emitter.dispose(),this._emitter=null)}},fw="en",pw=fw,mw=globalThis;typeof mw.vscode<"u"&&typeof mw.vscode.process<"u"?dw=mw.vscode.process:typeof process<"u"&&"string"==typeof(null==(i=null==process?void 0:process.versions)?void 0:i.node)&&(dw=process);var gw="string"==typeof(null==(r=null==dw?void 0:dw.versions)?void 0:r.electron)&&"renderer"===(null==dw?void 0:dw.type);if("object"==typeof dw){dw.platform,dw.platform,"linux"===dw.platform&&!!dw.env.SNAP&&dw.env.SNAP_REVISION,!!dw.env.CI||dw.env.BUILD_ARTIFACTSTAGINGDIRECTORY,pw=fw;let e=dw.env.VSCODE_NLS_CONFIG;if(e)try{let t=JSON.parse(e);t.userLocale,t.osLocale,pw=t.resolvedLanguage||fw,null==(n=t.languagePack)?void 0:n.translationsConfigFile}catch{}}else"object"!=typeof navigator||gw?console.error("Unable to resolve platform."):((hw=navigator.userAgent).indexOf("Windows"),hw.indexOf("Macintosh"),(hw.indexOf("Macintosh")>=0||hw.indexOf("iPad")>=0||hw.indexOf("iPhone")>=0)&&!!navigator.maxTouchPoints&&navigator.maxTouchPoints,hw.indexOf("Linux")>=0,null==hw||hw.indexOf("Mobi"),pw=globalThis._VSCODE_NLS_LANGUAGE||fw,navigator.language.toLowerCase());var _w,vw=hw,xw=pw;(e=>{e.value=function(){return xw},e.isDefaultVariant=function(){return 2===xw.length?"en"===xw:xw.length>=3&&("e"===xw[0]&&"n"===xw[1]&&"-"===xw[2])},e.isDefault=function(){return"en"===xw}})(_w||(_w={}));var yw="function"==typeof mw.postMessage&&!mw.importScripts;(()=>{if(yw){let e=[];mw.addEventListener("message",t=>{if(t.data&&t.data.vscodeScheduleAsyncWork)for(let s=0,i=e.length;s<i;s++){let i=e[s];if(i.id===t.data.vscodeScheduleAsyncWork)return e.splice(s,1),void i.callback()}});let t=0;return s=>{let i=++t;e.push({id:i,callback:s}),mw.postMessage({vscodeScheduleAsyncWork:i},"*")}}})();var bw,ww,Sw=!!(vw&&vw.indexOf("Chrome")>=0);function Cw(e,t=0,s){let i=setTimeout(()=>{e()},t);return Fb(()=>{clearTimeout(i)})}vw&&vw.indexOf("Firefox"),!Sw&&vw&&vw.indexOf("Safari"),vw&&vw.indexOf("Edg/"),vw&&vw.indexOf("Android"),(ww=bw||(bw={})).settled=async function(e){let t,s=await Promise.all(e.map(e=>e.then(e=>e,e=>{t||(t=e)})));if(typeof t<"u")throw t;return s},ww.withAsyncBody=function(e){return new Promise(async(t,s)=>{try{await e(t,s)}catch(i){s(i)}})};var kw=class e{static fromArray(t){return new e(e=>{e.emitMany(t)})}static fromPromise(t){return new e(async e=>{e.emitMany(await t)})}static fromPromises(t){return new e(async e=>{await Promise.all(t.map(async t=>e.emitOne(await t)))})}static merge(t){return new e(async e=>{await Promise.all(t.map(async t=>{for await(let s of t)e.emitOne(s)}))})}constructor(e,t){this._state=0,this._results=[],this._error=null,this._onReturn=t,this._onStateChanged=new aw,queueMicrotask(async()=>{let t={emitOne:e=>this.emitOne(e),emitMany:e=>this.emitMany(e),reject:e=>this.reject(e)};try{await Promise.resolve(e(t)),this.resolve()}catch(t_){this.reject(t_)}finally{t.emitOne=void 0,t.emitMany=void 0,t.reject=void 0}})}[Symbol.asyncIterator](){let e=0;return{next:async()=>{for(;;){if(2===this._state)throw this._error;if(e<this._results.length)return{done:!1,value:this._results[e++]};if(1===this._state)return{done:!0,value:void 0};await qb.toPromise(this._onStateChanged.event)}},return:async()=>{var e;return null==(e=this._onReturn)||e.call(this),{done:!0,value:void 0}}}}static map(t,s){return new e(async e=>{for await(let i of t)e.emitOne(s(i))})}map(t){return e.map(this,t)}static filter(t,s){return new e(async e=>{for await(let i of t)s(i)&&e.emitOne(i)})}filter(t){return e.filter(this,t)}static coalesce(t){return e.filter(t,e=>!!e)}coalesce(){return e.coalesce(this)}static async toPromise(e){let t=[];for await(let s of e)t.push(s);return t}toPromise(){return e.toPromise(this)}emitOne(e){0===this._state&&(this._results.push(e),this._onStateChanged.fire())}emitMany(e){0===this._state&&(this._results=this._results.concat(e),this._onStateChanged.fire())}resolve(){0===this._state&&(this._state=1,this._onStateChanged.fire())}reject(e){0===this._state&&(this._state=2,this._error=e,this._onStateChanged.fire())}};kw.EMPTY=kw.fromArray([]);var Nw=class extends Ub{constructor(e){super(),this._terminal=e,this._linesCacheTimeout=this._register(new Yb),this._linesCacheDisposables=this._register(new Yb),this._register(Fb(()=>this._destroyLinesCache()))}initLinesCache(){this._linesCache||(this._linesCache=new Array(this._terminal.buffer.active.length),this._linesCacheDisposables.value=Wb(this._terminal.onLineFeed(()=>this._destroyLinesCache()),this._terminal.onCursorMove(()=>this._destroyLinesCache()),this._terminal.onResize(()=>this._destroyLinesCache()))),this._linesCacheTimeout.value=Cw(()=>this._destroyLinesCache(),15e3)}_destroyLinesCache(){this._linesCache=void 0,this._linesCacheDisposables.clear(),this._linesCacheTimeout.clear()}getLineFromCache(e){var t;return null==(t=this._linesCache)?void 0:t[e]}setLineInCache(e,t){this._linesCache&&(this._linesCache[e]=t)}translateBufferLineToStringWithWrap(e,t){var s;let i=[],r=[0],n=this._terminal.buffer.active.getLine(e);for(;n;){let o=this._terminal.buffer.active.getLine(e+1),a=!!o&&o.isWrapped,l=n.translateToString(!a&&t);if(a&&o){let e=n.getCell(n.length-1);e&&0===e.getCode()&&1===e.getWidth()&&2===(null==(s=o.getCell(0))?void 0:s.getWidth())&&(l=l.slice(0,-1))}if(i.push(l),!a)break;r.push(r[r.length-1]+l.length),e++,n=o}return[i.join(""),r]}},Ew=class{get cachedSearchTerm(){return this._cachedSearchTerm}set cachedSearchTerm(e){this._cachedSearchTerm=e}get lastSearchOptions(){return this._lastSearchOptions}set lastSearchOptions(e){this._lastSearchOptions=e}isValidSearchTerm(e){return!!(e&&e.length>0)}didOptionsChange(e){return!this._lastSearchOptions||!!e&&(this._lastSearchOptions.caseSensitive!==e.caseSensitive||this._lastSearchOptions.regex!==e.regex||this._lastSearchOptions.wholeWord!==e.wholeWord)}shouldUpdateHighlighting(e,t){return!!(null==t?void 0:t.decorations)&&(void 0===this._cachedSearchTerm||e!==this._cachedSearchTerm||this.didOptionsChange(t))}clearCachedTerm(){this._cachedSearchTerm=void 0}reset(){this._cachedSearchTerm=void 0,this._lastSearchOptions=void 0}},jw=class{constructor(e,t){this._terminal=e,this._lineCache=t}find(e,t,s,i){if(!e||0===e.length)return void this._terminal.clearSelection();if(s>this._terminal.cols)throw new Error(`Invalid col: ${s} to search in terminal of ${this._terminal.cols} cols`);this._lineCache.initLinesCache();let r={startRow:t,startCol:s},n=this._findInLine(e,r,i);if(!n)for(let o=t+1;o<this._terminal.buffer.active.baseY+this._terminal.rows&&(r.startRow=o,r.startCol=0,n=this._findInLine(e,r,i),!n);o++);return n}findNextWithSelection(e,t,s){if(!e||0===e.length)return void this._terminal.clearSelection();let i=this._terminal.getSelectionPosition();this._terminal.clearSelection();let r=0,n=0;i&&(s===e?(r=i.end.x,n=i.end.y):(r=i.start.x,n=i.start.y)),this._lineCache.initLinesCache();let o={startRow:n,startCol:r},a=this._findInLine(e,o,t);if(!a)for(let l=n+1;l<this._terminal.buffer.active.baseY+this._terminal.rows&&(o.startRow=l,o.startCol=0,a=this._findInLine(e,o,t),!a);l++);if(!a&&0!==n)for(let l=0;l<n&&(o.startRow=l,o.startCol=0,a=this._findInLine(e,o,t),!a);l++);return!a&&i&&(o.startRow=i.start.y,o.startCol=0,a=this._findInLine(e,o,t)),a}findPreviousWithSelection(e,t,s){if(!e||0===e.length)return void this._terminal.clearSelection();let i=this._terminal.getSelectionPosition();this._terminal.clearSelection();let r=this._terminal.buffer.active.baseY+this._terminal.rows-1,n=this._terminal.cols,o=!0;this._lineCache.initLinesCache();let a,l={startRow:r,startCol:n};if(i&&(l.startRow=r=i.start.y,l.startCol=n=i.start.x,s!==e&&(a=this._findInLine(e,l,t,!1),a||(l.startRow=r=i.end.y,l.startCol=n=i.end.x))),a||(a=this._findInLine(e,l,t,o)),!a){l.startCol=Math.max(l.startCol,this._terminal.cols);for(let s=r-1;s>=0&&(l.startRow=s,a=this._findInLine(e,l,t,o),!a);s--);}if(!a&&r!==this._terminal.buffer.active.baseY+this._terminal.rows-1)for(let c=this._terminal.buffer.active.baseY+this._terminal.rows-1;c>=r&&(l.startRow=c,a=this._findInLine(e,l,t,o),!a);c--);return a}_isWholeWord(e,t,s){return(0===e||" ~!@#$%^&*()+`-=[]{}|\\;:\"',./<>?".includes(t[e-1]))&&(e+s.length===t.length||" ~!@#$%^&*()+`-=[]{}|\\;:\"',./<>?".includes(t[e+s.length]))}_findInLine(e,t,s={},i=!1){var r;let n=t.startRow,o=t.startCol;if(null==(r=this._terminal.buffer.active.getLine(n))?void 0:r.isWrapped)return i?void(t.startCol+=this._terminal.cols):(t.startRow--,t.startCol+=this._terminal.cols,this._findInLine(e,t,s));let a=this._lineCache.getLineFromCache(n);a||(a=this._lineCache.translateBufferLineToStringWithWrap(n,!0),this._lineCache.setLineInCache(n,a));let[l,c]=a,h=this._bufferColsToStringOffset(n,o),d=e,u=l;s.regex||(d=s.caseSensitive?e:e.toLowerCase(),u=s.caseSensitive?l:l.toLowerCase());let f=-1;if(s.regex){let t,r=RegExp(d,s.caseSensitive?"g":"gi");if(i)for(;t=r.exec(u.slice(0,h));)f=r.lastIndex-t[0].length,e=t[0],r.lastIndex-=e.length-1;else t=r.exec(u.slice(h)),t&&t[0].length>0&&(f=h+(r.lastIndex-t[0].length),e=t[0])}else i?h-d.length>=0&&(f=u.lastIndexOf(d,h-d.length)):f=u.indexOf(d,h);if(f>=0){if(s.wholeWord&&!this._isWholeWord(f,u,e))return;let t=0;for(;t<c.length-1&&f>=c[t+1];)t++;let i=t;for(;i<c.length-1&&f+e.length>=c[i+1];)i++;let r=f-c[t],o=f+e.length-c[i],a=this._stringLengthToBufferSize(n+t,r);return{term:e,col:a,row:n+t,size:this._stringLengthToBufferSize(n+i,o)-a+this._terminal.cols*(i-t)}}}_stringLengthToBufferSize(e,t){let s=this._terminal.buffer.active.getLine(e);if(!s)return 0;for(let i=0;i<t;i++){let e=s.getCell(i);if(!e)break;let r=e.getChars();r.length>1&&(t-=r.length-1);let n=s.getCell(i+1);n&&0===n.getWidth()&&t++}return t}_bufferColsToStringOffset(e,t){let s=e,i=0,r=this._terminal.buffer.active.getLine(s);for(;t>0&&r;){for(let e=0;e<t&&e<this._terminal.cols;e++){let t=r.getCell(e);if(!t)break;t.getWidth()&&(i+=0===t.getCode()?1:t.getChars().length)}if(s++,r=this._terminal.buffer.active.getLine(s),r&&!r.isWrapped)break;t-=this._terminal.cols}return i}},Mw=class extends Ub{constructor(e){super(),this._terminal=e,this._highlightDecorations=[],this._highlightedLines=new Set,this._register(Fb(()=>this.clearHighlightDecorations()))}createHighlightDecorations(e,t){this.clearHighlightDecorations();for(let s of e){let e=this._createResultDecorations(s,t,!1);if(e)for(let t of e)this._storeDecoration(t,s)}}createActiveDecoration(e,t){let s=this._createResultDecorations(e,t,!0);if(s)return{decorations:s,match:e,dispose(){Hb(s)}}}clearHighlightDecorations(){Hb(this._highlightDecorations),this._highlightDecorations=[],this._highlightedLines.clear()}_storeDecoration(e,t){this._highlightedLines.add(e.marker.line),this._highlightDecorations.push({decoration:e,match:t,dispose(){e.dispose()}})}_applyStyles(e,t,s){e.classList.contains("xterm-find-result-decoration")||(e.classList.add("xterm-find-result-decoration"),t&&(e.style.outline=`1px solid ${t}`)),s&&e.classList.add("xterm-find-active-result-decoration")}_createResultDecorations(e,t,s){let i=[],r=e.col,n=e.size,o=-this._terminal.buffer.active.baseY-this._terminal.buffer.active.cursorY+e.row;for(;n>0;){let e=Math.min(this._terminal.cols-r,n);i.push([o,r,e]),r=0,n-=e,o++}let a=[];for(let l of i){let e=this._terminal.registerMarker(l[0]),i=this._terminal.registerDecoration({marker:e,x:l[1],width:l[2],backgroundColor:s?t.activeMatchBackground:t.matchBackground,overviewRulerOptions:this._highlightedLines.has(e.line)?void 0:{color:s?t.activeMatchColorOverviewRuler:t.matchOverviewRuler,position:"center"}});if(i){let r=[];r.push(e),r.push(i.onRender(e=>this._applyStyles(e,s?t.activeMatchBorder:t.matchBorder,!1))),r.push(i.onDispose(()=>Hb(r))),a.push(i)}}return 0===a.length?void 0:a}},Dw=class extends Ub{constructor(){super(...arguments),this._searchResults=[],this._onDidChangeResults=this._register(new aw)}get onDidChangeResults(){return this._onDidChangeResults.event}get searchResults(){return this._searchResults}get selectedDecoration(){return this._selectedDecoration}set selectedDecoration(e){this._selectedDecoration=e}updateResults(e,t){this._searchResults=e.slice(0,t)}clearResults(){this._searchResults=[]}clearSelectedDecoration(){this._selectedDecoration&&(this._selectedDecoration.dispose(),this._selectedDecoration=void 0)}findResultIndex(e){for(let t=0;t<this._searchResults.length;t++){let s=this._searchResults[t];if(s.row===e.row&&s.col===e.col&&s.size===e.size)return t}return-1}fireResultsChanged(e){if(!e)return;let t=-1;this._selectedDecoration&&(t=this.findResultIndex(this._selectedDecoration.match)),this._onDidChangeResults.fire({resultIndex:t,resultCount:this._searchResults.length})}reset(){this.clearSelectedDecoration(),this.clearResults()}},Rw=class extends Ub{constructor(e){super(),this._highlightTimeout=this._register(new Yb),this._lineCache=this._register(new Yb),this._state=new Ew,this._resultTracker=this._register(new Dw),this._highlightLimit=(null==e?void 0:e.highlightLimit)??1e3}get onDidChangeResults(){return this._resultTracker.onDidChangeResults}activate(e){this._terminal=e,this._lineCache.value=new Nw(e),this._engine=new jw(e,this._lineCache.value),this._decorationManager=new Mw(e),this._register(this._terminal.onWriteParsed(()=>this._updateMatches())),this._register(this._terminal.onResize(()=>this._updateMatches())),this._register(Fb(()=>this.clearDecorations()))}_updateMatches(){var e;this._highlightTimeout.clear(),this._state.cachedSearchTerm&&(null==(e=this._state.lastSearchOptions)?void 0:e.decorations)&&(this._highlightTimeout.value=Cw(()=>{let e=this._state.cachedSearchTerm;this._state.clearCachedTerm(),this.findPrevious(e,{...this._state.lastSearchOptions,incremental:!0},{noScroll:!0})},200))}clearDecorations(e){var t;this._resultTracker.clearSelectedDecoration(),null==(t=this._decorationManager)||t.clearHighlightDecorations(),this._resultTracker.clearResults(),e||this._state.clearCachedTerm()}clearActiveDecoration(){this._resultTracker.clearSelectedDecoration()}findNext(e,t,s){if(!this._terminal||!this._engine)throw new Error("Cannot use addon until it has been loaded");this._state.lastSearchOptions=t,this._state.shouldUpdateHighlighting(e,t)&&this._highlightAllMatches(e,t);let i=this._findNextAndSelect(e,t,s);return this._fireResults(t),this._state.cachedSearchTerm=e,i}_highlightAllMatches(e,t){if(!this._terminal||!this._engine||!this._decorationManager)throw new Error("Cannot use addon until it has been loaded");if(!this._state.isValidSearchTerm(e))return void this.clearDecorations();this.clearDecorations(!0);let s,i=[],r=this._engine.find(e,0,0,t);for(;r&&((null==s?void 0:s.row)!==r.row||(null==s?void 0:s.col)!==r.col)&&!(i.length>=this._highlightLimit);)s=r,i.push(s),r=this._engine.find(e,s.col+s.term.length>=this._terminal.cols?s.row+1:s.row,s.col+s.term.length>=this._terminal.cols?0:s.col+1,t);this._resultTracker.updateResults(i,this._highlightLimit),t.decorations&&this._decorationManager.createHighlightDecorations(i,t.decorations)}_findNextAndSelect(e,t,s){if(!this._terminal||!this._engine)return!1;if(!this._state.isValidSearchTerm(e))return this._terminal.clearSelection(),this.clearDecorations(),!1;let i=this._engine.findNextWithSelection(e,t,this._state.cachedSearchTerm);return this._selectResult(i,null==t?void 0:t.decorations,null==s?void 0:s.noScroll)}findPrevious(e,t,s){if(!this._terminal||!this._engine)throw new Error("Cannot use addon until it has been loaded");this._state.lastSearchOptions=t,this._state.shouldUpdateHighlighting(e,t)&&this._highlightAllMatches(e,t);let i=this._findPreviousAndSelect(e,t,s);return this._fireResults(t),this._state.cachedSearchTerm=e,i}_fireResults(e){this._resultTracker.fireResultsChanged(!!(null==e?void 0:e.decorations))}_findPreviousAndSelect(e,t,s){if(!this._terminal||!this._engine)return!1;if(!this._state.isValidSearchTerm(e))return this._terminal.clearSelection(),this.clearDecorations(),!1;let i=this._engine.findPreviousWithSelection(e,t,this._state.cachedSearchTerm);return this._selectResult(i,null==t?void 0:t.decorations,null==s?void 0:s.noScroll)}_selectResult(e,t,s){if(!this._terminal||!this._decorationManager)return!1;if(this._resultTracker.clearSelectedDecoration(),!e)return this._terminal.clearSelection(),!1;if(this._terminal.select(e.col,e.row,e.size),t){let s=this._decorationManager.createActiveDecoration(e,t);s&&(this._resultTracker.selectedDecoration=s)}if(!s&&(e.row>=this._terminal.buffer.active.viewportY+this._terminal.rows||e.row<this._terminal.buffer.active.viewportY)){let t=e.row-this._terminal.buffer.active.viewportY;t-=Math.floor(this._terminal.rows/2),this._terminal.scrollLines(t)}return!0}};const Pw={background:"#09090b",foreground:"#e4e4e7",cursor:"#a1a1aa",cursorAccent:"#09090b",selectionBackground:"#3f3f46",black:"#18181b",brightBlack:"#3f3f46",red:"#ef4444",brightRed:"#f87171",green:"#22c55e",brightGreen:"#4ade80",yellow:"#eab308",brightYellow:"#facc15",blue:"#3b82f6",brightBlue:"#60a5fa",magenta:"#a855f7",brightMagenta:"#c084fc",cyan:"#06b6d4",brightCyan:"#22d3ee",white:"#e4e4e7",brightWhite:"#f4f4f5"},Lw={background:"#ffffff",foreground:"#1c1c1c",cursor:"#6b7280",cursorAccent:"#ffffff",selectionBackground:"#d1d5db",black:"#1c1c1c",brightBlack:"#6b7280",red:"#dc2626",brightRed:"#ef4444",green:"#16a34a",brightGreen:"#22c55e",yellow:"#ca8a04",brightYellow:"#eab308",blue:"#2563eb",brightBlue:"#3b82f6",magenta:"#9333ea",brightMagenta:"#a855f7",cyan:"#0891b2",brightCyan:"#06b6d4",white:"#e5e7eb",brightWhite:"#f9fafb"},Tw=l.forwardRef(({onInput:e,onResize:t,onReady:s,cliTool:i="claude"},r)=>{const n=l.useRef(null),o=l.useRef(null),a=l.useRef(null),h=l.useRef(null),d=l.useRef(e),u=l.useRef(t),f=l.useRef(s),m=l.useRef(!1),g=l.useRef(null);d.current=e,u.current=t,f.current=s;const{resolved:_}=c();return l.useImperativeHandle(r,()=>({write:e=>{var t;null==(t=o.current)||t.write(e)},reset:()=>{const e=o.current;e&&(e.reset(),e.clear())},search:(e,t)=>{var s;return(null==(s=h.current)?void 0:s.findNext(e,t))??!1},searchNext:(e,t)=>{var s;return(null==(s=h.current)?void 0:s.findNext(e,t))??!1},searchPrevious:(e,t)=>{var s;return(null==(s=h.current)?void 0:s.findPrevious(e,t))??!1},clearSearch:()=>{var e;null==(e=h.current)||e.clearDecorations()}})),l.useEffect(()=>{if(!n.current)return;const e=new Db({theme:"dark"===_?Pw:Lw,fontFamily:'"JetBrains Mono", "Fira Code", "Cascadia Code", Menlo, Consolas, monospace',fontSize:13,lineHeight:1.5,cursorBlink:!0,convertEol:!1,scrollback:5e3,allowProposedApi:!0}),t=new Rb;e.loadAddon(t);const s=new Rw;e.loadAddon(s),h.current=s,e.open(n.current),requestAnimationFrame(()=>{var s;t.fit();const{cols:i,rows:r}=e;m.current||(m.current=!0,null==(s=f.current)||s.call(f,i,r)),u.current(i,r)}),o.current=e,a.current=t,g.current=_,e.onData(e=>{d.current(e)});const i=new ResizeObserver(()=>{requestAnimationFrame(()=>{n.current&&null!==n.current.offsetParent&&(t.fit(),u.current(e.cols,e.rows))})});return i.observe(n.current),()=>{i.disconnect(),e.dispose(),o.current=null,a.current=null,h.current=null}},[]),l.useEffect(()=>{const e=o.current;if(e&&g.current!==_)if(g.current=_,e.options.theme="dark"===_?Pw:Lw,"claude"===i){const e="dark"===_?"dark":"light";d.current(`/theme ${e}\r`)}else if("gemini"===i){const e="dark"===_?"dark":"light";d.current(`/settings theme ${e}\r`)}else if("codex"===i){const e="dark"===_?"dark":"light";d.current(`/theme ${e}\r`)}},[_,i]),p.jsx("div",{ref:n,className:"h-full w-full bg-background",style:{overflow:"hidden",padding:"4px"}})});function Iw({onSearch:e,onSearchNext:t,onSearchPrev:s,onClear:i,onClose:r}){const[n,o]=l.useState(""),[a,c]=l.useState(!1),[h,d]=l.useState(!1),u=l.useRef(null);l.useEffect(()=>{var e;null==(e=u.current)||e.focus()},[]);const f=l.useMemo(()=>({caseSensitive:a,regex:h}),[a,h]);return p.jsxs("div",{className:"absolute top-2 right-2 z-20 flex items-center gap-1 bg-background border border-border rounded-md shadow-sm px-2 py-1",children:[p.jsx(cs,{className:"h-3.5 w-3.5 text-muted-foreground flex-shrink-0"}),p.jsx(V,{ref:u,value:n,onChange:t=>{return s=t.target.value,o(s),void(s?e(s,f):i());var s},onKeyDown:e=>{if("Enter"===e.key){if(!n)return;e.shiftKey?s(n,f):t(n,f)}"Escape"===e.key&&(i(),r())},placeholder:"搜索...",className:"h-6 w-44 text-xs border-0 p-0 focus-visible:ring-0 bg-transparent"}),p.jsx("button",{title:"区分大小写",onClick:()=>{const t=!a;c(t),n&&e(n,{...f,caseSensitive:t})},className:m("text-[10px] px-1 rounded font-mono transition-colors",a?"bg-accent text-foreground font-medium":"text-muted-foreground hover:text-foreground"),children:"Aa"}),p.jsx("button",{title:"正则表达式",onClick:()=>{const t=!h;d(t),n&&e(n,{...f,regex:t})},className:m("text-[10px] px-1 rounded font-mono transition-colors",h?"bg-accent text-foreground font-medium":"text-muted-foreground hover:text-foreground"),children:".*"}),p.jsx(W,{variant:"ghost",size:"icon",className:"h-5 w-5",onClick:()=>{n&&s(n,f)},disabled:!n,children:p.jsx(as,{className:"h-3 w-3"})}),p.jsx(W,{variant:"ghost",size:"icon",className:"h-5 w-5",onClick:()=>{n&&t(n,f)},disabled:!n,children:p.jsx(rs,{className:"h-3 w-3"})}),p.jsx(W,{variant:"ghost",size:"icon",className:"h-5 w-5",onClick:()=>{i(),r()},children:p.jsx(b,{className:"h-3 w-3"})})]})}Tw.displayName="WebTerminal";const Bw=l.forwardRef(({projectId:e,project:t,onStatusChange:s,onChatMessage:i,onWsConnected:r,onWsDisconnected:n,onApprovalRequest:o,onApprovalResolved:a,onSemanticUpdate:c},h)=>{const d=l.useRef([]),[u,f]=l.useState(!1),[m,g]=l.useState(null),_=l.useRef(null),v=l.useRef(null),x=l.useRef(null),y=l.useRef(null),b=l.useCallback(e=>{var t;null==(t=_.current)||t.write(e)},[]),w=l.useCallback(()=>{var e;const t=v.current;t&&x.current&&x.current(t.cols,t.rows),null==(e=y.current)||e.call(y)},[]),S=l.useCallback(()=>{var e;null==(e=_.current)||e.reset()},[]),{subscribeTerminal:C,sendTerminalInput:k,sendTerminalResize:N,subscribeChatMessages:E}=gt(e,{onTerminalData:b,onTerminalReset:S,onStatus:s,onConnected:()=>{d.current=[],null==r||r(),w()},onDisconnected:()=>{null==n||n()},onChatMessage:e=>{d.current.push(e),null==i||i(e)},onApprovalRequest:e=>null==o?void 0:o(e),onApprovalResolved:e=>null==a?void 0:a(e),onContextUpdate:e=>g(e),onSemanticUpdate:e=>null==c?void 0:c(e)});l.useEffect(()=>{x.current=C},[C]),l.useEffect(()=>{y.current=E},[E]),l.useEffect(()=>{const e=e=>{(e.ctrlKey||e.metaKey)&&"f"===e.key&&(e.preventDefault(),f(e=>!e))};return document.addEventListener("keydown",e),()=>document.removeEventListener("keydown",e)},[]);const j=l.useCallback((e,t)=>{v.current={cols:e,rows:t},w()},[w]);return l.useImperativeHandle(h,()=>({sendTerminalInput:k}),[k]),p.jsxs("div",{className:"flex-1 overflow-hidden min-w-0 flex flex-col",children:[p.jsxs("div",{className:"relative flex-1 min-h-0",children:[p.jsx(Tw,{ref:_,onInput:k,onResize:(e,t)=>{v.current={cols:e,rows:t},N(e,t)},onReady:j,cliTool:null==t?void 0:t.cliTool}),u&&p.jsx(Iw,{onSearch:(e,t)=>{var s;return(null==(s=_.current)?void 0:s.search(e,t))??!1},onSearchNext:(e,t)=>{var s;return(null==(s=_.current)?void 0:s.searchNext(e,t))??!1},onSearchPrev:(e,t)=>{var s;return(null==(s=_.current)?void 0:s.searchPrevious(e,t))??!1},onClear:()=>{var e;return null==(e=_.current)?void 0:e.clearSearch()},onClose:()=>f(!1)})]}),p.jsxs("div",{className:"flex-shrink-0 flex items-center px-3 h-7 border-t border-border bg-muted/30 gap-3",children:[p.jsx(_t,{}),m&&p.jsxs("div",{className:"flex items-center gap-1.5 text-xs",children:[p.jsx("span",{className:"text-muted-foreground",children:"上下文"}),p.jsx("div",{className:"w-20 h-1.5 bg-muted rounded-full overflow-hidden",children:p.jsx("div",{className:"h-full rounded-full transition-all "+(m.usedPercentage<50?"bg-green-500":m.usedPercentage<80?"bg-yellow-500":"bg-red-500"),style:{width:`${Math.min(m.usedPercentage,100)}%`}})}),p.jsxs("span",{className:"font-medium "+(m.usedPercentage<50?"text-green-500":m.usedPercentage<80?"text-yellow-500":"text-red-500"),children:[Math.round(m.usedPercentage),"%"]}),p.jsx("span",{className:"text-muted-foreground/50",children:m.contextWindowSize>=1e6?`${(m.contextWindowSize/1e6).toFixed(0)}M`:`${Math.round(m.contextWindowSize/1e3)}K`})]})]})]})});Bw.displayName="TerminalView";function Ow(e){const[t,s]=l.useState(null),[i,r]=l.useState(!1),n=l.useRef(e);n.current=e;const o=l.useCallback(async()=>{const e=n.current;if(e)try{const t=await function(e){return un("GET",`/api/projects/${e}/flows/state`)}(e);if(e!==n.current)return;s(t.state),r(t.running)}catch{}},[]);return l.useEffect(()=>{if(!e)return s(null),void r(!1);let t=null;const i=()=>{o(),t=setInterval(()=>{o()},2e3)},n=()=>{null!==t&&(clearInterval(t),t=null)},a=()=>{document.hidden?n():t||i()};return document.hidden||i(),document.addEventListener("visibilitychange",a),()=>{n(),document.removeEventListener("visibilitychange",a)}},[e,o]),{state:t,running:i,refresh:o}}function Aw(e){return"running"===e.status?"运行中":"paused"===e.status?"awaiting-user-input"===e.pauseReason?"等待用户输入":"timeout"===e.pauseReason?"超时(暂停)":"max-retries-exceeded"===e.pauseReason?"回边耗尽(暂停)":"已暂停":e.status}function zw({projectId:e,state:t,flowDef:s,onActioned:i}){const[r,n]=l.useState(!1);if(!t||"running"!==t.status&&"paused"!==t.status)return null;const o=null!==t.currentNodeId?t.loopCounters[t.currentNodeId]:void 0;return p.jsxs("div",{className:"flex-shrink-0 border-b border-border bg-accent/40",children:[p.jsxs("div",{className:"flex items-center gap-2 px-3 py-1.5 text-xs",children:[p.jsx(Ls,{className:"h-3.5 w-3.5 flex-shrink-0 text-primary"}),p.jsxs("span",{className:"font-medium",children:["任务流 · ",Aw(t)]}),null!==t.currentNodeId&&p.jsxs("span",{className:"text-muted-foreground",children:["节点 ",p.jsxs("span",{className:"font-mono",children:["#",t.currentNodeId]})]}),null!=o&&o>0&&p.jsxs("span",{className:"text-muted-foreground",children:["回边 ",o," 次"]}),"paused"===t.status&&p.jsx(Es,{className:"h-3 w-3 text-amber-500"}),p.jsx("div",{className:"flex-1"}),p.jsxs(W,{size:"sm",variant:"ghost",onClick:async()=>{n(!0);try{await pn(e),i()}catch(t){f.error(t instanceof Error?t.message:"中止失败")}finally{n(!1)}},disabled:r,className:"h-6 px-2 text-xs",children:[p.jsx(b,{className:"h-3 w-3 mr-1"})," 中止"]})]}),s&&p.jsx("div",{className:"border-t border-border/50 bg-background/40",children:p.jsx(wn,{nodes:s.nodes,entryNodeId:s.entryNodeId,mode:"runtime",state:t})})]})}const $w=new Set(["png","jpg","jpeg","gif","webp","svg","bmp","ico","avif","tiff","tif"]),Hw=new Set(["js","jsx","ts","tsx","py","rb","go","rs","java","kt","swift","c","cpp","h","cs","php","sh","bash","zsh","yaml","yml","json","toml","html","htm","xml","css","scss","less","sql","graphql","gql","r","lua","dart","zig"]);function Ww({projectId:e}){const t=j(t=>t.get(e).filePreviews),s=j(t=>t.get(e).activePreviewPath),i=j(e=>e.setActivePreview),r=j(e=>e.closeFilePreview),n=j(e=>e.minimizeFilePreview);return 0===t.length?null:p.jsx("div",{className:"absolute top-2 left-1/2 -translate-x-1/2 z-[60] pointer-events-auto",onContextMenu:e=>e.preventDefault(),children:p.jsx("div",{className:"flex items-center gap-1 rounded-full border border-border bg-background/85 backdrop-blur-sm shadow-sm px-1.5 py-1",children:t.map(t=>{const o=function(e){if(e.endsWith("/.notebook/graph.yaml"))return Cs;const t=function(e){const t=e.split("/").pop()??"",s=t.toLowerCase();if("dockerfile"===s)return"dockerfile";if("makefile"===s)return"makefile";const i=t.lastIndexOf(".");return i>=0?t.slice(i+1).toLowerCase():""}(e);return $w.has(t)?Lt:"pdf"===t?St:"xlsx"===t||"xls"===t?_s:"pptx"===t?Ms:"docx"===t||"md"===t?St:Hw.has(t)?ps:vt}(t.path),a=t.path===s&&!t.minimized;return p.jsxs("div",{className:m("group flex items-center gap-1 rounded-full pl-1.5 pr-1 py-0.5 max-w-[180px] cursor-pointer transition-colors",a?"bg-accent text-accent-foreground":"hover:bg-muted text-muted-foreground"),onClick:()=>{a?n(e,t.path):i(e,t.path)},title:t.path,children:[p.jsx(o,{className:"size-3.5 flex-shrink-0"}),p.jsx("span",{className:"text-xs truncate min-w-0",children:(l=t.path,l.split("/").pop()??l)}),p.jsx("button",{className:"flex-shrink-0 size-4 rounded-full flex items-center justify-center opacity-60 hover:opacity-100 hover:bg-background/60 transition-opacity",onClick:s=>{s.stopPropagation(),r(e,t.path)},title:"关闭",children:p.jsx(b,{className:"size-3"})})]},t.path);var l})})})}function Fw(e){return null==e?"(未设置)":"string"==typeof e?e:JSON.stringify(e,null,2)}function Kw({projectId:e,open:t,nodeId:s,fields:i,contextValues:r,onSubmitted:n}){const[o,a]=l.useState(()=>{const e={};for(const t of i)t.bindVariable&&(null==r?void 0:r.variables)?e[t.key]=Fw(r.variables[t.bindVariable]):t.bindConstant&&(null==r?void 0:r.constants)?e[t.key]=Fw(r.constants[t.bindConstant]):e[t.key]="";return e}),[c,h]=l.useState(!1);return p.jsx(Se,{open:t,onOpenChange:()=>{},children:p.jsxs(Ce,{className:"max-w-lg",onPointerDownOutside:e=>e.preventDefault(),onEscapeKeyDown:e=>e.preventDefault(),children:[p.jsx(ke,{children:p.jsxs(Ne,{children:["任务流需要输入 · 节点 #",s]})}),p.jsx("div",{className:"space-y-3",children:i.map(e=>{const t=!!e.bindVariable||!!e.bindConstant,s=e.bindVariable?`← 变量 ${e.bindVariable}`:e.bindConstant?`← 常量 ${e.bindConstant}`:e.outputVariable?`→ 变量 ${e.outputVariable}`:null;return p.jsxs("div",{className:"space-y-1.5",children:[p.jsxs(je,{className:"text-xs text-muted-foreground",children:[e.label," ",p.jsxs("span",{className:"opacity-60 font-mono",children:["(",e.key,")"]}),s&&p.jsx("span",{className:"ml-2 "+(e.bindConstant?"text-emerald-600 dark:text-emerald-400":e.bindVariable?"text-blue-600 dark:text-blue-400":"text-primary"),children:s})]}),"textarea"===e.type?p.jsx("textarea",{value:o[e.key]??"",readOnly:t,onChange:s=>!t&&a({...o,[e.key]:s.target.value}),className:"w-full min-h-[80px] rounded-md border border-border bg-background px-3 py-2 text-sm outline-none focus:ring-2 focus:ring-ring/30 resize-y "+(t?"bg-muted text-muted-foreground cursor-not-allowed":"")}):p.jsx(V,{value:o[e.key]??"",readOnly:t,onChange:s=>!t&&a({...o,[e.key]:s.target.value}),className:t?"bg-muted text-muted-foreground cursor-not-allowed":""})]},e.key)})}),p.jsx("div",{className:"flex justify-end gap-2 pt-2",children:p.jsx(W,{onClick:async()=>{h(!0);try{await function(e,t){return un("POST",`/api/projects/${e}/flows/input`,{data:t})}(e,o),n()}catch(t){f.error(t instanceof Error?t.message:"提交失败")}finally{h(!1)}},disabled:c,size:"sm",children:c?"提交中…":"提交"})})]})})}function Vw(e){switch(e){case"timeout":return"节点超时";case"max-retries-exceeded":return"回边重试次数耗尽";case"user-paused":return"已暂停";default:return"任务流已暂停"}}function Uw(e){switch(e){case"timeout":return"继续 = 重新发送 prompt 并重新计时。中止 = 终结任务流。";case"max-retries-exceeded":return"继续 = 重置该节点的回边计数,再给 maxRetries 次机会。中止 = 终结。";default:return""}}function qw({projectId:e,open:t,state:s,onActioned:i}){const[r,n]=l.useState(!1);if(!s)return null;return p.jsx(Se,{open:t,onOpenChange:()=>{},children:p.jsxs(Ce,{className:"max-w-md",onPointerDownOutside:e=>e.preventDefault(),onEscapeKeyDown:e=>e.preventDefault(),children:[p.jsx(ke,{children:p.jsxs(Ne,{className:"flex items-center gap-2",children:[p.jsx(is,{className:"h-4 w-4 text-amber-500"}),Vw(s.pauseReason)]})}),p.jsxs("div",{className:"space-y-2 text-sm",children:[p.jsx("p",{className:"text-muted-foreground",children:Uw(s.pauseReason)}),s.pauseDetail&&p.jsx("pre",{className:"rounded-md border border-border bg-muted p-2 text-xs whitespace-pre-wrap break-words font-mono max-h-48 overflow-y-auto",children:s.pauseDetail}),null!==s.currentNodeId&&p.jsxs("p",{className:"text-xs text-muted-foreground",children:["当前节点 ",p.jsxs("span",{className:"font-mono",children:["#",s.currentNodeId]})]})]}),p.jsxs("div",{className:"flex justify-end gap-2 pt-2",children:[p.jsx(W,{onClick:async()=>{n(!0);try{await pn(e),i()}catch(t){f.error(t instanceof Error?t.message:"中止失败")}finally{n(!1)}},disabled:r,variant:"ghost",size:"sm",children:"中止"}),p.jsx(W,{onClick:async()=>{n(!0);try{await function(e){return un("POST",`/api/projects/${e}/flows/resume`)}(e),i()}catch(t){f.error(t instanceof Error?t.message:"继续失败")}finally{n(!1)}},disabled:r,size:"sm",children:"继续"})]})]})})}const Yw=200,Xw=520;const Gw=Object.freeze(Object.defineProperty({__proto__:null,ProjectPage:function(){var e,t;const{id:s}=xt(),i=rt(),[r,n]=l.useState(null),[o,a]=l.useState(!0),c=Ow(s??null),h=c.running&&null!=c.state&&("running"===c.state.status||"paused"===c.state.status),[d,u]=l.useState(null),f=h?(null==(e=c.state)?void 0:e.flowFilename)??null:null;l.useEffect(()=>{if(!s||!f)return void u(null);let e=!1;return fn(s,f).then(t=>{e||u(t)}).catch(()=>{e||u(null)}),()=>{e=!0}},[s,f]);const g=c.running&&!!c.state&&"paused"===c.state.status&&"awaiting-user-input"===c.state.pauseReason&&!!c.state.pendingUserInput,_=c.running&&!!c.state&&"paused"===c.state.status&&null!==c.state.pauseReason&&"awaiting-user-input"!==c.state.pauseReason,[v,x]=ee(C.panelFileTree,"true"),[y,b]=ee(C.panelShortcuts,"true"),[w,S]=ee(C.chatOverlay(s??""),"true"),k=l.useCallback(()=>S(e=>"true"===e?"false":"true"),[S]),[N,E]=l.useState([]),[j,M]=l.useState(!1),[D,R]=l.useState([]),P=l.useRef(0),T=l.useCallback(e=>{P.current+=1;const t={...e,seq:P.current};R(e=>{const s=[...e,t];return s.length>500?s.slice(-500):s})},[]),[I,B]=l.useState(null),O=l.useCallback(e=>T(e),[T]),$=l.useCallback(e=>T(e),[T]),H=l.useCallback(e=>{E(t=>{const s=[...t,e];return s.length>200?s.slice(-200):s})},[]),F=l.useCallback(()=>{E([]),B(null),M(!0)},[]),K=l.useCallback(()=>{M(!1)},[]),V=l.useCallback(async e=>{var t,s;if(e.endsWith("\r")){const s=e.slice(0,-1);if(se.current){if("failed"===await se.current.sendCommand(s))throw new Error("chat send failed");return}const i=s.trimStart().startsWith("/")?s.replace(/\n/g,"\r")+"\r":yt(s);return void(null==(t=te.current)||t.sendTerminalInput(i))}null==(s=te.current)||s.sendTerminalInput(e)},[]),[U,q]=ee(C.panelLeftWidth,String(224)),[Y,X]=ee(C.panelRightWidth,String(208)),G=parseInt(U,10)||224,Z=parseInt(Y,10)||208,J=l.useRef(null),Q=l.useRef(null),te=l.useRef(null),se=l.useRef(null);l.useEffect(()=>{const e=e=>{(e.ctrlKey||e.metaKey)&&"i"===e.key&&"terminal"!==(null==r?void 0:r.cliTool)&&(e.preventDefault(),k())};return document.addEventListener("keydown",e),()=>document.removeEventListener("keydown",e)},[k,null==r?void 0:r.cliTool]);const ie=l.useRef(null);l.useEffect(()=>{const e=(null==r?void 0:r.cliTool)??null;e&&ie.current&&e!==ie.current&&(E([]),R([]),P.current=0,B(null)),ie.current=e},[null==r?void 0:r.cliTool]);const[re,ne]=l.useState("terminal"),[oe,ae]=l.useState(()=>window.innerWidth<768);l.useEffect(()=>{const e=()=>ae(window.innerWidth<768);return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)},[]);const{fetchProjects:le,hasFetched:ce}=ot();return l.useEffect(()=>{if(!s)return;(async()=>{ce||await le();const e=ot.getState().projects.find(e=>e.id===s)??null;n(e),a(!1)})()},[s,ce,le]),o?p.jsx("div",{className:"min-h-screen flex items-center justify-center bg-background",children:p.jsx("span",{className:"text-muted-foreground text-sm",children:"Loading…"})}):r&&s?p.jsxs("div",{className:"h-screen flex flex-col bg-background",children:[p.jsx(cm,{project:r,projectId:s,showFileTree:"true"===v,showShortcuts:"true"===y,showChatOverlay:"true"===w,onToggleFileTree:()=>x(e=>"true"===e?"false":"true"),onToggleShortcuts:()=>b(e=>"true"===e?"false":"true"),onToggleChatOverlay:k,onProjectUpdate:n}),p.jsx(zw,{projectId:s,state:c.state,flowDef:d,onActioned:c.refresh}),g&&(null==(t=c.state)?void 0:t.pendingUserInput)&&p.jsx(Kw,{projectId:s,open:!0,nodeId:c.state.pendingUserInput.nodeId,fields:c.state.pendingUserInput.fields,contextValues:c.state.pendingUserInput.contextValues,onSubmitted:c.refresh}),_&&p.jsx(qw,{projectId:s,open:!0,state:c.state,onActioned:c.refresh}),oe?p.jsxs("div",{className:"flex-1 overflow-hidden flex flex-col min-h-0",children:[p.jsxs("div",{className:"flex-1 overflow-hidden min-h-0",children:["files"===re&&p.jsx(oi,{projectPath:r.folderPath,projectId:s,cliTool:r.cliTool,onSend:V}),"terminal"===re&&p.jsx(Bw,{ref:te,projectId:s,project:r,onStatusChange:e=>n(t=>t?{...t,status:e}:t)}),"panel"===re&&p.jsx(hn,{projectId:s,onSend:V})]}),p.jsx("div",{className:"flex-shrink-0 flex border-t border-border bg-background pb-[env(safe-area-inset-bottom)]",children:[{id:"files",icon:L,label:"文件"},{id:"terminal",icon:bt,label:"终端"},{id:"panel",icon:Ns,label:"快捷"}].map(({id:e,icon:t,label:s})=>p.jsxs("button",{onClick:()=>ne(e),className:m("flex-1 flex flex-col items-center gap-0.5 py-2 text-[10px] transition-colors",re===e?"text-blue-400":"text-muted-foreground hover:text-foreground"),children:[p.jsx(t,{className:"h-4 w-4"}),s]},e))})]}):p.jsxs("div",{className:"flex-1 overflow-hidden flex min-h-0",children:[p.jsx(A,{initial:!1,children:"true"===v&&p.jsx(z.div,{ref:J,initial:{width:0,opacity:0},animate:{width:G,opacity:1},exit:{width:0,opacity:0},transition:{duration:.2,ease:"easeInOut"},className:"flex-shrink-0 overflow-hidden",children:p.jsx(oi,{projectPath:r.folderPath,projectId:s,cliTool:r.cliTool,onSend:V})})}),"true"===v&&p.jsx("div",{onMouseDown:e=>{var t;e.preventDefault();const s=e.clientX,i=(null==(t=J.current)?void 0:t.offsetWidth)??G;document.body.style.cursor="col-resize",document.body.style.userSelect="none";const r=e=>{const t=Math.max(Yw,Math.min(Xw,i+(e.clientX-s)));J.current&&(J.current.style.width=t+"px")},n=e=>{const t=Math.max(Yw,Math.min(Xw,i+(e.clientX-s)));q(String(t)),document.body.style.cursor="",document.body.style.userSelect="",window.removeEventListener("mousemove",r),window.removeEventListener("mouseup",n)};window.addEventListener("mousemove",r),window.addEventListener("mouseup",n)},className:"w-1 flex-shrink-0 bg-border hover:bg-blue-500/60 active:bg-blue-500/80 cursor-col-resize transition-colors"}),p.jsxs("div",{className:"flex-1 overflow-hidden min-w-0 relative flex flex-col",children:[p.jsx(Ww,{projectId:s}),p.jsx(Bw,{ref:te,projectId:s,project:r,onStatusChange:e=>n(t=>t?{...t,status:e}:t),onChatMessage:H,onWsConnected:F,onWsDisconnected:K,onApprovalRequest:O,onApprovalResolved:$,onSemanticUpdate:B}),p.jsx(A,{children:"true"===w&&"terminal"!==r.cliTool&&p.jsx(Bt,{ref:se,projectId:s,project:r,liveMessages:N,approvalEvents:D,semanticUpdate:I,wsConnected:j,onSend:e=>{var t;return null==(t=te.current)?void 0:t.sendTerminalInput(e)},onClose:k,flowActive:h},"chat-overlay")})]}),"true"===y&&p.jsx("div",{onMouseDown:e=>{var t;e.preventDefault();const s=e.clientX,i=(null==(t=Q.current)?void 0:t.offsetWidth)??Z;document.body.style.cursor="col-resize",document.body.style.userSelect="none";const r=e=>{const t=Math.max(Yw,Math.min(Xw,i-(e.clientX-s)));Q.current&&(Q.current.style.width=t+"px")},n=e=>{const t=Math.max(Yw,Math.min(Xw,i-(e.clientX-s)));X(String(t)),document.body.style.cursor="",document.body.style.userSelect="",window.removeEventListener("mousemove",r),window.removeEventListener("mouseup",n)};window.addEventListener("mousemove",r),window.addEventListener("mouseup",n)},className:"w-1 flex-shrink-0 bg-border hover:bg-blue-500/60 active:bg-blue-500/80 cursor-col-resize transition-colors"}),p.jsx(A,{initial:!1,children:"true"===y&&p.jsx(z.div,{ref:Q,initial:{width:0,opacity:0},animate:{width:Z,opacity:1},exit:{width:0,opacity:0},transition:{duration:.2,ease:"easeInOut"},className:"flex-shrink-0 overflow-hidden",children:p.jsx(hn,{projectId:s,onSend:V})})})]})]}):p.jsxs("div",{className:"min-h-screen flex flex-col items-center justify-center gap-4 bg-background",children:[p.jsx("p",{className:"text-muted-foreground",children:"Project not found."}),p.jsxs(W,{variant:"outline",onClick:()=>i("/"),children:[p.jsx(at,{className:"h-4 w-4 mr-2"}),"Back to Dashboard"]})]})}},Symbol.toStringTag,{value:"Module"}));export{Gw as P,Ts as Z,Is as a};