blockly 12.3.1 → 12.4.0

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 (1636) hide show
  1. package/.prettierignore +30 -0
  2. package/.prettierrc.js +15 -0
  3. package/api-extractor.json +390 -0
  4. package/appengine/.gcloudignore +20 -0
  5. package/appengine/README.txt +42 -0
  6. package/appengine/add_timestamps.py +69 -0
  7. package/appengine/app.yaml +106 -0
  8. package/appengine/apple-touch-icon.png +0 -0
  9. package/appengine/blockly_compressed.js +11 -0
  10. package/appengine/expiration.py +52 -0
  11. package/appengine/favicon.ico +0 -0
  12. package/appengine/index.yaml +11 -0
  13. package/appengine/main.py +39 -0
  14. package/appengine/redirect.html +107 -0
  15. package/appengine/requirements.txt +1 -0
  16. package/appengine/robots.txt +2 -0
  17. package/appengine/storage.js +190 -0
  18. package/appengine/storage.py +125 -0
  19. package/blocks/blocks.ts +44 -0
  20. package/blocks/lists.ts +1065 -0
  21. package/blocks/logic.ts +712 -0
  22. package/blocks/loops.ts +408 -0
  23. package/blocks/math.ts +591 -0
  24. package/blocks/procedures.ts +1366 -0
  25. package/blocks/text.ts +1001 -0
  26. package/blocks/variables.ts +181 -0
  27. package/blocks/variables_dynamic.ts +192 -0
  28. package/core/any_aliases.ts +8 -0
  29. package/core/block.ts +2511 -0
  30. package/core/block_animations.ts +233 -0
  31. package/core/block_flyout_inflater.ts +283 -0
  32. package/core/block_svg.ts +1873 -0
  33. package/core/blockly.ts +644 -0
  34. package/core/blockly_options.ts +71 -0
  35. package/core/blocks.ts +18 -0
  36. package/core/browser_events.ts +256 -0
  37. package/core/bubbles/bubble.ts +732 -0
  38. package/core/bubbles/mini_workspace_bubble.ts +292 -0
  39. package/core/bubbles/text_bubble.ts +112 -0
  40. package/core/bubbles/textinput_bubble.ts +296 -0
  41. package/core/bubbles.ts +12 -0
  42. package/core/bump_objects.ts +188 -0
  43. package/core/button_flyout_inflater.ts +76 -0
  44. package/core/clipboard/block_paster.ts +154 -0
  45. package/core/clipboard/registry.ts +31 -0
  46. package/core/clipboard/workspace_comment_paster.ts +95 -0
  47. package/core/clipboard.ts +197 -0
  48. package/core/comments/collapse_comment_bar_button.ts +102 -0
  49. package/core/comments/comment_bar_button.ts +105 -0
  50. package/core/comments/comment_editor.ts +220 -0
  51. package/core/comments/comment_view.ts +773 -0
  52. package/core/comments/delete_comment_bar_button.ts +106 -0
  53. package/core/comments/rendered_workspace_comment.ts +361 -0
  54. package/core/comments/workspace_comment.ts +247 -0
  55. package/core/comments.ts +13 -0
  56. package/core/common.ts +347 -0
  57. package/core/component_manager.ts +247 -0
  58. package/core/config.ts +65 -0
  59. package/core/connection.ts +807 -0
  60. package/core/connection_checker.ts +348 -0
  61. package/core/connection_db.ts +297 -0
  62. package/core/connection_type.ts +21 -0
  63. package/core/constants.ts +23 -0
  64. package/core/contextmenu.ts +295 -0
  65. package/core/contextmenu_items.ts +684 -0
  66. package/core/contextmenu_registry.ts +278 -0
  67. package/core/css.ts +518 -0
  68. package/core/delete_area.ts +77 -0
  69. package/core/dialog.ts +167 -0
  70. package/core/drag_target.ts +97 -0
  71. package/core/dragging/block_drag_strategy.ts +523 -0
  72. package/core/dragging/bubble_drag_strategy.ts +49 -0
  73. package/core/dragging/comment_drag_strategy.ts +92 -0
  74. package/core/dragging/dragger.ts +174 -0
  75. package/core/dragging.ts +12 -0
  76. package/core/dropdowndiv.ts +792 -0
  77. package/core/events/events.ts +109 -0
  78. package/core/events/events_abstract.ts +129 -0
  79. package/core/events/events_block_base.ts +87 -0
  80. package/core/events/events_block_change.ts +259 -0
  81. package/core/events/events_block_create.ts +185 -0
  82. package/core/events/events_block_delete.ts +182 -0
  83. package/core/events/events_block_drag.ts +116 -0
  84. package/core/events/events_block_field_intermediate_change.ts +166 -0
  85. package/core/events/events_block_move.ts +306 -0
  86. package/core/events/events_bubble_open.ts +121 -0
  87. package/core/events/events_click.ts +110 -0
  88. package/core/events/events_comment_base.ts +126 -0
  89. package/core/events/events_comment_change.ts +156 -0
  90. package/core/events/events_comment_collapse.ts +103 -0
  91. package/core/events/events_comment_create.ts +114 -0
  92. package/core/events/events_comment_delete.ts +113 -0
  93. package/core/events/events_comment_drag.ts +99 -0
  94. package/core/events/events_comment_move.ts +206 -0
  95. package/core/events/events_comment_resize.ts +169 -0
  96. package/core/events/events_selected.ts +97 -0
  97. package/core/events/events_theme_change.ts +84 -0
  98. package/core/events/events_toolbox_item_select.ts +96 -0
  99. package/core/events/events_trashcan_open.ts +87 -0
  100. package/core/events/events_ui_base.ts +47 -0
  101. package/core/events/events_var_base.ts +88 -0
  102. package/core/events/events_var_create.ts +131 -0
  103. package/core/events/events_var_delete.ts +124 -0
  104. package/core/events/events_var_rename.ts +133 -0
  105. package/core/events/events_var_type_change.ts +122 -0
  106. package/core/events/events_viewport.ts +149 -0
  107. package/core/events/predicates.ts +166 -0
  108. package/core/events/type.ts +87 -0
  109. package/core/events/utils.ts +455 -0
  110. package/core/events/workspace_events.ts +46 -0
  111. package/core/extensions.ts +497 -0
  112. package/core/field.ts +1445 -0
  113. package/core/field_checkbox.ts +266 -0
  114. package/core/field_dropdown.ts +907 -0
  115. package/core/field_image.ts +307 -0
  116. package/core/field_input.ts +826 -0
  117. package/core/field_label.ts +150 -0
  118. package/core/field_label_serializable.ts +73 -0
  119. package/core/field_number.ts +381 -0
  120. package/core/field_registry.ts +115 -0
  121. package/core/field_textinput.ts +125 -0
  122. package/core/field_variable.ts +654 -0
  123. package/core/flyout_base.ts +1013 -0
  124. package/core/flyout_button.ts +447 -0
  125. package/core/flyout_horizontal.ts +375 -0
  126. package/core/flyout_item.ts +33 -0
  127. package/core/flyout_metrics_manager.ts +90 -0
  128. package/core/flyout_navigator.ts +24 -0
  129. package/core/flyout_separator.ts +94 -0
  130. package/core/flyout_vertical.ts +354 -0
  131. package/core/focus_manager.ts +675 -0
  132. package/core/generator.ts +611 -0
  133. package/core/gesture.ts +1190 -0
  134. package/core/grid.ts +267 -0
  135. package/core/icons/comment_icon.ts +429 -0
  136. package/core/icons/exceptions.ts +23 -0
  137. package/core/icons/icon.ts +204 -0
  138. package/core/icons/icon_types.ts +32 -0
  139. package/core/icons/mutator_icon.ts +360 -0
  140. package/core/icons/registry.ts +33 -0
  141. package/core/icons/warning_icon.ts +226 -0
  142. package/core/icons.ts +24 -0
  143. package/core/inject.ts +332 -0
  144. package/core/inputs/align.ts +14 -0
  145. package/core/inputs/dummy_input.ts +26 -0
  146. package/core/inputs/end_row_input.ts +31 -0
  147. package/core/inputs/input.ts +317 -0
  148. package/core/inputs/input_types.ts +27 -0
  149. package/core/inputs/statement_input.ts +34 -0
  150. package/core/inputs/value_input.ts +30 -0
  151. package/core/inputs.ts +23 -0
  152. package/core/insertion_marker_previewer.ts +268 -0
  153. package/core/interfaces/i_autohideable.ts +27 -0
  154. package/core/interfaces/i_bounded_element.ts +31 -0
  155. package/core/interfaces/i_bubble.ts +64 -0
  156. package/core/interfaces/i_collapsible_toolbox_item.ts +33 -0
  157. package/core/interfaces/i_comment_icon.ts +47 -0
  158. package/core/interfaces/i_component.ts +19 -0
  159. package/core/interfaces/i_connection_checker.ts +101 -0
  160. package/core/interfaces/i_connection_previewer.ts +50 -0
  161. package/core/interfaces/i_contextmenu.ts +21 -0
  162. package/core/interfaces/i_copyable.ts +39 -0
  163. package/core/interfaces/i_deletable.ts +35 -0
  164. package/core/interfaces/i_delete_area.ts +28 -0
  165. package/core/interfaces/i_drag_target.ts +67 -0
  166. package/core/interfaces/i_draggable.ts +73 -0
  167. package/core/interfaces/i_dragger.ts +35 -0
  168. package/core/interfaces/i_flyout.ts +190 -0
  169. package/core/interfaces/i_flyout_inflater.ts +51 -0
  170. package/core/interfaces/i_focusable_node.ts +120 -0
  171. package/core/interfaces/i_focusable_tree.ts +144 -0
  172. package/core/interfaces/i_has_bubble.ts +37 -0
  173. package/core/interfaces/i_icon.ts +116 -0
  174. package/core/interfaces/i_keyboard_accessible.ts +22 -0
  175. package/core/interfaces/i_legacy_procedure_blocks.ts +51 -0
  176. package/core/interfaces/i_metrics_manager.ts +150 -0
  177. package/core/interfaces/i_movable.ts +19 -0
  178. package/core/interfaces/i_navigation_policy.ts +69 -0
  179. package/core/interfaces/i_observable.ts +28 -0
  180. package/core/interfaces/i_parameter_model.ts +51 -0
  181. package/core/interfaces/i_paster.ts +25 -0
  182. package/core/interfaces/i_positionable.ts +33 -0
  183. package/core/interfaces/i_procedure_block.ts +29 -0
  184. package/core/interfaces/i_procedure_map.ts +18 -0
  185. package/core/interfaces/i_procedure_model.ts +71 -0
  186. package/core/interfaces/i_registrable.ts +12 -0
  187. package/core/interfaces/i_rendered_element.ts +19 -0
  188. package/core/interfaces/i_selectable.ts +41 -0
  189. package/core/interfaces/i_selectable_toolbox_item.ts +63 -0
  190. package/core/interfaces/i_serializable.ts +32 -0
  191. package/core/interfaces/i_serializer.ts +51 -0
  192. package/core/interfaces/i_styleable.ts +26 -0
  193. package/core/interfaces/i_toolbox.ts +121 -0
  194. package/core/interfaces/i_toolbox_item.ts +83 -0
  195. package/core/interfaces/i_variable_backed_parameter_model.ts +23 -0
  196. package/core/interfaces/i_variable_map.ts +65 -0
  197. package/core/interfaces/i_variable_model.ts +57 -0
  198. package/core/internal_constants.ts +47 -0
  199. package/core/keyboard_nav/block_comment_navigation_policy.ts +76 -0
  200. package/core/keyboard_nav/block_navigation_policy.ts +213 -0
  201. package/core/keyboard_nav/comment_bar_button_navigation_policy.ts +88 -0
  202. package/core/keyboard_nav/comment_editor_navigation_policy.ts +54 -0
  203. package/core/keyboard_nav/connection_navigation_policy.ts +155 -0
  204. package/core/keyboard_nav/field_navigation_policy.ts +85 -0
  205. package/core/keyboard_nav/flyout_button_navigation_policy.ts +76 -0
  206. package/core/keyboard_nav/flyout_navigation_policy.ts +111 -0
  207. package/core/keyboard_nav/flyout_separator_navigation_policy.ts +53 -0
  208. package/core/keyboard_nav/icon_navigation_policy.ts +93 -0
  209. package/core/keyboard_nav/line_cursor.ts +414 -0
  210. package/core/keyboard_nav/marker.ts +86 -0
  211. package/core/keyboard_nav/workspace_comment_navigation_policy.ts +77 -0
  212. package/core/keyboard_nav/workspace_navigation_policy.ts +77 -0
  213. package/core/keyboard_navigation_controller.ts +63 -0
  214. package/core/label_flyout_inflater.ts +75 -0
  215. package/core/layer_manager.ts +229 -0
  216. package/core/layers.ts +17 -0
  217. package/core/main.ts +31 -0
  218. package/core/marker_manager.ts +116 -0
  219. package/core/menu.ts +486 -0
  220. package/core/menu_separator.ts +38 -0
  221. package/core/menuitem.ts +289 -0
  222. package/core/metrics_manager.ts +486 -0
  223. package/core/msg.ts +27 -0
  224. package/core/names.ts +275 -0
  225. package/core/navigator.ts +123 -0
  226. package/core/observable_procedure_map.ts +66 -0
  227. package/core/options.ts +377 -0
  228. package/core/positionable_helpers.ts +186 -0
  229. package/core/procedures.ts +622 -0
  230. package/core/registry.ts +400 -0
  231. package/core/render_management.ts +193 -0
  232. package/core/rendered_connection.ts +690 -0
  233. package/core/renderers/common/block_rendering.ts +122 -0
  234. package/core/renderers/common/constants.ts +1226 -0
  235. package/core/renderers/common/drawer.ts +511 -0
  236. package/core/renderers/common/i_path_object.ts +109 -0
  237. package/core/renderers/common/info.ts +768 -0
  238. package/core/renderers/common/path_object.ts +260 -0
  239. package/core/renderers/common/renderer.ts +236 -0
  240. package/core/renderers/geras/constants.ts +42 -0
  241. package/core/renderers/geras/drawer.ts +166 -0
  242. package/core/renderers/geras/geras.ts +31 -0
  243. package/core/renderers/geras/highlight_constants.ts +342 -0
  244. package/core/renderers/geras/highlighter.ts +312 -0
  245. package/core/renderers/geras/info.ts +476 -0
  246. package/core/renderers/geras/measurables/inline_input.ts +36 -0
  247. package/core/renderers/geras/measurables/statement_input.ts +35 -0
  248. package/core/renderers/geras/path_object.ts +121 -0
  249. package/core/renderers/geras/renderer.ts +127 -0
  250. package/core/renderers/measurables/base.ts +40 -0
  251. package/core/renderers/measurables/bottom_row.ts +103 -0
  252. package/core/renderers/measurables/connection.ts +41 -0
  253. package/core/renderers/measurables/external_value_input.ts +51 -0
  254. package/core/renderers/measurables/field.ts +48 -0
  255. package/core/renderers/measurables/hat.ts +32 -0
  256. package/core/renderers/measurables/icon.ts +40 -0
  257. package/core/renderers/measurables/in_row_spacer.ts +36 -0
  258. package/core/renderers/measurables/inline_input.ts +61 -0
  259. package/core/renderers/measurables/input_connection.ts +56 -0
  260. package/core/renderers/measurables/input_row.ts +62 -0
  261. package/core/renderers/measurables/jagged_edge.ts +35 -0
  262. package/core/renderers/measurables/next_connection.ts +41 -0
  263. package/core/renderers/measurables/output_connection.ts +42 -0
  264. package/core/renderers/measurables/previous_connection.ts +41 -0
  265. package/core/renderers/measurables/round_corner.ts +41 -0
  266. package/core/renderers/measurables/row.ts +190 -0
  267. package/core/renderers/measurables/spacer_row.ts +43 -0
  268. package/core/renderers/measurables/square_corner.ts +39 -0
  269. package/core/renderers/measurables/statement_input.ts +47 -0
  270. package/core/renderers/measurables/top_row.ts +108 -0
  271. package/core/renderers/measurables/types.ts +362 -0
  272. package/core/renderers/thrasos/info.ts +327 -0
  273. package/core/renderers/thrasos/renderer.ts +39 -0
  274. package/core/renderers/thrasos/thrasos.ts +14 -0
  275. package/core/renderers/zelos/constants.ts +913 -0
  276. package/core/renderers/zelos/drawer.ts +272 -0
  277. package/core/renderers/zelos/info.ts +651 -0
  278. package/core/renderers/zelos/measurables/bottom_row.ts +44 -0
  279. package/core/renderers/zelos/measurables/inputs.ts +40 -0
  280. package/core/renderers/zelos/measurables/row_elements.ts +29 -0
  281. package/core/renderers/zelos/measurables/top_row.ts +50 -0
  282. package/core/renderers/zelos/path_object.ts +209 -0
  283. package/core/renderers/zelos/renderer.ts +91 -0
  284. package/core/renderers/zelos/zelos.ts +31 -0
  285. package/core/scrollbar.ts +898 -0
  286. package/core/scrollbar_pair.ts +349 -0
  287. package/core/separator_flyout_inflater.ts +83 -0
  288. package/core/serialization/blocks.ts +834 -0
  289. package/core/serialization/exceptions.ts +112 -0
  290. package/core/serialization/priorities.ts +25 -0
  291. package/core/serialization/procedures.ts +158 -0
  292. package/core/serialization/registry.ts +30 -0
  293. package/core/serialization/variables.ts +69 -0
  294. package/core/serialization/workspace_comments.ts +143 -0
  295. package/core/serialization/workspaces.ts +94 -0
  296. package/core/serialization.ts +32 -0
  297. package/core/shortcut_items.ts +405 -0
  298. package/core/shortcut_registry.ts +451 -0
  299. package/core/sprites.ts +15 -0
  300. package/core/theme/classic.ts +40 -0
  301. package/core/theme/themes.ts +12 -0
  302. package/core/theme/zelos.ts +80 -0
  303. package/core/theme.ts +232 -0
  304. package/core/theme_manager.ts +192 -0
  305. package/core/toast.ts +219 -0
  306. package/core/toolbox/category.ts +746 -0
  307. package/core/toolbox/collapsible_category.ts +287 -0
  308. package/core/toolbox/separator.ts +108 -0
  309. package/core/toolbox/toolbox.ts +1210 -0
  310. package/core/toolbox/toolbox_item.ts +181 -0
  311. package/core/tooltip.ts +466 -0
  312. package/core/touch.ts +155 -0
  313. package/core/trashcan.ts +730 -0
  314. package/core/utils/aria.ts +158 -0
  315. package/core/utils/array.ts +24 -0
  316. package/core/utils/colour.ts +265 -0
  317. package/core/utils/coordinate.ts +129 -0
  318. package/core/utils/deprecation.ts +47 -0
  319. package/core/utils/dom.ts +356 -0
  320. package/core/utils/drag.ts +74 -0
  321. package/core/utils/focusable_tree_traverser.ts +126 -0
  322. package/core/utils/idgenerator.ts +70 -0
  323. package/core/utils/keycodes.ts +154 -0
  324. package/core/utils/math.ts +50 -0
  325. package/core/utils/metrics.ts +86 -0
  326. package/core/utils/object.ts +33 -0
  327. package/core/utils/parsing.ts +286 -0
  328. package/core/utils/rect.ts +142 -0
  329. package/core/utils/size.ts +62 -0
  330. package/core/utils/string.ts +289 -0
  331. package/core/utils/style.ts +219 -0
  332. package/core/utils/svg.ts +84 -0
  333. package/core/utils/svg_math.ts +207 -0
  334. package/core/utils/svg_paths.ts +133 -0
  335. package/core/utils/toolbox.ts +417 -0
  336. package/core/utils/useragent.ts +86 -0
  337. package/core/utils/xml.ts +165 -0
  338. package/core/utils.ts +59 -0
  339. package/core/variable_map.ts +476 -0
  340. package/core/variable_model.ts +150 -0
  341. package/core/variables.ts +931 -0
  342. package/core/variables_dynamic.ts +230 -0
  343. package/core/widgetdiv.ts +349 -0
  344. package/core/workspace.ts +994 -0
  345. package/core/workspace_audio.ts +137 -0
  346. package/core/workspace_dragger.ts +81 -0
  347. package/core/workspace_svg.ts +2954 -0
  348. package/core/xml.ts +1126 -0
  349. package/core/zoom_controls.ts +495 -0
  350. package/demos/blockfactory/analytics.js +195 -0
  351. package/demos/blockfactory/app_controller.js +726 -0
  352. package/demos/blockfactory/block_definition_extractor.js +742 -0
  353. package/demos/blockfactory/block_exporter_controller.js +311 -0
  354. package/demos/blockfactory/block_exporter_tools.js +212 -0
  355. package/demos/blockfactory/block_exporter_view.js +101 -0
  356. package/demos/blockfactory/block_library_controller.js +325 -0
  357. package/demos/blockfactory/block_library_storage.js +149 -0
  358. package/demos/blockfactory/block_library_view.js +178 -0
  359. package/demos/blockfactory/block_option.js +151 -0
  360. package/demos/blockfactory/blocks.js +920 -0
  361. package/demos/blockfactory/cp.css +46 -0
  362. package/demos/blockfactory/cp.js +179 -0
  363. package/demos/blockfactory/factory.css +586 -0
  364. package/demos/blockfactory/factory.js +338 -0
  365. package/demos/blockfactory/factory_utils.js +1036 -0
  366. package/demos/blockfactory/icon.png +0 -0
  367. package/demos/blockfactory/index.html +767 -0
  368. package/demos/blockfactory/link.png +0 -0
  369. package/demos/blockfactory/standard_categories.js +384 -0
  370. package/demos/blockfactory/workspacefactory/wfactory_controller.js +1332 -0
  371. package/demos/blockfactory/workspacefactory/wfactory_generator.js +224 -0
  372. package/demos/blockfactory/workspacefactory/wfactory_init.js +541 -0
  373. package/demos/blockfactory/workspacefactory/wfactory_model.js +548 -0
  374. package/demos/blockfactory/workspacefactory/wfactory_view.js +424 -0
  375. package/demos/code/code.js +626 -0
  376. package/demos/code/icon.png +0 -0
  377. package/demos/code/icons.png +0 -0
  378. package/demos/code/index.html +359 -0
  379. package/demos/code/msg/ar.js +24 -0
  380. package/demos/code/msg/be-tarask.js +24 -0
  381. package/demos/code/msg/br.js +24 -0
  382. package/demos/code/msg/ca.js +24 -0
  383. package/demos/code/msg/cs.js +24 -0
  384. package/demos/code/msg/da.js +24 -0
  385. package/demos/code/msg/de.js +24 -0
  386. package/demos/code/msg/el.js +24 -0
  387. package/demos/code/msg/en.js +24 -0
  388. package/demos/code/msg/es.js +24 -0
  389. package/demos/code/msg/et.js +24 -0
  390. package/demos/code/msg/fa.js +24 -0
  391. package/demos/code/msg/fr.js +24 -0
  392. package/demos/code/msg/he.js +24 -0
  393. package/demos/code/msg/hr.js +24 -0
  394. package/demos/code/msg/hrx.js +24 -0
  395. package/demos/code/msg/hu.js +24 -0
  396. package/demos/code/msg/ia.js +24 -0
  397. package/demos/code/msg/is.js +24 -0
  398. package/demos/code/msg/it.js +24 -0
  399. package/demos/code/msg/ja.js +24 -0
  400. package/demos/code/msg/kab.js +24 -0
  401. package/demos/code/msg/ko.js +24 -0
  402. package/demos/code/msg/mk.js +24 -0
  403. package/demos/code/msg/ms.js +24 -0
  404. package/demos/code/msg/nb.js +24 -0
  405. package/demos/code/msg/nl.js +24 -0
  406. package/demos/code/msg/oc.js +24 -0
  407. package/demos/code/msg/pl.js +24 -0
  408. package/demos/code/msg/pms.js +24 -0
  409. package/demos/code/msg/pt-br.js +24 -0
  410. package/demos/code/msg/ro.js +24 -0
  411. package/demos/code/msg/ru.js +24 -0
  412. package/demos/code/msg/sc.js +24 -0
  413. package/demos/code/msg/sk.js +24 -0
  414. package/demos/code/msg/sr.js +24 -0
  415. package/demos/code/msg/sv.js +24 -0
  416. package/demos/code/msg/ta.js +24 -0
  417. package/demos/code/msg/th.js +24 -0
  418. package/demos/code/msg/tlh.js +24 -0
  419. package/demos/code/msg/tr.js +24 -0
  420. package/demos/code/msg/uk.js +24 -0
  421. package/demos/code/msg/vi.js +24 -0
  422. package/demos/code/msg/zh-hans.js +24 -0
  423. package/demos/code/msg/zh-hant.js +24 -0
  424. package/demos/code/style.css +184 -0
  425. package/demos/index.html +68 -0
  426. package/demos/storage/icon.png +0 -0
  427. package/demos/storage/index.html +104 -0
  428. package/eslint.config.mjs +314 -0
  429. package/generators/dart/dart_generator.ts +321 -0
  430. package/generators/dart/lists.ts +525 -0
  431. package/generators/dart/logic.ts +157 -0
  432. package/generators/dart/loops.ts +217 -0
  433. package/generators/dart/math.ts +559 -0
  434. package/generators/dart/procedures.ts +138 -0
  435. package/generators/dart/text.ts +405 -0
  436. package/generators/dart/variables.ts +32 -0
  437. package/generators/dart/variables_dynamic.ts +17 -0
  438. package/generators/dart.ts +50 -0
  439. package/generators/javascript/javascript_generator.ts +346 -0
  440. package/generators/javascript/lists.ts +465 -0
  441. package/generators/javascript/logic.ts +155 -0
  442. package/generators/javascript/loops.ts +245 -0
  443. package/generators/javascript/math.ts +450 -0
  444. package/generators/javascript/procedures.ts +142 -0
  445. package/generators/javascript/text.ts +418 -0
  446. package/generators/javascript/variables.ts +32 -0
  447. package/generators/javascript/variables_dynamic.ts +17 -0
  448. package/generators/javascript.ts +46 -0
  449. package/generators/lua/lists.ts +445 -0
  450. package/generators/lua/logic.ts +144 -0
  451. package/generators/lua/loops.ts +192 -0
  452. package/generators/lua/lua_generator.ts +225 -0
  453. package/generators/lua/math.ts +473 -0
  454. package/generators/lua/procedures.ts +144 -0
  455. package/generators/lua/text.ts +380 -0
  456. package/generators/lua/variables.ts +31 -0
  457. package/generators/lua/variables_dynamic.ts +17 -0
  458. package/generators/lua.ts +44 -0
  459. package/generators/php/lists.ts +585 -0
  460. package/generators/php/logic.ts +157 -0
  461. package/generators/php/loops.ts +218 -0
  462. package/generators/php/math.ts +408 -0
  463. package/generators/php/php_generator.ts +320 -0
  464. package/generators/php/procedures.ts +159 -0
  465. package/generators/php/text.ts +315 -0
  466. package/generators/php/variables.ts +32 -0
  467. package/generators/php/variables_dynamic.ts +17 -0
  468. package/generators/php.ts +46 -0
  469. package/generators/python/lists.ts +398 -0
  470. package/generators/python/logic.ts +152 -0
  471. package/generators/python/loops.ts +251 -0
  472. package/generators/python/math.ts +434 -0
  473. package/generators/python/procedures.ts +159 -0
  474. package/generators/python/python_generator.ts +355 -0
  475. package/generators/python/text.ts +338 -0
  476. package/generators/python/variables.ts +31 -0
  477. package/generators/python/variables_dynamic.ts +17 -0
  478. package/generators/python.ts +51 -0
  479. package/gulpfile.mjs +100 -0
  480. package/jsconfig.json +7 -0
  481. package/msg/json/README.md +33 -0
  482. package/msg/json/ab.json +222 -0
  483. package/msg/json/ace.json +7 -0
  484. package/msg/json/af.json +34 -0
  485. package/msg/json/am.json +30 -0
  486. package/msg/json/ar.json +355 -0
  487. package/msg/json/ast.json +10 -0
  488. package/msg/json/az.json +334 -0
  489. package/msg/json/ba.json +211 -0
  490. package/msg/json/bcc.json +290 -0
  491. package/msg/json/be-tarask.json +335 -0
  492. package/msg/json/be.json +326 -0
  493. package/msg/json/bg.json +347 -0
  494. package/msg/json/bn.json +189 -0
  495. package/msg/json/br.json +334 -0
  496. package/msg/json/bs.json +166 -0
  497. package/msg/json/ca.json +341 -0
  498. package/msg/json/cdo.json +6 -0
  499. package/msg/json/ce.json +328 -0
  500. package/msg/json/constants.json +12 -0
  501. package/msg/json/cs.json +344 -0
  502. package/msg/json/da.json +346 -0
  503. package/msg/json/de.json +369 -0
  504. package/msg/json/diq.json +264 -0
  505. package/msg/json/dtp.json +198 -0
  506. package/msg/json/dty.json +97 -0
  507. package/msg/json/ee.json +160 -0
  508. package/msg/json/el.json +356 -0
  509. package/msg/json/en-gb.json +199 -0
  510. package/msg/json/en.json +423 -0
  511. package/msg/json/eo.json +337 -0
  512. package/msg/json/es.json +361 -0
  513. package/msg/json/et.json +335 -0
  514. package/msg/json/eu.json +219 -0
  515. package/msg/json/fa.json +342 -0
  516. package/msg/json/fi.json +350 -0
  517. package/msg/json/fo.json +46 -0
  518. package/msg/json/fr.json +374 -0
  519. package/msg/json/frr.json +6 -0
  520. package/msg/json/gl.json +338 -0
  521. package/msg/json/gn.json +54 -0
  522. package/msg/json/gor.json +87 -0
  523. package/msg/json/ha.json +313 -0
  524. package/msg/json/hak.json +17 -0
  525. package/msg/json/he.json +355 -0
  526. package/msg/json/hi.json +318 -0
  527. package/msg/json/hr.json +337 -0
  528. package/msg/json/hrx.json +287 -0
  529. package/msg/json/hsb.json +128 -0
  530. package/msg/json/hu.json +349 -0
  531. package/msg/json/hy.json +337 -0
  532. package/msg/json/ia.json +337 -0
  533. package/msg/json/id.json +338 -0
  534. package/msg/json/ig.json +323 -0
  535. package/msg/json/inh.json +80 -0
  536. package/msg/json/is.json +331 -0
  537. package/msg/json/it.json +346 -0
  538. package/msg/json/ja.json +362 -0
  539. package/msg/json/ka.json +14 -0
  540. package/msg/json/kab.json +323 -0
  541. package/msg/json/kbd-cyrl.json +84 -0
  542. package/msg/json/km.json +29 -0
  543. package/msg/json/kn.json +333 -0
  544. package/msg/json/ko.json +377 -0
  545. package/msg/json/ksh.json +43 -0
  546. package/msg/json/ku-latn.json +41 -0
  547. package/msg/json/ky.json +71 -0
  548. package/msg/json/la.json +6 -0
  549. package/msg/json/lb.json +156 -0
  550. package/msg/json/lki.json +282 -0
  551. package/msg/json/lo.json +92 -0
  552. package/msg/json/lrc.json +123 -0
  553. package/msg/json/lt.json +321 -0
  554. package/msg/json/lv.json +324 -0
  555. package/msg/json/mg.json +58 -0
  556. package/msg/json/mk.json +178 -0
  557. package/msg/json/ml.json +35 -0
  558. package/msg/json/mnw.json +90 -0
  559. package/msg/json/ms.json +300 -0
  560. package/msg/json/my.json +57 -0
  561. package/msg/json/mzn.json +6 -0
  562. package/msg/json/nb.json +331 -0
  563. package/msg/json/ne.json +247 -0
  564. package/msg/json/nl.json +358 -0
  565. package/msg/json/oc.json +194 -0
  566. package/msg/json/olo.json +37 -0
  567. package/msg/json/pa.json +75 -0
  568. package/msg/json/pl.json +358 -0
  569. package/msg/json/pms.json +325 -0
  570. package/msg/json/ps.json +50 -0
  571. package/msg/json/pt-br.json +371 -0
  572. package/msg/json/pt.json +360 -0
  573. package/msg/json/qqq.json +430 -0
  574. package/msg/json/ro.json +333 -0
  575. package/msg/json/ru.json +363 -0
  576. package/msg/json/sc.json +283 -0
  577. package/msg/json/sco.json +11 -0
  578. package/msg/json/sd.json +158 -0
  579. package/msg/json/shn.json +109 -0
  580. package/msg/json/si.json +16 -0
  581. package/msg/json/sk.json +339 -0
  582. package/msg/json/skr-arab.json +117 -0
  583. package/msg/json/sl.json +355 -0
  584. package/msg/json/smn.json +133 -0
  585. package/msg/json/sq.json +343 -0
  586. package/msg/json/sr-latn.json +324 -0
  587. package/msg/json/sr.json +349 -0
  588. package/msg/json/sv.json +350 -0
  589. package/msg/json/sw.json +12 -0
  590. package/msg/json/synonyms.json +22 -0
  591. package/msg/json/ta.json +306 -0
  592. package/msg/json/tcy.json +316 -0
  593. package/msg/json/tdd.json +110 -0
  594. package/msg/json/te.json +101 -0
  595. package/msg/json/th.json +333 -0
  596. package/msg/json/ti.json +50 -0
  597. package/msg/json/tl.json +149 -0
  598. package/msg/json/tlh.json +179 -0
  599. package/msg/json/tr.json +370 -0
  600. package/msg/json/ug-arab.json +180 -0
  601. package/msg/json/uk.json +346 -0
  602. package/msg/json/ur.json +118 -0
  603. package/msg/json/uz.json +36 -0
  604. package/msg/json/vi.json +345 -0
  605. package/msg/json/xmf.json +99 -0
  606. package/msg/json/yo.json +316 -0
  607. package/msg/json/zgh.json +83 -0
  608. package/msg/json/zh-hans.json +374 -0
  609. package/msg/json/zh-hant.json +362 -0
  610. package/msg/messages.js +1695 -0
  611. package/package.json +36 -5
  612. package/scripts/gulpfiles/appengine_tasks.mjs +189 -0
  613. package/scripts/gulpfiles/build_tasks.mjs +753 -0
  614. package/scripts/gulpfiles/config.mjs +40 -0
  615. package/scripts/gulpfiles/docs_tasks.mjs +146 -0
  616. package/scripts/gulpfiles/git_tasks.mjs +167 -0
  617. package/scripts/gulpfiles/helper_tasks.mjs +25 -0
  618. package/scripts/gulpfiles/package_tasks.mjs +257 -0
  619. package/scripts/gulpfiles/release_tasks.mjs +174 -0
  620. package/scripts/gulpfiles/test_tasks.mjs +409 -0
  621. package/scripts/helpers.js +74 -0
  622. package/scripts/i18n/common.py +233 -0
  623. package/scripts/i18n/create_messages.py +167 -0
  624. package/scripts/i18n/dedup_json.py +72 -0
  625. package/scripts/i18n/js_to_json.py +135 -0
  626. package/scripts/i18n/tests.py +46 -0
  627. package/scripts/migration/renamings.json5 +1599 -0
  628. package/scripts/package/index.js +23 -0
  629. package/scripts/package/templates/umd-msg.template +16 -0
  630. package/scripts/package/templates/umd.template +13 -0
  631. package/scripts/themes/blockStyles_example.json +11 -0
  632. package/scripts/themes/create_blockStyles.py +184 -0
  633. package/scripts/tsick.js +86 -0
  634. package/tests/browser/.mocharc.js +7 -0
  635. package/tests/browser/test/basic_block_factory_test.mjs +44 -0
  636. package/tests/browser/test/basic_block_test.mjs +38 -0
  637. package/tests/browser/test/basic_playground_test.mjs +461 -0
  638. package/tests/browser/test/block_undo_test.mjs +50 -0
  639. package/tests/browser/test/clipboard_test.mjs +611 -0
  640. package/tests/browser/test/delete_blocks_test.mjs +217 -0
  641. package/tests/browser/test/extensive_test.mjs +191 -0
  642. package/tests/browser/test/field_edits_test.mjs +61 -0
  643. package/tests/browser/test/hooks.mjs +23 -0
  644. package/tests/browser/test/mutator_test.mjs +87 -0
  645. package/tests/browser/test/procedure_test.mjs +109 -0
  646. package/tests/browser/test/test_setup.mjs +623 -0
  647. package/tests/browser/test/toolbox_drag_test.mjs +219 -0
  648. package/tests/browser/test/workspace_comment_test.mjs +220 -0
  649. package/tests/compile/index.html +43 -0
  650. package/tests/compile/main.js +53 -0
  651. package/tests/compile/test_blocks.js +47 -0
  652. package/tests/compile/webdriver.js +81 -0
  653. package/tests/generators/functions.xml +561 -0
  654. package/tests/generators/golden/generated.dart +1604 -0
  655. package/tests/generators/golden/generated.js +1552 -0
  656. package/tests/generators/golden/generated.lua +1828 -0
  657. package/tests/generators/golden/generated.php +1611 -0
  658. package/tests/generators/golden/generated.py +1407 -0
  659. package/tests/generators/index.html +408 -0
  660. package/tests/generators/lists.xml +8675 -0
  661. package/tests/generators/logic.xml +1019 -0
  662. package/tests/generators/loops1.xml +345 -0
  663. package/tests/generators/loops2.xml +891 -0
  664. package/tests/generators/loops3.xml +735 -0
  665. package/tests/generators/math.xml +2077 -0
  666. package/tests/generators/text.xml +4651 -0
  667. package/tests/generators/unittest.js +103 -0
  668. package/tests/generators/unittest_dart.js +163 -0
  669. package/tests/generators/unittest_javascript.js +167 -0
  670. package/tests/generators/unittest_lua.js +165 -0
  671. package/tests/generators/unittest_php.js +154 -0
  672. package/tests/generators/unittest_python.js +138 -0
  673. package/tests/generators/variables.xml +68 -0
  674. package/tests/generators/webdriver.js +123 -0
  675. package/tests/media/200px.png +0 -0
  676. package/tests/media/30px.png +0 -0
  677. package/tests/media/50px.png +0 -0
  678. package/tests/media/a.png +0 -0
  679. package/tests/media/arrow.png +0 -0
  680. package/tests/media/b.png +0 -0
  681. package/tests/media/c.png +0 -0
  682. package/tests/media/d.png +0 -0
  683. package/tests/media/e.png +0 -0
  684. package/tests/media/f.png +0 -0
  685. package/tests/media/g.png +0 -0
  686. package/tests/media/h.png +0 -0
  687. package/tests/media/i.png +0 -0
  688. package/tests/media/j.png +0 -0
  689. package/tests/media/k.png +0 -0
  690. package/tests/media/l.png +0 -0
  691. package/tests/media/m.png +0 -0
  692. package/tests/migration/renamings.schema.json +59 -0
  693. package/tests/migration/validate-renamings.mjs +63 -0
  694. package/tests/mocha/.mocharc.js +6 -0
  695. package/tests/mocha/block_json_test.js +777 -0
  696. package/tests/mocha/block_test.js +2949 -0
  697. package/tests/mocha/blocks/lists_test.js +238 -0
  698. package/tests/mocha/blocks/logic_ternary_test.js +320 -0
  699. package/tests/mocha/blocks/loops_test.js +56 -0
  700. package/tests/mocha/blocks/procedures_test.js +2509 -0
  701. package/tests/mocha/blocks/variables_test.js +345 -0
  702. package/tests/mocha/clipboard_test.js +263 -0
  703. package/tests/mocha/comment_deserialization_test.js +122 -0
  704. package/tests/mocha/comment_test.js +215 -0
  705. package/tests/mocha/comment_view_test.js +188 -0
  706. package/tests/mocha/connection_checker_test.js +694 -0
  707. package/tests/mocha/connection_db_test.js +363 -0
  708. package/tests/mocha/connection_test.js +3738 -0
  709. package/tests/mocha/contextmenu_items_test.js +653 -0
  710. package/tests/mocha/contextmenu_test.js +73 -0
  711. package/tests/mocha/cursor_test.js +922 -0
  712. package/tests/mocha/dialog_test.js +168 -0
  713. package/tests/mocha/dropdowndiv_test.js +458 -0
  714. package/tests/mocha/event_block_change_test.js +126 -0
  715. package/tests/mocha/event_block_create_test.js +109 -0
  716. package/tests/mocha/event_block_delete_test.js +55 -0
  717. package/tests/mocha/event_block_drag_test.js +36 -0
  718. package/tests/mocha/event_block_field_intermediate_change_test.js +67 -0
  719. package/tests/mocha/event_block_move_test.js +39 -0
  720. package/tests/mocha/event_bubble_open_test.js +42 -0
  721. package/tests/mocha/event_click_test.js +40 -0
  722. package/tests/mocha/event_comment_change_test.js +39 -0
  723. package/tests/mocha/event_comment_collapse_test.js +34 -0
  724. package/tests/mocha/event_comment_create_test.js +38 -0
  725. package/tests/mocha/event_comment_delete_test.js +38 -0
  726. package/tests/mocha/event_comment_drag_test.js +35 -0
  727. package/tests/mocha/event_comment_move_test.js +40 -0
  728. package/tests/mocha/event_comment_resize_test.js +38 -0
  729. package/tests/mocha/event_selected_test.js +41 -0
  730. package/tests/mocha/event_test.js +1668 -0
  731. package/tests/mocha/event_theme_change_test.js +36 -0
  732. package/tests/mocha/event_toolbox_item_select_test.js +64 -0
  733. package/tests/mocha/event_trashcan_open_test.js +36 -0
  734. package/tests/mocha/event_var_create_test.js +54 -0
  735. package/tests/mocha/event_var_delete_test.js +54 -0
  736. package/tests/mocha/event_var_rename_test.js +39 -0
  737. package/tests/mocha/event_var_type_change_test.js +43 -0
  738. package/tests/mocha/event_viewport_test.js +39 -0
  739. package/tests/mocha/extensions_test.js +613 -0
  740. package/tests/mocha/field_checkbox_test.js +299 -0
  741. package/tests/mocha/field_colour_test.js +395 -0
  742. package/tests/mocha/field_dropdown_test.js +328 -0
  743. package/tests/mocha/field_image_test.js +351 -0
  744. package/tests/mocha/field_label_serializable_test.js +252 -0
  745. package/tests/mocha/field_label_test.js +226 -0
  746. package/tests/mocha/field_number_test.js +505 -0
  747. package/tests/mocha/field_registry_test.js +115 -0
  748. package/tests/mocha/field_test.js +821 -0
  749. package/tests/mocha/field_textinput_test.js +593 -0
  750. package/tests/mocha/field_variable_test.js +644 -0
  751. package/tests/mocha/flyout_test.js +650 -0
  752. package/tests/mocha/focus_manager_test.js +5979 -0
  753. package/tests/mocha/focusable_tree_traverser_test.js +602 -0
  754. package/tests/mocha/generator_test.js +233 -0
  755. package/tests/mocha/gesture_test.js +133 -0
  756. package/tests/mocha/icon_test.js +431 -0
  757. package/tests/mocha/index.html +354 -0
  758. package/tests/mocha/input_test.js +296 -0
  759. package/tests/mocha/insertion_marker_test.js +432 -0
  760. package/tests/mocha/jso_deserialization_test.js +848 -0
  761. package/tests/mocha/jso_serialization_test.js +1068 -0
  762. package/tests/mocha/json_test.js +303 -0
  763. package/tests/mocha/keyboard_navigation_controller_test.js +37 -0
  764. package/tests/mocha/layering_test.js +104 -0
  765. package/tests/mocha/menu_item_test.js +176 -0
  766. package/tests/mocha/metrics_test.js +671 -0
  767. package/tests/mocha/mutator_test.js +87 -0
  768. package/tests/mocha/names_test.js +97 -0
  769. package/tests/mocha/navigation_test.js +876 -0
  770. package/tests/mocha/old_workspace_comment_test.js +256 -0
  771. package/tests/mocha/procedure_map_test.js +52 -0
  772. package/tests/mocha/rect_test.js +1668 -0
  773. package/tests/mocha/registry_test.js +281 -0
  774. package/tests/mocha/render_management_test.js +127 -0
  775. package/tests/mocha/serializer_test.js +2100 -0
  776. package/tests/mocha/shortcut_items_test.js +563 -0
  777. package/tests/mocha/shortcut_registry_test.js +533 -0
  778. package/tests/mocha/test_helpers/block_definitions.js +204 -0
  779. package/tests/mocha/test_helpers/code_generation.js +114 -0
  780. package/tests/mocha/test_helpers/common.js +106 -0
  781. package/tests/mocha/test_helpers/events.js +290 -0
  782. package/tests/mocha/test_helpers/fields.js +310 -0
  783. package/tests/mocha/test_helpers/icon_mocks.js +130 -0
  784. package/tests/mocha/test_helpers/procedures.js +304 -0
  785. package/tests/mocha/test_helpers/serialization.js +124 -0
  786. package/tests/mocha/test_helpers/setup_teardown.js +232 -0
  787. package/tests/mocha/test_helpers/toolbox_definitions.js +269 -0
  788. package/tests/mocha/test_helpers/user_input.js +62 -0
  789. package/tests/mocha/test_helpers/variables.js +27 -0
  790. package/tests/mocha/test_helpers/warnings.js +83 -0
  791. package/tests/mocha/test_helpers/workspace.js +1659 -0
  792. package/tests/mocha/theme_test.js +307 -0
  793. package/tests/mocha/toast_test.js +129 -0
  794. package/tests/mocha/toolbox_test.js +821 -0
  795. package/tests/mocha/tooltip_test.js +276 -0
  796. package/tests/mocha/touch_test.js +109 -0
  797. package/tests/mocha/trashcan_test.js +376 -0
  798. package/tests/mocha/utils_test.js +557 -0
  799. package/tests/mocha/variable_map_test.js +470 -0
  800. package/tests/mocha/variable_model_test.js +85 -0
  801. package/tests/mocha/webdriver.js +110 -0
  802. package/tests/mocha/widget_div_test.js +427 -0
  803. package/tests/mocha/workspace_comment_test.js +197 -0
  804. package/tests/mocha/workspace_svg_test.js +922 -0
  805. package/tests/mocha/workspace_test.js +24 -0
  806. package/tests/mocha/xml_test.js +893 -0
  807. package/tests/mocha/zoom_controls_test.js +81 -0
  808. package/tests/multi_playground.html +482 -0
  809. package/tests/node/.mocharc.js +6 -0
  810. package/tests/node/run_node_test.mjs +191 -0
  811. package/tests/playground.html +1280 -0
  812. package/tests/playgrounds/advanced_playground.html +188 -0
  813. package/tests/playgrounds/iframe.html +40 -0
  814. package/tests/playgrounds/screenshot.js +123 -0
  815. package/tests/scripts/check_metadata.sh +170 -0
  816. package/tests/scripts/load.mjs +140 -0
  817. package/tests/scripts/setup_linux_env.sh +7 -0
  818. package/tests/scripts/update_metadata.sh +46 -0
  819. package/tests/themes/test_themes.js +62 -0
  820. package/tests/typescript/README.md +4 -0
  821. package/tests/typescript/src/field/different_user_input.ts +81 -0
  822. package/tests/typescript/src/generators/dart.ts +24 -0
  823. package/tests/typescript/src/generators/javascript.ts +28 -0
  824. package/tests/typescript/src/generators/lua.ts +24 -0
  825. package/tests/typescript/src/generators/php.ts +24 -0
  826. package/tests/typescript/src/generators/python.ts +24 -0
  827. package/tests/typescript/src/generators.ts +33 -0
  828. package/tests/typescript/src/msg.ts +20 -0
  829. package/tests/typescript/tsconfig.json +20 -0
  830. package/tests/xml/README.txt +11 -0
  831. package/tests/xml/blockly.xsd +178 -0
  832. package/tests/xml/invalid.xml +6 -0
  833. package/tests/xml/toolbox.xml +311 -0
  834. package/tests/xml/workspace.xml +114 -0
  835. package/tsconfig.json +37 -0
  836. package/tsdoc.json +25 -0
  837. package/typings/README.md +5 -0
  838. package/typings/templates/blockly-header.template +11 -0
  839. package/typings/templates/blockly-interfaces.template +83 -0
  840. package/typings/templates/msg.template +15 -0
  841. package/typings/tsconfig.json +23 -0
  842. package/blockly.min.js +0 -2740
  843. package/blockly.mjs +0 -163
  844. package/blockly_compressed.js +0 -1815
  845. package/blockly_compressed.js.map +0 -1
  846. package/blocks.js +0 -4
  847. package/blocks.mjs +0 -12
  848. package/blocks_compressed.js +0 -193
  849. package/blocks_compressed.js.map +0 -1
  850. package/core/any_aliases.d.ts +0 -7
  851. package/core/block.d.ts +0 -1006
  852. package/core/block_animations.d.ts +0 -34
  853. package/core/block_flyout_inflater.d.ts +0 -94
  854. package/core/block_svg.d.ts +0 -733
  855. package/core/blockly.d.ts +0 -286
  856. package/core/blockly_options.d.ts +0 -70
  857. package/core/blocks.d.ts +0 -17
  858. package/core/browser_events.d.ts +0 -82
  859. package/core/bubbles/bubble.d.ts +0 -228
  860. package/core/bubbles/mini_workspace_bubble.d.ts +0 -84
  861. package/core/bubbles/text_bubble.d.ts +0 -38
  862. package/core/bubbles/textinput_bubble.d.ts +0 -102
  863. package/core/bubbles.d.ts +0 -11
  864. package/core/bump_objects.d.ts +0 -37
  865. package/core/button_flyout_inflater.d.ts +0 -42
  866. package/core/clipboard/block_paster.d.ts +0 -34
  867. package/core/clipboard/registry.d.ts +0 -21
  868. package/core/clipboard/workspace_comment_paster.d.ts +0 -19
  869. package/core/clipboard.d.ts +0 -103
  870. package/core/comments/collapse_comment_bar_button.d.ts +0 -52
  871. package/core/comments/comment_bar_button.d.ts +0 -62
  872. package/core/comments/comment_editor.d.ts +0 -62
  873. package/core/comments/comment_view.d.ts +0 -213
  874. package/core/comments/delete_comment_bar_button.d.ts +0 -52
  875. package/core/comments/rendered_workspace_comment.d.ts +0 -121
  876. package/core/comments/workspace_comment.d.ts +0 -107
  877. package/core/comments.d.ts +0 -13
  878. package/core/common.d.ts +0 -163
  879. package/core/component_manager.d.ts +0 -112
  880. package/core/config.d.ts +0 -24
  881. package/core/connection.d.ts +0 -291
  882. package/core/connection_checker.d.ts +0 -85
  883. package/core/connection_db.d.ts +0 -100
  884. package/core/connection_type.d.ts +0 -15
  885. package/core/constants.d.ts +0 -19
  886. package/core/contextmenu.d.ts +0 -53
  887. package/core/contextmenu_items.d.ts +0 -73
  888. package/core/contextmenu_registry.d.ts +0 -173
  889. package/core/css.d.ts +0 -25
  890. package/core/delete_area.d.ts +0 -48
  891. package/core/dialog.d.ts +0 -82
  892. package/core/drag_target.d.ts +0 -75
  893. package/core/dragging/block_drag_strategy.d.ts +0 -121
  894. package/core/dragging/bubble_drag_strategy.d.ts +0 -20
  895. package/core/dragging/comment_drag_strategy.d.ts +0 -26
  896. package/core/dragging/dragger.d.ts +0 -49
  897. package/core/dragging.d.ts +0 -11
  898. package/core/dropdowndiv.d.ts +0 -208
  899. package/core/events/events.d.ts +0 -72
  900. package/core/events/events_abstract.d.ts +0 -72
  901. package/core/events/events_block_base.d.ts +0 -46
  902. package/core/events/events_block_change.d.ts +0 -100
  903. package/core/events/events_block_create.d.ts +0 -59
  904. package/core/events/events_block_delete.d.ts +0 -62
  905. package/core/events/events_block_drag.d.ts +0 -61
  906. package/core/events/events_block_field_intermediate_change.d.ts +0 -71
  907. package/core/events/events_block_move.d.ts +0 -115
  908. package/core/events/events_bubble_open.d.ts +0 -62
  909. package/core/events/events_click.d.ts +0 -64
  910. package/core/events/events_comment_base.d.ts +0 -55
  911. package/core/events/events_comment_change.d.ts +0 -64
  912. package/core/events/events_comment_collapse.d.ts +0 -40
  913. package/core/events/events_comment_create.d.ts +0 -57
  914. package/core/events/events_comment_delete.d.ts +0 -57
  915. package/core/events/events_comment_drag.d.ts +0 -51
  916. package/core/events/events_comment_move.d.ts +0 -93
  917. package/core/events/events_comment_resize.d.ts +0 -68
  918. package/core/events/events_selected.d.ts +0 -53
  919. package/core/events/events_theme_change.d.ts +0 -43
  920. package/core/events/events_toolbox_item_select.d.ts +0 -49
  921. package/core/events/events_trashcan_open.d.ts +0 -47
  922. package/core/events/events_ui_base.d.ts +0 -32
  923. package/core/events/events_var_base.d.ts +0 -46
  924. package/core/events/events_var_create.d.ts +0 -55
  925. package/core/events/events_var_delete.d.ts +0 -50
  926. package/core/events/events_var_rename.d.ts +0 -51
  927. package/core/events/events_var_type_change.d.ts +0 -55
  928. package/core/events/events_viewport.d.ts +0 -67
  929. package/core/events/predicates.d.ts +0 -87
  930. package/core/events/type.d.ts +0 -81
  931. package/core/events/utils.d.ts +0 -211
  932. package/core/events/workspace_events.d.ts +0 -23
  933. package/core/extensions.d.ts +0 -99
  934. package/core/field.d.ts +0 -724
  935. package/core/field_checkbox.d.ts +0 -156
  936. package/core/field_dropdown.d.ts +0 -295
  937. package/core/field_image.d.ts +0 -148
  938. package/core/field_input.d.ts +0 -293
  939. package/core/field_label.d.ts +0 -80
  940. package/core/field_label_serializable.d.ts +0 -50
  941. package/core/field_number.d.ts +0 -194
  942. package/core/field_registry.d.ts +0 -83
  943. package/core/field_textinput.d.ts +0 -78
  944. package/core/field_variable.d.ts +0 -261
  945. package/core/flyout_base.d.ts +0 -455
  946. package/core/flyout_button.d.ts +0 -139
  947. package/core/flyout_horizontal.d.ts +0 -87
  948. package/core/flyout_item.d.ts +0 -26
  949. package/core/flyout_metrics_manager.d.ts +0 -46
  950. package/core/flyout_navigator.d.ts +0 -11
  951. package/core/flyout_separator.d.ts +0 -64
  952. package/core/flyout_vertical.d.ts +0 -88
  953. package/core/focus_manager.d.ts +0 -266
  954. package/core/generator.d.ts +0 -279
  955. package/core/gesture.d.ts +0 -454
  956. package/core/grid.d.ts +0 -124
  957. package/core/icons/comment_icon.d.ts +0 -134
  958. package/core/icons/exceptions.d.ts +0 -17
  959. package/core/icons/icon.d.ts +0 -82
  960. package/core/icons/icon_types.d.ts +0 -25
  961. package/core/icons/mutator_icon.d.ts +0 -96
  962. package/core/icons/registry.d.ts +0 -23
  963. package/core/icons/warning_icon.d.ts +0 -77
  964. package/core/icons.d.ts +0 -14
  965. package/core/inject.d.ts +0 -16
  966. package/core/inputs/align.d.ts +0 -14
  967. package/core/inputs/dummy_input.d.ts +0 -20
  968. package/core/inputs/end_row_input.d.ts +0 -25
  969. package/core/inputs/input.d.ts +0 -147
  970. package/core/inputs/input_types.d.ts +0 -16
  971. package/core/inputs/statement_input.d.ts +0 -22
  972. package/core/inputs/value_input.d.ts +0 -20
  973. package/core/inputs.d.ts +0 -14
  974. package/core/insertion_marker_previewer.d.ts +0 -67
  975. package/core/interfaces/i_autohideable.d.ts +0 -21
  976. package/core/interfaces/i_bounded_element.d.ts +0 -27
  977. package/core/interfaces/i_bubble.d.ts +0 -55
  978. package/core/interfaces/i_collapsible_toolbox_item.d.ts +0 -28
  979. package/core/interfaces/i_comment_icon.d.ts +0 -24
  980. package/core/interfaces/i_component.d.ts +0 -17
  981. package/core/interfaces/i_connection_checker.d.ts +0 -75
  982. package/core/interfaces/i_connection_previewer.d.ts +0 -39
  983. package/core/interfaces/i_contextmenu.d.ts +0 -14
  984. package/core/interfaces/i_copyable.d.ts +0 -30
  985. package/core/interfaces/i_deletable.d.ts +0 -23
  986. package/core/interfaces/i_delete_area.d.ts +0 -25
  987. package/core/interfaces/i_drag_target.d.ts +0 -59
  988. package/core/interfaces/i_draggable.d.ts +0 -56
  989. package/core/interfaces/i_dragger.d.ts +0 -32
  990. package/core/interfaces/i_flyout.d.ts +0 -159
  991. package/core/interfaces/i_flyout_inflater.d.ts +0 -48
  992. package/core/interfaces/i_focusable_node.d.ts +0 -105
  993. package/core/interfaces/i_focusable_tree.d.ts +0 -125
  994. package/core/interfaces/i_has_bubble.d.ts +0 -27
  995. package/core/interfaces/i_icon.d.ts +0 -84
  996. package/core/interfaces/i_keyboard_accessible.d.ts +0 -19
  997. package/core/interfaces/i_legacy_procedure_blocks.d.ts +0 -34
  998. package/core/interfaces/i_metrics_manager.d.ts +0 -129
  999. package/core/interfaces/i_movable.d.ts +0 -17
  1000. package/core/interfaces/i_navigation_policy.d.ts +0 -63
  1001. package/core/interfaces/i_observable.d.ts +0 -21
  1002. package/core/interfaces/i_parameter_model.d.ts +0 -44
  1003. package/core/interfaces/i_paster.d.ts +0 -15
  1004. package/core/interfaces/i_positionable.d.ts +0 -29
  1005. package/core/interfaces/i_procedure_block.d.ts +0 -16
  1006. package/core/interfaces/i_procedure_map.d.ts +0 -16
  1007. package/core/interfaces/i_procedure_model.d.ts +0 -59
  1008. package/core/interfaces/i_registrable.d.ts +0 -11
  1009. package/core/interfaces/i_rendered_element.d.ts +0 -16
  1010. package/core/interfaces/i_selectable.d.ts +0 -26
  1011. package/core/interfaces/i_selectable_toolbox_item.d.ts +0 -51
  1012. package/core/interfaces/i_serializable.d.ts +0 -24
  1013. package/core/interfaces/i_serializer.d.ts +0 -45
  1014. package/core/interfaces/i_styleable.d.ts +0 -23
  1015. package/core/interfaces/i_toolbox.d.ts +0 -102
  1016. package/core/interfaces/i_toolbox_item.d.ts +0 -71
  1017. package/core/interfaces/i_variable_backed_parameter_model.d.ts +0 -17
  1018. package/core/interfaces/i_variable_map.d.ts +0 -48
  1019. package/core/interfaces/i_variable_model.d.ts +0 -36
  1020. package/core/internal_constants.d.ts +0 -34
  1021. package/core/keyboard_nav/block_comment_navigation_policy.d.ts +0 -56
  1022. package/core/keyboard_nav/block_navigation_policy.d.ts +0 -84
  1023. package/core/keyboard_nav/comment_bar_button_navigation_policy.d.ts +0 -56
  1024. package/core/keyboard_nav/comment_editor_navigation_policy.d.ts +0 -34
  1025. package/core/keyboard_nav/connection_navigation_policy.d.ts +0 -67
  1026. package/core/keyboard_nav/field_navigation_policy.d.ts +0 -56
  1027. package/core/keyboard_nav/flyout_button_navigation_policy.d.ts +0 -56
  1028. package/core/keyboard_nav/flyout_navigation_policy.d.ts +0 -65
  1029. package/core/keyboard_nav/flyout_separator_navigation_policy.d.ts +0 -33
  1030. package/core/keyboard_nav/icon_navigation_policy.d.ts +0 -56
  1031. package/core/keyboard_nav/line_cursor.d.ts +0 -187
  1032. package/core/keyboard_nav/marker.d.ts +0 -53
  1033. package/core/keyboard_nav/workspace_comment_navigation_policy.d.ts +0 -56
  1034. package/core/keyboard_nav/workspace_navigation_policy.d.ts +0 -56
  1035. package/core/keyboard_navigation_controller.d.ts +0 -48
  1036. package/core/label_flyout_inflater.d.ts +0 -42
  1037. package/core/layer_manager.d.ts +0 -86
  1038. package/core/layers.d.ts +0 -16
  1039. package/core/main.d.ts +0 -7
  1040. package/core/marker_manager.d.ts +0 -72
  1041. package/core/menu.d.ts +0 -170
  1042. package/core/menu_separator.d.ts +0 -25
  1043. package/core/menuitem.d.ts +0 -139
  1044. package/core/metrics_manager.d.ts +0 -221
  1045. package/core/msg.d.ts +0 -24
  1046. package/core/names.d.ts +0 -139
  1047. package/core/navigator.d.ts +0 -65
  1048. package/core/observable_procedure_map.d.ts +0 -34
  1049. package/core/options.d.ts +0 -148
  1050. package/core/positionable_helpers.d.ts +0 -89
  1051. package/core/procedures.d.ts +0 -108
  1052. package/core/registry.d.ts +0 -158
  1053. package/core/render_management.d.ts +0 -34
  1054. package/core/rendered_connection.d.ts +0 -263
  1055. package/core/renderers/common/block_rendering.d.ts +0 -63
  1056. package/core/renderers/common/constants.d.ts +0 -454
  1057. package/core/renderers/common/drawer.d.ts +0 -156
  1058. package/core/renderers/common/i_path_object.d.ts +0 -88
  1059. package/core/renderers/common/info.d.ts +0 -201
  1060. package/core/renderers/common/path_object.d.ts +0 -130
  1061. package/core/renderers/common/renderer.d.ts +0 -141
  1062. package/core/renderers/geras/constants.d.ts +0 -22
  1063. package/core/renderers/geras/drawer.d.ts +0 -44
  1064. package/core/renderers/geras/geras.d.ts +0 -17
  1065. package/core/renderers/geras/highlight_constants.d.ts +0 -100
  1066. package/core/renderers/geras/highlighter.d.ts +0 -96
  1067. package/core/renderers/geras/info.d.ts +0 -45
  1068. package/core/renderers/geras/measurables/inline_input.d.ts +0 -22
  1069. package/core/renderers/geras/measurables/statement_input.d.ts +0 -22
  1070. package/core/renderers/geras/path_object.d.ts +0 -42
  1071. package/core/renderers/geras/renderer.d.ts +0 -77
  1072. package/core/renderers/measurables/base.d.ts +0 -26
  1073. package/core/renderers/measurables/bottom_row.d.ts +0 -58
  1074. package/core/renderers/measurables/connection.d.ts +0 -25
  1075. package/core/renderers/measurables/external_value_input.d.ts +0 -25
  1076. package/core/renderers/measurables/field.d.ts +0 -28
  1077. package/core/renderers/measurables/hat.d.ts +0 -19
  1078. package/core/renderers/measurables/icon.d.ts +0 -25
  1079. package/core/renderers/measurables/in_row_spacer.d.ts +0 -20
  1080. package/core/renderers/measurables/inline_input.d.ts +0 -22
  1081. package/core/renderers/measurables/input_connection.d.ts +0 -28
  1082. package/core/renderers/measurables/input_row.d.ts +0 -26
  1083. package/core/renderers/measurables/jagged_edge.d.ts +0 -19
  1084. package/core/renderers/measurables/next_connection.d.ts +0 -22
  1085. package/core/renderers/measurables/output_connection.d.ts +0 -24
  1086. package/core/renderers/measurables/previous_connection.d.ts +0 -22
  1087. package/core/renderers/measurables/round_corner.d.ts +0 -20
  1088. package/core/renderers/measurables/row.d.ts +0 -124
  1089. package/core/renderers/measurables/spacer_row.d.ts +0 -27
  1090. package/core/renderers/measurables/square_corner.d.ts +0 -20
  1091. package/core/renderers/measurables/statement_input.d.ts +0 -21
  1092. package/core/renderers/measurables/top_row.d.ts +0 -53
  1093. package/core/renderers/measurables/types.d.ts +0 -258
  1094. package/core/renderers/thrasos/info.d.ts +0 -37
  1095. package/core/renderers/thrasos/renderer.d.ts +0 -28
  1096. package/core/renderers/thrasos/thrasos.d.ts +0 -10
  1097. package/core/renderers/zelos/constants.d.ts +0 -165
  1098. package/core/renderers/zelos/drawer.d.ts +0 -51
  1099. package/core/renderers/zelos/info.d.ts +0 -89
  1100. package/core/renderers/zelos/measurables/bottom_row.d.ts +0 -26
  1101. package/core/renderers/zelos/measurables/inputs.d.ts +0 -21
  1102. package/core/renderers/zelos/measurables/row_elements.d.ts +0 -20
  1103. package/core/renderers/zelos/measurables/top_row.d.ts +0 -28
  1104. package/core/renderers/zelos/path_object.d.ts +0 -76
  1105. package/core/renderers/zelos/renderer.d.ts +0 -64
  1106. package/core/renderers/zelos/zelos.d.ts +0 -17
  1107. package/core/scrollbar.d.ts +0 -348
  1108. package/core/scrollbar_pair.d.ts +0 -121
  1109. package/core/separator_flyout_inflater.d.ts +0 -57
  1110. package/core/serialization/blocks.d.ts +0 -138
  1111. package/core/serialization/exceptions.d.ts +0 -81
  1112. package/core/serialization/priorities.d.ts +0 -20
  1113. package/core/serialization/procedures.d.ts +0 -97
  1114. package/core/serialization/registry.d.ts +0 -21
  1115. package/core/serialization/variables.d.ts +0 -38
  1116. package/core/serialization/workspace_comments.d.ts +0 -45
  1117. package/core/serialization/workspaces.d.ts +0 -29
  1118. package/core/serialization.d.ts +0 -19
  1119. package/core/shortcut_items.d.ts +0 -54
  1120. package/core/shortcut_registry.d.ts +0 -236
  1121. package/core/sprites.d.ts +0 -15
  1122. package/core/theme/classic.d.ts +0 -12
  1123. package/core/theme/themes.d.ts +0 -9
  1124. package/core/theme/zelos.d.ts +0 -11
  1125. package/core/theme.d.ts +0 -151
  1126. package/core/theme_manager.d.ts +0 -92
  1127. package/core/toast.d.ts +0 -74
  1128. package/core/toolbox/category.d.ts +0 -265
  1129. package/core/toolbox/collapsible_category.d.ts +0 -99
  1130. package/core/toolbox/separator.d.ts +0 -40
  1131. package/core/toolbox/toolbox.d.ts +0 -417
  1132. package/core/toolbox/toolbox_item.d.ts +0 -109
  1133. package/core/tooltip.d.ts +0 -118
  1134. package/core/touch.d.ts +0 -72
  1135. package/core/trashcan.d.ts +0 -212
  1136. package/core/utils/aria.d.ts +0 -69
  1137. package/core/utils/array.d.ts +0 -15
  1138. package/core/utils/colour.d.ts +0 -102
  1139. package/core/utils/coordinate.d.ts +0 -87
  1140. package/core/utils/deprecation.d.ts +0 -18
  1141. package/core/utils/dom.d.ts +0 -154
  1142. package/core/utils/drag.d.ts +0 -33
  1143. package/core/utils/focusable_tree_traverser.d.ts +0 -53
  1144. package/core/utils/idgenerator.d.ts +0 -33
  1145. package/core/utils/keycodes.d.ts +0 -136
  1146. package/core/utils/math.d.ts +0 -31
  1147. package/core/utils/metrics.d.ts +0 -64
  1148. package/core/utils/object.d.ts +0 -17
  1149. package/core/utils/parsing.d.ts +0 -52
  1150. package/core/utils/rect.d.ts +0 -82
  1151. package/core/utils/size.d.ts +0 -44
  1152. package/core/utils/string.d.ts +0 -46
  1153. package/core/utils/style.d.ts +0 -89
  1154. package/core/utils/svg.d.ts +0 -75
  1155. package/core/utils/svg_math.d.ts +0 -64
  1156. package/core/utils/svg_paths.d.ts +0 -103
  1157. package/core/utils/toolbox.d.ts +0 -180
  1158. package/core/utils/useragent.d.ts +0 -14
  1159. package/core/utils/xml.d.ts +0 -96
  1160. package/core/utils.d.ts +0 -31
  1161. package/core/variable_map.d.ts +0 -164
  1162. package/core/variable_model.d.ts +0 -73
  1163. package/core/variables.d.ts +0 -238
  1164. package/core/variables_dynamic.d.ts +0 -56
  1165. package/core/widgetdiv.d.ts +0 -87
  1166. package/core/workspace.d.ts +0 -482
  1167. package/core/workspace_audio.d.ts +0 -61
  1168. package/core/workspace_dragger.d.ts +0 -54
  1169. package/core/workspace_svg.d.ts +0 -1103
  1170. package/core/xml.d.ts +0 -127
  1171. package/core/zoom_controls.d.ts +0 -134
  1172. package/core.js +0 -4
  1173. package/dart.js +0 -4
  1174. package/dart.mjs +0 -6
  1175. package/dart_compressed.js +0 -330
  1176. package/dart_compressed.js.map +0 -1
  1177. package/generators/dart/dart_generator.d.ts +0 -104
  1178. package/generators/dart/lists.d.ts +0 -21
  1179. package/generators/dart/logic.d.ts +0 -20
  1180. package/generators/dart/loops.d.ts +0 -14
  1181. package/generators/dart/math.d.ts +0 -26
  1182. package/generators/dart/procedures.d.ts +0 -14
  1183. package/generators/dart/text.d.ts +0 -25
  1184. package/generators/dart/variables.d.ts +0 -14
  1185. package/generators/dart/variables_dynamic.d.ts +0 -10
  1186. package/generators/dart.d.ts +0 -18
  1187. package/generators/javascript/javascript_generator.d.ts +0 -123
  1188. package/generators/javascript/lists.d.ts +0 -21
  1189. package/generators/javascript/logic.d.ts +0 -20
  1190. package/generators/javascript/loops.d.ts +0 -14
  1191. package/generators/javascript/math.d.ts +0 -26
  1192. package/generators/javascript/procedures.d.ts +0 -14
  1193. package/generators/javascript/text.d.ts +0 -25
  1194. package/generators/javascript/variables.d.ts +0 -14
  1195. package/generators/javascript/variables_dynamic.d.ts +0 -10
  1196. package/generators/javascript.d.ts +0 -18
  1197. package/generators/lua/lists.d.ts +0 -21
  1198. package/generators/lua/logic.d.ts +0 -20
  1199. package/generators/lua/loops.d.ts +0 -14
  1200. package/generators/lua/lua_generator.d.ts +0 -91
  1201. package/generators/lua/math.d.ts +0 -26
  1202. package/generators/lua/procedures.d.ts +0 -14
  1203. package/generators/lua/text.d.ts +0 -25
  1204. package/generators/lua/variables.d.ts +0 -14
  1205. package/generators/lua/variables_dynamic.d.ts +0 -10
  1206. package/generators/lua.d.ts +0 -12
  1207. package/generators/php/lists.d.ts +0 -21
  1208. package/generators/php/logic.d.ts +0 -20
  1209. package/generators/php/loops.d.ts +0 -14
  1210. package/generators/php/math.d.ts +0 -26
  1211. package/generators/php/php_generator.d.ts +0 -122
  1212. package/generators/php/procedures.d.ts +0 -14
  1213. package/generators/php/text.d.ts +0 -25
  1214. package/generators/php/variables.d.ts +0 -14
  1215. package/generators/php/variables_dynamic.d.ts +0 -10
  1216. package/generators/php.d.ts +0 -13
  1217. package/generators/python/lists.d.ts +0 -21
  1218. package/generators/python/logic.d.ts +0 -20
  1219. package/generators/python/loops.d.ts +0 -14
  1220. package/generators/python/math.d.ts +0 -26
  1221. package/generators/python/procedures.d.ts +0 -14
  1222. package/generators/python/python_generator.d.ts +0 -111
  1223. package/generators/python/text.d.ts +0 -25
  1224. package/generators/python/variables.d.ts +0 -14
  1225. package/generators/python/variables_dynamic.d.ts +0 -10
  1226. package/generators/python.d.ts +0 -13
  1227. package/index.js +0 -36
  1228. package/index.mjs +0 -163
  1229. package/javascript.js +0 -4
  1230. package/javascript.mjs +0 -6
  1231. package/javascript_compressed.js +0 -264
  1232. package/javascript_compressed.js.map +0 -1
  1233. package/lua.js +0 -4
  1234. package/lua.mjs +0 -6
  1235. package/lua_compressed.js +0 -373
  1236. package/lua_compressed.js.map +0 -1
  1237. package/media/click.ogg +0 -0
  1238. package/media/click.wav +0 -0
  1239. package/media/delete.ogg +0 -0
  1240. package/media/delete.wav +0 -0
  1241. package/media/disconnect.ogg +0 -0
  1242. package/media/disconnect.wav +0 -0
  1243. package/msg/ab.js +0 -465
  1244. package/msg/ab.mjs +0 -446
  1245. package/msg/ace.js +0 -465
  1246. package/msg/ace.mjs +0 -446
  1247. package/msg/af.js +0 -465
  1248. package/msg/af.mjs +0 -446
  1249. package/msg/am.js +0 -465
  1250. package/msg/am.mjs +0 -446
  1251. package/msg/ar.js +0 -465
  1252. package/msg/ar.mjs +0 -446
  1253. package/msg/ast.js +0 -465
  1254. package/msg/ast.mjs +0 -446
  1255. package/msg/az.js +0 -465
  1256. package/msg/az.mjs +0 -446
  1257. package/msg/ba.js +0 -465
  1258. package/msg/ba.mjs +0 -446
  1259. package/msg/bcc.js +0 -465
  1260. package/msg/bcc.mjs +0 -446
  1261. package/msg/be-tarask.js +0 -465
  1262. package/msg/be-tarask.mjs +0 -446
  1263. package/msg/be.js +0 -465
  1264. package/msg/be.mjs +0 -446
  1265. package/msg/bg.js +0 -465
  1266. package/msg/bg.mjs +0 -446
  1267. package/msg/bn.js +0 -465
  1268. package/msg/bn.mjs +0 -446
  1269. package/msg/br.js +0 -465
  1270. package/msg/br.mjs +0 -446
  1271. package/msg/bs.js +0 -465
  1272. package/msg/bs.mjs +0 -446
  1273. package/msg/ca.js +0 -465
  1274. package/msg/ca.mjs +0 -446
  1275. package/msg/cdo.js +0 -465
  1276. package/msg/cdo.mjs +0 -446
  1277. package/msg/ce.js +0 -465
  1278. package/msg/ce.mjs +0 -446
  1279. package/msg/cs.js +0 -465
  1280. package/msg/cs.mjs +0 -446
  1281. package/msg/da.js +0 -465
  1282. package/msg/da.mjs +0 -446
  1283. package/msg/de.js +0 -465
  1284. package/msg/de.mjs +0 -446
  1285. package/msg/diq.js +0 -465
  1286. package/msg/diq.mjs +0 -446
  1287. package/msg/dtp.js +0 -465
  1288. package/msg/dtp.mjs +0 -446
  1289. package/msg/dty.js +0 -465
  1290. package/msg/dty.mjs +0 -446
  1291. package/msg/ee.js +0 -465
  1292. package/msg/ee.mjs +0 -446
  1293. package/msg/el.js +0 -465
  1294. package/msg/el.mjs +0 -446
  1295. package/msg/en-gb.js +0 -465
  1296. package/msg/en-gb.mjs +0 -446
  1297. package/msg/en.js +0 -465
  1298. package/msg/en.mjs +0 -446
  1299. package/msg/eo.js +0 -465
  1300. package/msg/eo.mjs +0 -446
  1301. package/msg/es.js +0 -465
  1302. package/msg/es.mjs +0 -446
  1303. package/msg/et.js +0 -465
  1304. package/msg/et.mjs +0 -446
  1305. package/msg/eu.js +0 -465
  1306. package/msg/eu.mjs +0 -446
  1307. package/msg/fa.js +0 -465
  1308. package/msg/fa.mjs +0 -446
  1309. package/msg/fi.js +0 -465
  1310. package/msg/fi.mjs +0 -446
  1311. package/msg/fo.js +0 -465
  1312. package/msg/fo.mjs +0 -446
  1313. package/msg/fr.js +0 -465
  1314. package/msg/fr.mjs +0 -446
  1315. package/msg/frr.js +0 -465
  1316. package/msg/frr.mjs +0 -446
  1317. package/msg/gl.js +0 -465
  1318. package/msg/gl.mjs +0 -446
  1319. package/msg/gn.js +0 -465
  1320. package/msg/gn.mjs +0 -446
  1321. package/msg/gor.js +0 -465
  1322. package/msg/gor.mjs +0 -446
  1323. package/msg/ha.js +0 -465
  1324. package/msg/ha.mjs +0 -446
  1325. package/msg/hak.js +0 -465
  1326. package/msg/hak.mjs +0 -446
  1327. package/msg/he.js +0 -465
  1328. package/msg/he.mjs +0 -446
  1329. package/msg/hi.js +0 -465
  1330. package/msg/hi.mjs +0 -446
  1331. package/msg/hr.js +0 -465
  1332. package/msg/hr.mjs +0 -446
  1333. package/msg/hrx.js +0 -465
  1334. package/msg/hrx.mjs +0 -446
  1335. package/msg/hsb.js +0 -465
  1336. package/msg/hsb.mjs +0 -446
  1337. package/msg/hu.js +0 -465
  1338. package/msg/hu.mjs +0 -446
  1339. package/msg/hy.js +0 -465
  1340. package/msg/hy.mjs +0 -446
  1341. package/msg/ia.js +0 -465
  1342. package/msg/ia.mjs +0 -446
  1343. package/msg/id.js +0 -465
  1344. package/msg/id.mjs +0 -446
  1345. package/msg/ig.js +0 -465
  1346. package/msg/ig.mjs +0 -446
  1347. package/msg/inh.js +0 -465
  1348. package/msg/inh.mjs +0 -446
  1349. package/msg/is.js +0 -465
  1350. package/msg/is.mjs +0 -446
  1351. package/msg/it.js +0 -465
  1352. package/msg/it.mjs +0 -446
  1353. package/msg/ja.js +0 -465
  1354. package/msg/ja.mjs +0 -446
  1355. package/msg/ka.js +0 -465
  1356. package/msg/ka.mjs +0 -446
  1357. package/msg/kab.js +0 -465
  1358. package/msg/kab.mjs +0 -446
  1359. package/msg/kbd-cyrl.js +0 -465
  1360. package/msg/kbd-cyrl.mjs +0 -446
  1361. package/msg/km.js +0 -465
  1362. package/msg/km.mjs +0 -446
  1363. package/msg/kn.js +0 -465
  1364. package/msg/kn.mjs +0 -446
  1365. package/msg/ko.js +0 -465
  1366. package/msg/ko.mjs +0 -446
  1367. package/msg/ksh.js +0 -465
  1368. package/msg/ksh.mjs +0 -446
  1369. package/msg/ku-latn.js +0 -465
  1370. package/msg/ku-latn.mjs +0 -446
  1371. package/msg/ky.js +0 -465
  1372. package/msg/ky.mjs +0 -446
  1373. package/msg/la.js +0 -465
  1374. package/msg/la.mjs +0 -446
  1375. package/msg/lb.js +0 -465
  1376. package/msg/lb.mjs +0 -446
  1377. package/msg/lki.js +0 -465
  1378. package/msg/lki.mjs +0 -446
  1379. package/msg/lo.js +0 -465
  1380. package/msg/lo.mjs +0 -446
  1381. package/msg/lrc.js +0 -465
  1382. package/msg/lrc.mjs +0 -446
  1383. package/msg/lt.js +0 -465
  1384. package/msg/lt.mjs +0 -446
  1385. package/msg/lv.js +0 -465
  1386. package/msg/lv.mjs +0 -446
  1387. package/msg/mg.js +0 -465
  1388. package/msg/mg.mjs +0 -446
  1389. package/msg/mk.js +0 -465
  1390. package/msg/mk.mjs +0 -446
  1391. package/msg/ml.js +0 -465
  1392. package/msg/ml.mjs +0 -446
  1393. package/msg/mnw.js +0 -465
  1394. package/msg/mnw.mjs +0 -446
  1395. package/msg/ms.js +0 -465
  1396. package/msg/ms.mjs +0 -446
  1397. package/msg/my.js +0 -465
  1398. package/msg/my.mjs +0 -446
  1399. package/msg/mzn.js +0 -465
  1400. package/msg/mzn.mjs +0 -446
  1401. package/msg/nb.js +0 -465
  1402. package/msg/nb.mjs +0 -446
  1403. package/msg/ne.js +0 -465
  1404. package/msg/ne.mjs +0 -446
  1405. package/msg/nl.js +0 -465
  1406. package/msg/nl.mjs +0 -446
  1407. package/msg/oc.js +0 -465
  1408. package/msg/oc.mjs +0 -446
  1409. package/msg/olo.js +0 -465
  1410. package/msg/olo.mjs +0 -446
  1411. package/msg/pa.js +0 -465
  1412. package/msg/pa.mjs +0 -446
  1413. package/msg/pl.js +0 -465
  1414. package/msg/pl.mjs +0 -446
  1415. package/msg/pms.js +0 -465
  1416. package/msg/pms.mjs +0 -446
  1417. package/msg/ps.js +0 -465
  1418. package/msg/ps.mjs +0 -446
  1419. package/msg/pt-br.js +0 -465
  1420. package/msg/pt-br.mjs +0 -446
  1421. package/msg/pt.js +0 -465
  1422. package/msg/pt.mjs +0 -446
  1423. package/msg/ro.js +0 -465
  1424. package/msg/ro.mjs +0 -446
  1425. package/msg/ru.js +0 -465
  1426. package/msg/ru.mjs +0 -446
  1427. package/msg/sc.js +0 -465
  1428. package/msg/sc.mjs +0 -446
  1429. package/msg/sco.js +0 -465
  1430. package/msg/sco.mjs +0 -446
  1431. package/msg/sd.js +0 -465
  1432. package/msg/sd.mjs +0 -446
  1433. package/msg/shn.js +0 -465
  1434. package/msg/shn.mjs +0 -446
  1435. package/msg/si.js +0 -465
  1436. package/msg/si.mjs +0 -446
  1437. package/msg/sk.js +0 -465
  1438. package/msg/sk.mjs +0 -446
  1439. package/msg/skr-arab.js +0 -465
  1440. package/msg/skr-arab.mjs +0 -446
  1441. package/msg/sl.js +0 -465
  1442. package/msg/sl.mjs +0 -446
  1443. package/msg/smn.js +0 -465
  1444. package/msg/smn.mjs +0 -446
  1445. package/msg/sq.js +0 -465
  1446. package/msg/sq.mjs +0 -446
  1447. package/msg/sr-latn.js +0 -465
  1448. package/msg/sr-latn.mjs +0 -446
  1449. package/msg/sr.js +0 -465
  1450. package/msg/sr.mjs +0 -446
  1451. package/msg/sv.js +0 -465
  1452. package/msg/sv.mjs +0 -446
  1453. package/msg/sw.js +0 -465
  1454. package/msg/sw.mjs +0 -446
  1455. package/msg/ta.js +0 -465
  1456. package/msg/ta.mjs +0 -446
  1457. package/msg/tcy.js +0 -465
  1458. package/msg/tcy.mjs +0 -446
  1459. package/msg/tdd.js +0 -465
  1460. package/msg/tdd.mjs +0 -446
  1461. package/msg/te.js +0 -465
  1462. package/msg/te.mjs +0 -446
  1463. package/msg/th.js +0 -465
  1464. package/msg/th.mjs +0 -446
  1465. package/msg/ti.js +0 -465
  1466. package/msg/ti.mjs +0 -446
  1467. package/msg/tl.js +0 -465
  1468. package/msg/tl.mjs +0 -446
  1469. package/msg/tlh.js +0 -465
  1470. package/msg/tlh.mjs +0 -446
  1471. package/msg/tr.js +0 -465
  1472. package/msg/tr.mjs +0 -446
  1473. package/msg/ug-arab.js +0 -465
  1474. package/msg/ug-arab.mjs +0 -446
  1475. package/msg/uk.js +0 -465
  1476. package/msg/uk.mjs +0 -446
  1477. package/msg/ur.js +0 -465
  1478. package/msg/ur.mjs +0 -446
  1479. package/msg/uz.js +0 -465
  1480. package/msg/uz.mjs +0 -446
  1481. package/msg/vi.js +0 -465
  1482. package/msg/vi.mjs +0 -446
  1483. package/msg/xmf.js +0 -465
  1484. package/msg/xmf.mjs +0 -446
  1485. package/msg/yo.js +0 -465
  1486. package/msg/yo.mjs +0 -446
  1487. package/msg/zgh.js +0 -465
  1488. package/msg/zgh.mjs +0 -446
  1489. package/msg/zh-hans.js +0 -465
  1490. package/msg/zh-hans.mjs +0 -446
  1491. package/msg/zh-hant.js +0 -465
  1492. package/msg/zh-hant.mjs +0 -446
  1493. package/php.js +0 -4
  1494. package/php.mjs +0 -6
  1495. package/php_compressed.js +0 -283
  1496. package/php_compressed.js.map +0 -1
  1497. package/python.js +0 -4
  1498. package/python.mjs +0 -6
  1499. package/python_compressed.js +0 -208
  1500. package/python_compressed.js.map +0 -1
  1501. /package/{README.md → scripts/package/README.md} +0 -0
  1502. /package/{core-node.js → scripts/package/core-node.js} +0 -0
  1503. /package/{blocks.d.ts → typings/blocks.d.ts} +0 -0
  1504. /package/{core.d.ts → typings/core.d.ts} +0 -0
  1505. /package/{dart.d.ts → typings/dart.d.ts} +0 -0
  1506. /package/{index.d.ts → typings/index.d.ts} +0 -0
  1507. /package/{javascript.d.ts → typings/javascript.d.ts} +0 -0
  1508. /package/{lua.d.ts → typings/lua.d.ts} +0 -0
  1509. /package/{msg → typings/msg}/ab.d.ts +0 -0
  1510. /package/{msg → typings/msg}/ace.d.ts +0 -0
  1511. /package/{msg → typings/msg}/af.d.ts +0 -0
  1512. /package/{msg → typings/msg}/am.d.ts +0 -0
  1513. /package/{msg → typings/msg}/ar.d.ts +0 -0
  1514. /package/{msg → typings/msg}/ast.d.ts +0 -0
  1515. /package/{msg → typings/msg}/az.d.ts +0 -0
  1516. /package/{msg → typings/msg}/ba.d.ts +0 -0
  1517. /package/{msg → typings/msg}/bcc.d.ts +0 -0
  1518. /package/{msg → typings/msg}/be-tarask.d.ts +0 -0
  1519. /package/{msg → typings/msg}/be.d.ts +0 -0
  1520. /package/{msg → typings/msg}/bg.d.ts +0 -0
  1521. /package/{msg → typings/msg}/bn.d.ts +0 -0
  1522. /package/{msg → typings/msg}/br.d.ts +0 -0
  1523. /package/{msg → typings/msg}/bs.d.ts +0 -0
  1524. /package/{msg → typings/msg}/ca.d.ts +0 -0
  1525. /package/{msg → typings/msg}/cdo.d.ts +0 -0
  1526. /package/{msg → typings/msg}/ce.d.ts +0 -0
  1527. /package/{msg → typings/msg}/cs.d.ts +0 -0
  1528. /package/{msg → typings/msg}/da.d.ts +0 -0
  1529. /package/{msg → typings/msg}/de.d.ts +0 -0
  1530. /package/{msg → typings/msg}/diq.d.ts +0 -0
  1531. /package/{msg → typings/msg}/dtp.d.ts +0 -0
  1532. /package/{msg → typings/msg}/dty.d.ts +0 -0
  1533. /package/{msg → typings/msg}/ee.d.ts +0 -0
  1534. /package/{msg → typings/msg}/el.d.ts +0 -0
  1535. /package/{msg → typings/msg}/en-gb.d.ts +0 -0
  1536. /package/{msg → typings/msg}/en.d.ts +0 -0
  1537. /package/{msg → typings/msg}/eo.d.ts +0 -0
  1538. /package/{msg → typings/msg}/es.d.ts +0 -0
  1539. /package/{msg → typings/msg}/et.d.ts +0 -0
  1540. /package/{msg → typings/msg}/eu.d.ts +0 -0
  1541. /package/{msg → typings/msg}/fa.d.ts +0 -0
  1542. /package/{msg → typings/msg}/fi.d.ts +0 -0
  1543. /package/{msg → typings/msg}/fo.d.ts +0 -0
  1544. /package/{msg → typings/msg}/fr.d.ts +0 -0
  1545. /package/{msg → typings/msg}/frr.d.ts +0 -0
  1546. /package/{msg → typings/msg}/gl.d.ts +0 -0
  1547. /package/{msg → typings/msg}/gn.d.ts +0 -0
  1548. /package/{msg → typings/msg}/gor.d.ts +0 -0
  1549. /package/{msg → typings/msg}/ha.d.ts +0 -0
  1550. /package/{msg → typings/msg}/hak.d.ts +0 -0
  1551. /package/{msg → typings/msg}/he.d.ts +0 -0
  1552. /package/{msg → typings/msg}/hi.d.ts +0 -0
  1553. /package/{msg → typings/msg}/hr.d.ts +0 -0
  1554. /package/{msg → typings/msg}/hrx.d.ts +0 -0
  1555. /package/{msg → typings/msg}/hsb.d.ts +0 -0
  1556. /package/{msg → typings/msg}/hu.d.ts +0 -0
  1557. /package/{msg → typings/msg}/hy.d.ts +0 -0
  1558. /package/{msg → typings/msg}/ia.d.ts +0 -0
  1559. /package/{msg → typings/msg}/id.d.ts +0 -0
  1560. /package/{msg → typings/msg}/ig.d.ts +0 -0
  1561. /package/{msg → typings/msg}/inh.d.ts +0 -0
  1562. /package/{msg → typings/msg}/is.d.ts +0 -0
  1563. /package/{msg → typings/msg}/it.d.ts +0 -0
  1564. /package/{msg → typings/msg}/ja.d.ts +0 -0
  1565. /package/{msg → typings/msg}/ka.d.ts +0 -0
  1566. /package/{msg → typings/msg}/kab.d.ts +0 -0
  1567. /package/{msg → typings/msg}/kbd-cyrl.d.ts +0 -0
  1568. /package/{msg → typings/msg}/km.d.ts +0 -0
  1569. /package/{msg → typings/msg}/kn.d.ts +0 -0
  1570. /package/{msg → typings/msg}/ko.d.ts +0 -0
  1571. /package/{msg → typings/msg}/ksh.d.ts +0 -0
  1572. /package/{msg → typings/msg}/ku-latn.d.ts +0 -0
  1573. /package/{msg → typings/msg}/ky.d.ts +0 -0
  1574. /package/{msg → typings/msg}/la.d.ts +0 -0
  1575. /package/{msg → typings/msg}/lb.d.ts +0 -0
  1576. /package/{msg → typings/msg}/lki.d.ts +0 -0
  1577. /package/{msg → typings/msg}/lo.d.ts +0 -0
  1578. /package/{msg → typings/msg}/lrc.d.ts +0 -0
  1579. /package/{msg → typings/msg}/lt.d.ts +0 -0
  1580. /package/{msg → typings/msg}/lv.d.ts +0 -0
  1581. /package/{msg → typings/msg}/mg.d.ts +0 -0
  1582. /package/{msg → typings/msg}/mk.d.ts +0 -0
  1583. /package/{msg → typings/msg}/ml.d.ts +0 -0
  1584. /package/{msg → typings/msg}/mnw.d.ts +0 -0
  1585. /package/{msg → typings/msg}/ms.d.ts +0 -0
  1586. /package/{msg → typings/msg}/msg.d.ts +0 -0
  1587. /package/{msg → typings/msg}/my.d.ts +0 -0
  1588. /package/{msg → typings/msg}/mzn.d.ts +0 -0
  1589. /package/{msg → typings/msg}/nb.d.ts +0 -0
  1590. /package/{msg → typings/msg}/ne.d.ts +0 -0
  1591. /package/{msg → typings/msg}/nl.d.ts +0 -0
  1592. /package/{msg → typings/msg}/oc.d.ts +0 -0
  1593. /package/{msg → typings/msg}/olo.d.ts +0 -0
  1594. /package/{msg → typings/msg}/pa.d.ts +0 -0
  1595. /package/{msg → typings/msg}/pl.d.ts +0 -0
  1596. /package/{msg → typings/msg}/pms.d.ts +0 -0
  1597. /package/{msg → typings/msg}/ps.d.ts +0 -0
  1598. /package/{msg → typings/msg}/pt-br.d.ts +0 -0
  1599. /package/{msg → typings/msg}/pt.d.ts +0 -0
  1600. /package/{msg → typings/msg}/ro.d.ts +0 -0
  1601. /package/{msg → typings/msg}/ru.d.ts +0 -0
  1602. /package/{msg → typings/msg}/sc.d.ts +0 -0
  1603. /package/{msg → typings/msg}/sco.d.ts +0 -0
  1604. /package/{msg → typings/msg}/sd.d.ts +0 -0
  1605. /package/{msg → typings/msg}/shn.d.ts +0 -0
  1606. /package/{msg → typings/msg}/si.d.ts +0 -0
  1607. /package/{msg → typings/msg}/sk.d.ts +0 -0
  1608. /package/{msg → typings/msg}/skr-arab.d.ts +0 -0
  1609. /package/{msg → typings/msg}/sl.d.ts +0 -0
  1610. /package/{msg → typings/msg}/smn.d.ts +0 -0
  1611. /package/{msg → typings/msg}/sq.d.ts +0 -0
  1612. /package/{msg → typings/msg}/sr-latn.d.ts +0 -0
  1613. /package/{msg → typings/msg}/sr.d.ts +0 -0
  1614. /package/{msg → typings/msg}/sv.d.ts +0 -0
  1615. /package/{msg → typings/msg}/sw.d.ts +0 -0
  1616. /package/{msg → typings/msg}/ta.d.ts +0 -0
  1617. /package/{msg → typings/msg}/tcy.d.ts +0 -0
  1618. /package/{msg → typings/msg}/tdd.d.ts +0 -0
  1619. /package/{msg → typings/msg}/te.d.ts +0 -0
  1620. /package/{msg → typings/msg}/th.d.ts +0 -0
  1621. /package/{msg → typings/msg}/ti.d.ts +0 -0
  1622. /package/{msg → typings/msg}/tl.d.ts +0 -0
  1623. /package/{msg → typings/msg}/tlh.d.ts +0 -0
  1624. /package/{msg → typings/msg}/tr.d.ts +0 -0
  1625. /package/{msg → typings/msg}/ug-arab.d.ts +0 -0
  1626. /package/{msg → typings/msg}/uk.d.ts +0 -0
  1627. /package/{msg → typings/msg}/ur.d.ts +0 -0
  1628. /package/{msg → typings/msg}/uz.d.ts +0 -0
  1629. /package/{msg → typings/msg}/vi.d.ts +0 -0
  1630. /package/{msg → typings/msg}/xmf.d.ts +0 -0
  1631. /package/{msg → typings/msg}/yo.d.ts +0 -0
  1632. /package/{msg → typings/msg}/zgh.d.ts +0 -0
  1633. /package/{msg → typings/msg}/zh-hans.d.ts +0 -0
  1634. /package/{msg → typings/msg}/zh-hant.d.ts +0 -0
  1635. /package/{php.d.ts → typings/php.d.ts} +0 -0
  1636. /package/{python.d.ts → typings/python.d.ts} +0 -0
@@ -0,0 +1,2949 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2019 Google LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ import {ConnectionType} from '../../build/src/core/connection_type.js';
8
+ import {EventType} from '../../build/src/core/events/type.js';
9
+ import * as eventUtils from '../../build/src/core/events/utils.js';
10
+ import {IconType} from '../../build/src/core/icons/icon_types.js';
11
+ import {EndRowInput} from '../../build/src/core/inputs/end_row_input.js';
12
+ import {isCommentIcon} from '../../build/src/core/interfaces/i_comment_icon.js';
13
+ import {Size} from '../../build/src/core/utils/size.js';
14
+ import {assert} from '../../node_modules/chai/index.js';
15
+ import {createRenderedBlock} from './test_helpers/block_definitions.js';
16
+ import {
17
+ createChangeListenerSpy,
18
+ createMockEvent,
19
+ } from './test_helpers/events.js';
20
+ import {MockBubbleIcon, MockIcon} from './test_helpers/icon_mocks.js';
21
+ import {
22
+ sharedTestSetup,
23
+ sharedTestTeardown,
24
+ workspaceTeardown,
25
+ } from './test_helpers/setup_teardown.js';
26
+
27
+ suite('Blocks', function () {
28
+ setup(function () {
29
+ this.clock = sharedTestSetup.call(this, {fireEventsNow: false}).clock;
30
+ this.workspace = new Blockly.Workspace();
31
+ Blockly.defineBlocksWithJsonArray([
32
+ {
33
+ 'type': 'empty_block',
34
+ 'message0': '',
35
+ },
36
+ {
37
+ 'type': 'stack_block',
38
+ 'message0': '',
39
+ 'previousStatement': null,
40
+ 'nextStatement': null,
41
+ },
42
+ {
43
+ 'type': 'row_block',
44
+ 'message0': '%1',
45
+ 'args0': [
46
+ {
47
+ 'type': 'input_value',
48
+ 'name': 'INPUT',
49
+ },
50
+ ],
51
+ 'output': null,
52
+ },
53
+ {
54
+ 'type': 'statement_block',
55
+ 'message0': '%1',
56
+ 'args0': [
57
+ {
58
+ 'type': 'input_statement',
59
+ 'name': 'STATEMENT',
60
+ },
61
+ ],
62
+ 'previousStatement': null,
63
+ 'nextStatement': null,
64
+ },
65
+ ]);
66
+ });
67
+
68
+ teardown(function () {
69
+ sharedTestTeardown.call(this);
70
+ });
71
+
72
+ function createTestBlocks(workspace, isRow) {
73
+ const blockType = isRow ? 'row_block' : 'stack_block';
74
+ const blockA = workspace.newBlock(blockType, 'a');
75
+ const blockB = workspace.newBlock(blockType, 'b');
76
+ const blockC = workspace.newBlock(blockType, 'c');
77
+
78
+ if (isRow) {
79
+ blockA.inputList[0].connection.connect(blockB.outputConnection);
80
+ blockB.inputList[0].connection.connect(blockC.outputConnection);
81
+ } else {
82
+ blockA.nextConnection.connect(blockB.previousConnection);
83
+ blockB.nextConnection.connect(blockC.previousConnection);
84
+ }
85
+
86
+ assert.equal(blockC.getParent(), blockB);
87
+
88
+ return {
89
+ A: blockA /* Parent */,
90
+ B: blockB /* Middle */,
91
+ C: blockC /* Child */,
92
+ };
93
+ }
94
+
95
+ suite('Unplug', function () {
96
+ function assertUnpluggedNoheal(blocks) {
97
+ // A has nothing connected to it.
98
+ assert.equal(blocks.A.getChildren().length, 0);
99
+ // B and C are still connected.
100
+ assert.equal(blocks.C.getParent(), blocks.B);
101
+ // B is the top of its stack.
102
+ assert.isNull(blocks.B.getParent());
103
+ }
104
+ function assertUnpluggedHealed(blocks) {
105
+ // A and C are connected.
106
+ assert.equal(blocks.A.getChildren().length, 1);
107
+ assert.equal(blocks.C.getParent(), blocks.A);
108
+ // B has nothing connected to it.
109
+ assert.equal(blocks.B.getChildren().length, 0);
110
+ // B is the top of its stack.
111
+ assert.isNull(blocks.B.getParent());
112
+ }
113
+ function assertUnpluggedHealFailed(blocks) {
114
+ // A has nothing connected to it.
115
+ assert.equal(blocks.A.getChildren().length, 0);
116
+ // B has nothing connected to it.
117
+ assert.equal(blocks.B.getChildren().length, 0);
118
+ // B is the top of its stack.
119
+ assert.isNull(blocks.B.getParent());
120
+ // C is the top of its stack.
121
+ assert.isNull(blocks.C.getParent());
122
+ }
123
+
124
+ suite('Row', function () {
125
+ setup(function () {
126
+ this.blocks = createTestBlocks(this.workspace, true);
127
+ });
128
+
129
+ test("Don't heal", function () {
130
+ this.blocks.B.unplug(false);
131
+ assertUnpluggedNoheal(this.blocks);
132
+ });
133
+ test('Heal', function () {
134
+ this.blocks.B.unplug(true);
135
+ // Each block has only one input, and the types work.
136
+ assertUnpluggedHealed(this.blocks);
137
+ });
138
+ test('Heal with bad checks', function () {
139
+ const blocks = this.blocks;
140
+
141
+ // A and C can't connect, but both can connect to B.
142
+ blocks.A.inputList[0].connection.setCheck('type1');
143
+ blocks.C.outputConnection.setCheck('type2');
144
+
145
+ // Each block has only one input, but the types don't work.
146
+ blocks.B.unplug(true);
147
+ assertUnpluggedHealFailed(blocks);
148
+ });
149
+ test('Parent has multiple inputs', function () {
150
+ const blocks = this.blocks;
151
+ // Add extra input to parent
152
+ blocks.A.appendValueInput('INPUT').setCheck(null);
153
+ blocks.B.unplug(true);
154
+ assertUnpluggedHealed(blocks);
155
+ });
156
+ test('Middle has multiple inputs', function () {
157
+ const blocks = this.blocks;
158
+ // Add extra input to middle block
159
+ blocks.B.appendValueInput('INPUT').setCheck(null);
160
+ blocks.B.unplug(true);
161
+ assertUnpluggedHealed(blocks);
162
+ });
163
+ test('Child has multiple inputs', function () {
164
+ const blocks = this.blocks;
165
+ // Add extra input to child block
166
+ blocks.C.appendValueInput('INPUT').setCheck(null);
167
+ // Child block input count doesn't matter.
168
+ blocks.B.unplug(true);
169
+ assertUnpluggedHealed(blocks);
170
+ });
171
+ test('Child is shadow', function () {
172
+ const blocks = this.blocks;
173
+ blocks.C.setShadow(true);
174
+ blocks.B.unplug(true);
175
+ // Even though we're asking to heal, it will appear as if it has not
176
+ // healed because shadows always stay with the parent.
177
+ assertUnpluggedNoheal(blocks);
178
+ });
179
+ });
180
+ suite('Stack', function () {
181
+ setup(function () {
182
+ this.blocks = createTestBlocks(this.workspace, false);
183
+ });
184
+
185
+ test("Don't heal", function () {
186
+ this.blocks.B.unplug();
187
+ assertUnpluggedNoheal(this.blocks);
188
+ });
189
+ test('Heal', function () {
190
+ this.blocks.B.unplug(true);
191
+ assertUnpluggedHealed(this.blocks);
192
+ });
193
+ test('Heal with bad checks', function () {
194
+ const blocks = this.blocks;
195
+ // A and C can't connect, but both can connect to B.
196
+ blocks.A.nextConnection.setCheck('type1');
197
+ blocks.C.previousConnection.setCheck('type2');
198
+
199
+ // The types don't work.
200
+ blocks.B.unplug(true);
201
+
202
+ assertUnpluggedHealFailed(blocks);
203
+ });
204
+ test('Disconnect top of stack with immovable sibling', function () {
205
+ this.blocks.B.setMovable(false);
206
+ this.blocks.A.unplug(true);
207
+ assert.equal(this.blocks.A.nextConnection.targetBlock(), this.blocks.B);
208
+ assert.isNull(this.blocks.B.nextConnection.targetBlock());
209
+ assert.isNull(this.blocks.C.previousConnection.targetBlock());
210
+ });
211
+ test('Heal with immovable sibling mid-stack', function () {
212
+ const blockD = this.workspace.newBlock('stack_block', 'd');
213
+ this.blocks.C.nextConnection.connect(blockD.previousConnection);
214
+ this.blocks.C.setMovable(false);
215
+ this.blocks.B.unplug(true);
216
+ assert.equal(this.blocks.A.nextConnection.targetBlock(), blockD);
217
+ assert.equal(this.blocks.B.nextConnection.targetBlock(), this.blocks.C);
218
+ assert.isNull(this.blocks.C.nextConnection.targetBlock());
219
+ });
220
+ test('Heal with immovable sibling and shadow sibling mid-stack', function () {
221
+ const blockD = this.workspace.newBlock('stack_block', 'd');
222
+ const blockE = this.workspace.newBlock('stack_block', 'e');
223
+ this.blocks.C.nextConnection.connect(blockD.previousConnection);
224
+ blockD.nextConnection.connect(blockE.previousConnection);
225
+ this.blocks.C.setMovable(false);
226
+ blockD.setShadow(true);
227
+ this.blocks.B.unplug(true);
228
+ assert.equal(this.blocks.A.nextConnection.targetBlock(), blockE);
229
+ assert.equal(this.blocks.B.nextConnection.targetBlock(), this.blocks.C);
230
+ assert.equal(this.blocks.C.nextConnection.targetBlock(), blockD);
231
+ assert.isNull(blockD.nextConnection.targetBlock());
232
+ });
233
+ test('Child is shadow', function () {
234
+ const blocks = this.blocks;
235
+ blocks.C.setShadow(true);
236
+ blocks.B.unplug(true);
237
+ // Even though we're asking to heal, it will appear as if it has not
238
+ // healed because shadows always stay with the parent.
239
+ assertUnpluggedNoheal(blocks);
240
+ });
241
+ });
242
+ });
243
+
244
+ suite('Disposal', function () {
245
+ suite('calling destroy', function () {
246
+ setup(function () {
247
+ Blockly.Blocks['destroyable_block'] = {
248
+ init: function () {
249
+ this.appendStatementInput('STATEMENT');
250
+ this.setPreviousStatement(true);
251
+ this.setNextStatement(true);
252
+ },
253
+ destroy: function () {},
254
+ };
255
+ this.block = this.workspace.newBlock('destroyable_block');
256
+ });
257
+
258
+ teardown(function () {
259
+ delete Blockly.Blocks['destroyable_block'];
260
+ });
261
+
262
+ test('destroy is called', function () {
263
+ const spy = sinon.spy(this.block, 'destroy');
264
+
265
+ this.block.dispose();
266
+
267
+ assert.isTrue(spy.calledOnce, 'Expected destroy to be called.');
268
+ });
269
+
270
+ test('disposing is set before destroy', function () {
271
+ let disposing = null;
272
+ this.block.destroy = function () {
273
+ disposing = this.disposing;
274
+ };
275
+
276
+ this.block.dispose();
277
+
278
+ assert.isTrue(
279
+ disposing,
280
+ 'Expected disposing to be set to true before destroy is called.',
281
+ );
282
+ });
283
+
284
+ test('disposed is not set before destroy', function () {
285
+ let disposed = null;
286
+ this.block.destroy = function () {
287
+ disposed = this.disposed;
288
+ };
289
+
290
+ this.block.dispose();
291
+
292
+ assert.isFalse(
293
+ disposed,
294
+ 'Expected disposed to be false when destroy is called',
295
+ );
296
+ });
297
+
298
+ test('events can be fired from destroy', function () {
299
+ const mockEvent = createMockEvent(this.workspace);
300
+ this.block.destroy = function () {
301
+ Blockly.Events.fire(mockEvent);
302
+ };
303
+ const spy = createChangeListenerSpy(this.workspace);
304
+
305
+ this.block.dispose();
306
+ this.clock.runAll();
307
+
308
+ assert.isTrue(
309
+ spy.calledWith(mockEvent),
310
+ 'Expected to be able to fire events from destroy',
311
+ );
312
+ });
313
+
314
+ test('child blocks can fire events from destroy', function () {
315
+ const mockEvent = createMockEvent(this.workspace);
316
+ const childBlock = this.workspace.newBlock('destroyable_block');
317
+ this.block
318
+ .getInput('STATEMENT')
319
+ .connection.connect(childBlock.previousConnection);
320
+ childBlock.destroy = function () {
321
+ Blockly.Events.fire(mockEvent);
322
+ };
323
+ const spy = createChangeListenerSpy(this.workspace);
324
+
325
+ this.block.dispose();
326
+ this.clock.runAll();
327
+
328
+ assert.isTrue(
329
+ spy.calledWith(mockEvent),
330
+ 'Expected to be able to fire events from destroy',
331
+ );
332
+ });
333
+ });
334
+
335
+ suite('stack/row healing', function () {
336
+ function assertDisposedNoheal(blocks) {
337
+ assert.isFalse(blocks.A.disposed);
338
+ // A has nothing connected to it.
339
+ assert.equal(blocks.A.getChildren().length, 0);
340
+ // B is disposed.
341
+ assert.isTrue(blocks.B.disposed);
342
+ // And C is disposed.
343
+ assert.isTrue(blocks.C.disposed);
344
+ }
345
+
346
+ function assertDisposedHealed(blocks) {
347
+ assert.isFalse(blocks.A.disposed);
348
+ assert.isFalse(blocks.C.disposed);
349
+ // A and C are connected.
350
+ assert.equal(blocks.A.getChildren().length, 1);
351
+ assert.equal(blocks.C.getParent(), blocks.A);
352
+ // B is disposed.
353
+ assert.isTrue(blocks.B.disposed);
354
+ }
355
+
356
+ function assertDisposedHealFailed(blocks) {
357
+ assert.isFalse(blocks.A.disposed);
358
+ assert.isFalse(blocks.C.disposed);
359
+ // A has nothing connected to it.
360
+ assert.equal(blocks.A.getChildren().length, 0);
361
+ // B is disposed.
362
+ assert.isTrue(blocks.B.disposed);
363
+ // C is the top of its stack.
364
+ assert.isNull(blocks.C.getParent());
365
+ }
366
+
367
+ suite('Row', function () {
368
+ setup(function () {
369
+ this.blocks = createTestBlocks(this.workspace, true);
370
+ });
371
+
372
+ test("Don't heal", function () {
373
+ this.blocks.B.dispose(false);
374
+ assertDisposedNoheal(this.blocks);
375
+ });
376
+
377
+ test('Heal', function () {
378
+ this.blocks.B.dispose(true);
379
+ // Each block has only one input, and the types work.
380
+ assertDisposedHealed(this.blocks);
381
+ });
382
+
383
+ test('Heal with bad checks', function () {
384
+ const blocks = this.blocks;
385
+
386
+ // A and C can't connect, but both can connect to B.
387
+ blocks.A.inputList[0].connection.setCheck('type1');
388
+ blocks.C.outputConnection.setCheck('type2');
389
+
390
+ // Each block has only one input, but the types don't work.
391
+ blocks.B.dispose(true);
392
+ assertDisposedHealFailed(blocks);
393
+ });
394
+
395
+ test('Parent has multiple inputs', function () {
396
+ const blocks = this.blocks;
397
+ // Add extra input to parent
398
+ blocks.A.appendValueInput('INPUT').setCheck(null);
399
+ blocks.B.dispose(true);
400
+ assertDisposedHealed(blocks);
401
+ });
402
+
403
+ test('Middle has multiple inputs', function () {
404
+ const blocks = this.blocks;
405
+ // Add extra input to middle block
406
+ blocks.B.appendValueInput('INPUT').setCheck(null);
407
+ blocks.B.dispose(true);
408
+ assertDisposedHealed(blocks);
409
+ });
410
+
411
+ test('Child has multiple inputs', function () {
412
+ const blocks = this.blocks;
413
+ // Add extra input to child block
414
+ blocks.C.appendValueInput('INPUT').setCheck(null);
415
+ // Child block input count doesn't matter.
416
+ blocks.B.dispose(true);
417
+ assertDisposedHealed(blocks);
418
+ });
419
+
420
+ test('Child is shadow', function () {
421
+ const blocks = this.blocks;
422
+ blocks.C.dispose();
423
+ blocks.B.inputList[0].connection.setShadowState({
424
+ 'type': 'row_block',
425
+ 'id': 'c',
426
+ });
427
+
428
+ blocks.B.dispose(true);
429
+
430
+ // Even though we're asking to heal, it will appear as if it has not
431
+ // healed because shadows always get destroyed.
432
+ assertDisposedNoheal(blocks);
433
+ });
434
+ });
435
+
436
+ suite('Stack', function () {
437
+ setup(function () {
438
+ this.blocks = createTestBlocks(this.workspace, false);
439
+ });
440
+
441
+ test("Don't heal", function () {
442
+ this.blocks.B.dispose();
443
+ assertDisposedNoheal(this.blocks);
444
+ });
445
+
446
+ test('Heal', function () {
447
+ this.blocks.B.dispose(true);
448
+ assertDisposedHealed(this.blocks);
449
+ });
450
+
451
+ test('Heal with bad checks', function () {
452
+ const blocks = this.blocks;
453
+ // A and C can't connect, but both can connect to B.
454
+ blocks.A.nextConnection.setCheck('type1');
455
+ blocks.C.previousConnection.setCheck('type2');
456
+
457
+ // The types don't work.
458
+ blocks.B.dispose(true);
459
+
460
+ assertDisposedHealFailed(blocks);
461
+ });
462
+
463
+ test('Child is shadow', function () {
464
+ const blocks = this.blocks;
465
+ blocks.C.dispose();
466
+ blocks.B.nextConnection.setShadowState({
467
+ 'type': 'stack_block',
468
+ 'id': 'c',
469
+ });
470
+
471
+ blocks.B.dispose(true);
472
+
473
+ // Even though we're asking to heal, it will appear as if it has not
474
+ // healed because shadows always get destroyed.
475
+ assertDisposedNoheal(blocks);
476
+ });
477
+ });
478
+ });
479
+
480
+ suite('Disposing selected shadow block', function () {
481
+ setup(function () {
482
+ this.workspace = Blockly.inject('blocklyDiv');
483
+ this.parentBlock = this.workspace.newBlock('row_block');
484
+ this.parentBlock.initSvg();
485
+ this.parentBlock.render();
486
+ this.parentBlock.inputList[0].connection.setShadowState({
487
+ 'type': 'row_block',
488
+ 'id': 'shadow_child',
489
+ });
490
+ this.shadowChild =
491
+ this.parentBlock.inputList[0].connection.targetConnection.getSourceBlock();
492
+ });
493
+
494
+ teardown(function () {
495
+ workspaceTeardown.call(this, this.workspace);
496
+ });
497
+ });
498
+ });
499
+
500
+ suite('Remove Input', function () {
501
+ setup(function () {
502
+ Blockly.defineBlocksWithJsonArray([
503
+ {
504
+ 'type': 'value_block',
505
+ 'message0': '%1',
506
+ 'args0': [
507
+ {
508
+ 'type': 'input_value',
509
+ 'name': 'VALUE',
510
+ },
511
+ ],
512
+ },
513
+ ]);
514
+ });
515
+
516
+ suite('Value', function () {
517
+ setup(function () {
518
+ this.blockA = this.workspace.newBlock('value_block');
519
+ });
520
+
521
+ test('No Connected', function () {
522
+ this.blockA.removeInput('VALUE');
523
+ assert.isNull(this.blockA.getInput('VALUE'));
524
+ });
525
+ test('Block Connected', function () {
526
+ const blockB = this.workspace.newBlock('row_block');
527
+ this.blockA
528
+ .getInput('VALUE')
529
+ .connection.connect(blockB.outputConnection);
530
+
531
+ this.blockA.removeInput('VALUE');
532
+ assert.isFalse(blockB.disposed);
533
+ assert.equal(this.blockA.getChildren().length, 0);
534
+ });
535
+ test('Shadow Connected', function () {
536
+ const blockB = this.workspace.newBlock('row_block');
537
+ blockB.setShadow(true);
538
+ this.blockA
539
+ .getInput('VALUE')
540
+ .connection.connect(blockB.outputConnection);
541
+
542
+ this.blockA.removeInput('VALUE');
543
+ assert.isTrue(blockB.disposed);
544
+ assert.equal(this.blockA.getChildren().length, 0);
545
+ });
546
+ });
547
+ suite('Statement', function () {
548
+ setup(function () {
549
+ this.blockA = this.workspace.newBlock('statement_block');
550
+ });
551
+
552
+ test('No Connected', function () {
553
+ this.blockA.removeInput('STATEMENT');
554
+ assert.isNull(this.blockA.getInput('STATEMENT'));
555
+ });
556
+ test('Block Connected', function () {
557
+ const blockB = this.workspace.newBlock('stack_block');
558
+ this.blockA
559
+ .getInput('STATEMENT')
560
+ .connection.connect(blockB.previousConnection);
561
+
562
+ this.blockA.removeInput('STATEMENT');
563
+ assert.isFalse(blockB.disposed);
564
+ assert.equal(this.blockA.getChildren().length, 0);
565
+ });
566
+ test('Shadow Connected', function () {
567
+ const blockB = this.workspace.newBlock('stack_block');
568
+ blockB.setShadow(true);
569
+ this.blockA
570
+ .getInput('STATEMENT')
571
+ .connection.connect(blockB.previousConnection);
572
+
573
+ this.blockA.removeInput('STATEMENT');
574
+ assert.isTrue(blockB.disposed);
575
+ assert.equal(this.blockA.getChildren().length, 0);
576
+ });
577
+ });
578
+ });
579
+
580
+ suite('Connection Tracking', function () {
581
+ setup(function () {
582
+ this.workspace = Blockly.inject('blocklyDiv');
583
+
584
+ this.getInputs = function () {
585
+ return this.workspace.connectionDBList[ConnectionType.INPUT_VALUE]
586
+ .connections;
587
+ };
588
+ this.getOutputs = function () {
589
+ return this.workspace.connectionDBList[ConnectionType.OUTPUT_VALUE]
590
+ .connections;
591
+ };
592
+ this.getNext = function () {
593
+ return this.workspace.connectionDBList[ConnectionType.NEXT_STATEMENT]
594
+ .connections;
595
+ };
596
+ this.getPrevious = function () {
597
+ return this.workspace.connectionDBList[
598
+ ConnectionType.PREVIOUS_STATEMENT
599
+ ].connections;
600
+ };
601
+
602
+ this.assertConnectionsEmpty = function () {
603
+ assert.isEmpty(this.getInputs());
604
+ assert.isEmpty(this.getOutputs());
605
+ assert.isEmpty(this.getNext());
606
+ assert.isEmpty(this.getPrevious());
607
+ };
608
+ });
609
+ teardown(function () {
610
+ workspaceTeardown.call(this, this.workspace);
611
+ });
612
+
613
+ suite('Deserialization', function () {
614
+ setup(function () {
615
+ this.deserializationHelper = function (text) {
616
+ const dom = Blockly.utils.xml.textToDom(text);
617
+ Blockly.Xml.appendDomToWorkspace(dom, this.workspace);
618
+ this.assertConnectionsEmpty();
619
+ this.clock.runAll();
620
+ };
621
+ });
622
+ test('Stack', function () {
623
+ this.deserializationHelper(
624
+ '<xml>' + ' <block type="stack_block"/>' + '</xml>',
625
+ );
626
+ assert.equal(this.getPrevious().length, 1);
627
+ assert.equal(this.getNext().length, 1);
628
+ });
629
+ test('Multi-Stack', function () {
630
+ this.deserializationHelper(
631
+ '<xml>' +
632
+ ' <block type="stack_block">' +
633
+ ' <next>' +
634
+ ' <block type="stack_block">' +
635
+ ' <next>' +
636
+ ' <block type="stack_block"/>' +
637
+ ' </next>' +
638
+ ' </block>' +
639
+ ' </next>' +
640
+ ' </block>' +
641
+ '</xml>',
642
+ );
643
+ assert.equal(this.getPrevious().length, 3);
644
+ assert.equal(this.getNext().length, 3);
645
+ });
646
+ test('Collapsed Stack', function () {
647
+ this.deserializationHelper(
648
+ '<xml>' + ' <block type="stack_block" collapsed="true"/>' + '</xml>',
649
+ );
650
+ assert.equal(this.getPrevious().length, 1);
651
+ assert.equal(this.getNext().length, 1);
652
+ });
653
+ test('Collapsed Multi-Stack', function () {
654
+ this.deserializationHelper(
655
+ '<xml>' +
656
+ ' <block type="stack_block" collapsed="true">' +
657
+ ' <next>' +
658
+ ' <block type="stack_block" collapsed="true">' +
659
+ ' <next>' +
660
+ ' <block type="stack_block" collapsed="true"/>' +
661
+ ' </next>' +
662
+ ' </block>' +
663
+ ' </next>' +
664
+ ' </block>' +
665
+ '</xml>',
666
+ );
667
+ assert.equal(this.getPrevious().length, 3);
668
+ assert.equal(this.getNext().length, 3);
669
+ });
670
+ test('Row', function () {
671
+ this.deserializationHelper(
672
+ '<xml>' + ' <block type="row_block"/>' + '</xml>',
673
+ );
674
+ assert.equal(this.getOutputs().length, 1);
675
+ assert.equal(this.getInputs().length, 1);
676
+ });
677
+ test('Multi-Row', function () {
678
+ this.deserializationHelper(
679
+ '<xml>' +
680
+ ' <block type="row_block">' +
681
+ ' <value name="INPUT">' +
682
+ ' <block type="row_block">' +
683
+ ' <value name="INPUT">' +
684
+ ' <block type="row_block"/>' +
685
+ ' </value>' +
686
+ ' </block>' +
687
+ ' </value>' +
688
+ ' </block>' +
689
+ '</xml>',
690
+ );
691
+ assert.equal(this.getOutputs().length, 3);
692
+ assert.equal(this.getInputs().length, 3);
693
+ });
694
+ test('Collapsed Row', function () {
695
+ this.deserializationHelper(
696
+ '<xml>' + ' <block type="row_block" collapsed="true"/>' + '</xml>',
697
+ );
698
+ assert.equal(this.getOutputs().length, 1);
699
+ assert.equal(this.getInputs().length, 0);
700
+ });
701
+ test('Collapsed Multi-Row', function () {
702
+ this.deserializationHelper(
703
+ '<xml>' +
704
+ ' <block type="row_block" collapsed="true">' +
705
+ ' <value name="INPUT">' +
706
+ ' <block type="row_block">' +
707
+ ' <value name="INPUT">' +
708
+ ' <block type="row_block"/>' +
709
+ ' </value>' +
710
+ ' </block>' +
711
+ ' </value>' +
712
+ ' </block>' +
713
+ '</xml>',
714
+ );
715
+ assert.equal(this.getOutputs().length, 1);
716
+ assert.equal(this.getInputs().length, 0);
717
+ });
718
+ test('Collapsed Multi-Row Middle', function () {
719
+ Blockly.Xml.appendDomToWorkspace(
720
+ Blockly.utils.xml.textToDom(
721
+ '<xml>' +
722
+ ' <block type="row_block">' +
723
+ ' <value name="INPUT">' +
724
+ ' <block type="row_block" collapsed="true">' +
725
+ ' <value name="INPUT">' +
726
+ ' <block type="row_block"/>' +
727
+ ' </value>' +
728
+ ' </block>' +
729
+ ' </value>' +
730
+ ' </block>' +
731
+ '</xml>',
732
+ ),
733
+ this.workspace,
734
+ );
735
+ this.assertConnectionsEmpty();
736
+ this.clock.runAll();
737
+ assert.equal(this.getOutputs().length, 2);
738
+ assert.equal(this.getInputs().length, 1);
739
+ });
740
+ test('Statement', function () {
741
+ this.deserializationHelper(
742
+ '<xml>' + ' <block type="statement_block"/>' + '</xml>',
743
+ );
744
+ assert.equal(this.getPrevious().length, 1);
745
+ assert.equal(this.getNext().length, 2);
746
+ });
747
+ test('Multi-Statement', function () {
748
+ this.deserializationHelper(
749
+ '<xml>' +
750
+ ' <block type="statement_block">' +
751
+ ' <statement name="STATEMENT">' +
752
+ ' <block type="statement_block">' +
753
+ ' <statement name="STATEMENT">' +
754
+ ' <block type="statement_block"/>' +
755
+ ' </statement>' +
756
+ ' </block>' +
757
+ ' </statement>' +
758
+ ' </block>' +
759
+ '</xml>',
760
+ );
761
+ assert.equal(this.getPrevious().length, 3);
762
+ assert.equal(this.getNext().length, 6);
763
+ });
764
+ test('Collapsed Statement', function () {
765
+ this.deserializationHelper(
766
+ '<xml>' +
767
+ ' <block type="statement_block" collapsed="true"/>' +
768
+ '</xml>',
769
+ );
770
+ assert.equal(this.getPrevious().length, 1);
771
+ assert.equal(this.getNext().length, 1);
772
+ });
773
+ test('Collapsed Multi-Statement', function () {
774
+ this.deserializationHelper(
775
+ '<xml>' +
776
+ ' <block type="statement_block" collapsed="true">' +
777
+ ' <statement name="STATEMENT">' +
778
+ ' <block type="statement_block">' +
779
+ ' <statement name="STATEMENT">' +
780
+ ' <block type="statement_block"/>' +
781
+ ' </statement>' +
782
+ ' </block>' +
783
+ ' </statement>' +
784
+ ' </block>' +
785
+ '</xml>',
786
+ );
787
+ assert.equal(this.getPrevious().length, 1);
788
+ assert.equal(this.getNext().length, 1);
789
+ });
790
+ test('Collapsed Multi-Statement Middle', function () {
791
+ this.deserializationHelper(
792
+ '<xml>' +
793
+ ' <block type="statement_block">' +
794
+ ' <statement name="STATEMENT">' +
795
+ ' <block type="statement_block" collapsed="true">' +
796
+ ' <statement name="STATEMENT">' +
797
+ ' <block type="statement_block"/>' +
798
+ ' </statement>' +
799
+ ' </block>' +
800
+ ' </statement>' +
801
+ ' </block>' +
802
+ '</xml>',
803
+ );
804
+ assert.equal(this.getPrevious().length, 2);
805
+ assert.equal(this.getNext().length, 3);
806
+ });
807
+ });
808
+ suite('Programmatic Block Creation', function () {
809
+ test('Stack', function () {
810
+ const block = this.workspace.newBlock('stack_block');
811
+ this.assertConnectionsEmpty();
812
+ block.initSvg();
813
+ block.render();
814
+
815
+ assert.equal(this.getPrevious().length, 1);
816
+ assert.equal(this.getNext().length, 1);
817
+ });
818
+ test('Row', function () {
819
+ const block = this.workspace.newBlock('row_block');
820
+ this.assertConnectionsEmpty();
821
+ block.initSvg();
822
+ block.render();
823
+
824
+ assert.equal(this.getOutputs().length, 1);
825
+ assert.equal(this.getInputs().length, 1);
826
+ });
827
+ test('Statement', function () {
828
+ const block = this.workspace.newBlock('statement_block');
829
+ this.assertConnectionsEmpty();
830
+ block.initSvg();
831
+ block.render();
832
+
833
+ assert.equal(this.getPrevious().length, 1);
834
+ assert.equal(this.getNext().length, 2);
835
+ });
836
+ });
837
+ suite('setCollapsed', function () {
838
+ test('Stack', function () {
839
+ const block = Blockly.Xml.domToBlock(
840
+ Blockly.utils.xml.textToDom('<block type="stack_block"/>'),
841
+ this.workspace,
842
+ );
843
+ this.clock.runAll();
844
+ assert.equal(this.getPrevious().length, 1);
845
+ assert.equal(this.getNext().length, 1);
846
+
847
+ block.setCollapsed(true);
848
+ assert.equal(this.getPrevious().length, 1);
849
+ assert.equal(this.getNext().length, 1);
850
+
851
+ block.setCollapsed(false);
852
+ assert.equal(this.getPrevious().length, 1);
853
+ assert.equal(this.getNext().length, 1);
854
+ });
855
+ test('Multi-Stack', function () {
856
+ const block = Blockly.Xml.domToBlock(
857
+ Blockly.utils.xml.textToDom(
858
+ '<block type="stack_block">' +
859
+ ' <next>' +
860
+ ' <block type="stack_block">' +
861
+ ' <next>' +
862
+ ' <block type="stack_block"/>' +
863
+ ' </next>' +
864
+ ' </block>' +
865
+ ' </next>' +
866
+ '</block>',
867
+ ),
868
+ this.workspace,
869
+ );
870
+ this.assertConnectionsEmpty();
871
+ this.clock.runAll();
872
+ assert.equal(this.getPrevious().length, 3);
873
+ assert.equal(this.getNext().length, 3);
874
+
875
+ block.setCollapsed(true);
876
+ assert.equal(this.getPrevious().length, 3);
877
+ assert.equal(this.getNext().length, 3);
878
+
879
+ block.setCollapsed(false);
880
+ assert.equal(this.getPrevious().length, 3);
881
+ assert.equal(this.getNext().length, 3);
882
+ });
883
+ test('Row', function () {
884
+ const block = Blockly.Xml.domToBlock(
885
+ Blockly.utils.xml.textToDom('<block type="row_block"/>'),
886
+ this.workspace,
887
+ );
888
+ this.clock.runAll();
889
+ assert.equal(this.getOutputs().length, 1);
890
+ assert.equal(this.getInputs().length, 1);
891
+
892
+ block.setCollapsed(true);
893
+ assert.equal(this.getOutputs().length, 1);
894
+ assert.equal(this.getInputs().length, 0);
895
+
896
+ block.setCollapsed(false);
897
+ assert.equal(this.getOutputs().length, 1);
898
+ assert.equal(this.getInputs().length, 1);
899
+ });
900
+ test('Multi-Row', function () {
901
+ const block = Blockly.Xml.domToBlock(
902
+ Blockly.utils.xml.textToDom(
903
+ '<block type="row_block">' +
904
+ ' <value name="INPUT">' +
905
+ ' <block type="row_block">' +
906
+ ' <value name="INPUT">' +
907
+ ' <block type="row_block"/>' +
908
+ ' </value>' +
909
+ ' </block>' +
910
+ ' </value>' +
911
+ '</block>',
912
+ ),
913
+ this.workspace,
914
+ );
915
+ this.clock.runAll();
916
+ assert.equal(this.getOutputs().length, 3);
917
+ assert.equal(this.getInputs().length, 3);
918
+
919
+ block.setCollapsed(true);
920
+ assert.equal(this.getOutputs().length, 1);
921
+ assert.equal(this.getInputs().length, 0);
922
+
923
+ block.setCollapsed(false);
924
+ assert.equal(this.getOutputs().length, 3);
925
+ assert.equal(this.getInputs().length, 3);
926
+ });
927
+ test('Multi-Row Middle', function () {
928
+ let block = Blockly.Xml.domToBlock(
929
+ Blockly.utils.xml.textToDom(
930
+ '<block type="row_block">' +
931
+ ' <value name="INPUT">' +
932
+ ' <block type="row_block">' +
933
+ ' <value name="INPUT">' +
934
+ ' <block type="row_block"/>' +
935
+ ' </value>' +
936
+ ' </block>' +
937
+ ' </value>' +
938
+ '</block>',
939
+ ),
940
+ this.workspace,
941
+ );
942
+ this.clock.runAll();
943
+ assert.equal(this.getOutputs().length, 3);
944
+ assert.equal(this.getInputs().length, 3);
945
+
946
+ block = block.getInputTargetBlock('INPUT');
947
+ block.setCollapsed(true);
948
+ assert.equal(this.getOutputs().length, 2);
949
+ assert.equal(this.getInputs().length, 1);
950
+
951
+ block.setCollapsed(false);
952
+ assert.equal(this.getOutputs().length, 3);
953
+ assert.equal(this.getInputs().length, 3);
954
+ });
955
+ test('Multi-Row Double Collapse', function () {
956
+ // Collapse middle -> Collapse top ->
957
+ // Uncollapse top -> Uncollapse middle
958
+ const block = Blockly.Xml.domToBlock(
959
+ Blockly.utils.xml.textToDom(
960
+ '<block type="row_block">' +
961
+ ' <value name="INPUT">' +
962
+ ' <block type="row_block">' +
963
+ ' <value name="INPUT">' +
964
+ ' <block type="row_block"/>' +
965
+ ' </value>' +
966
+ ' </block>' +
967
+ ' </value>' +
968
+ '</block>',
969
+ ),
970
+ this.workspace,
971
+ );
972
+ this.clock.runAll();
973
+ assert.equal(this.getOutputs().length, 3);
974
+ assert.equal(this.getInputs().length, 3);
975
+
976
+ const middleBlock = block.getInputTargetBlock('INPUT');
977
+ middleBlock.setCollapsed(true);
978
+ assert.equal(this.getOutputs().length, 2);
979
+ assert.equal(this.getInputs().length, 1);
980
+
981
+ block.setCollapsed(true);
982
+ assert.equal(this.getOutputs().length, 1);
983
+ assert.equal(this.getInputs().length, 0);
984
+
985
+ block.setCollapsed(false);
986
+ assert.equal(this.getOutputs().length, 2);
987
+ assert.equal(this.getInputs().length, 1);
988
+
989
+ middleBlock.setCollapsed(false);
990
+ assert.equal(this.getOutputs().length, 3);
991
+ assert.equal(this.getInputs().length, 3);
992
+ });
993
+ test('Statement', function () {
994
+ const block = Blockly.Xml.domToBlock(
995
+ Blockly.utils.xml.textToDom('<block type="statement_block"/>'),
996
+ this.workspace,
997
+ );
998
+ this.clock.runAll();
999
+ assert.equal(this.getPrevious().length, 1);
1000
+ assert.equal(this.getNext().length, 2);
1001
+
1002
+ block.setCollapsed(true);
1003
+ assert.equal(this.getPrevious().length, 1);
1004
+ assert.equal(this.getNext().length, 1);
1005
+
1006
+ block.setCollapsed(false);
1007
+ assert.equal(this.getPrevious().length, 1);
1008
+ assert.equal(this.getNext().length, 2);
1009
+ });
1010
+ test('Multi-Statement', function () {
1011
+ const block = Blockly.Xml.domToBlock(
1012
+ Blockly.utils.xml.textToDom(
1013
+ '<block type="statement_block">' +
1014
+ ' <statement name="STATEMENT">' +
1015
+ ' <block type="statement_block">' +
1016
+ ' <statement name="STATEMENT">' +
1017
+ ' <block type="statement_block"/>' +
1018
+ ' </statement>' +
1019
+ ' </block>' +
1020
+ ' </statement>' +
1021
+ '</block>',
1022
+ ),
1023
+ this.workspace,
1024
+ );
1025
+ this.assertConnectionsEmpty();
1026
+ this.clock.runAll();
1027
+ assert.equal(this.getPrevious().length, 3);
1028
+ assert.equal(this.getNext().length, 6);
1029
+
1030
+ block.setCollapsed(true);
1031
+ assert.equal(this.getPrevious().length, 1);
1032
+ assert.equal(this.getNext().length, 1);
1033
+
1034
+ block.setCollapsed(false);
1035
+ assert.equal(this.getPrevious().length, 3);
1036
+ assert.equal(this.getNext().length, 6);
1037
+ });
1038
+ test('Multi-Statement Middle', function () {
1039
+ let block = Blockly.Xml.domToBlock(
1040
+ Blockly.utils.xml.textToDom(
1041
+ '<block type="statement_block">' +
1042
+ ' <statement name="STATEMENT">' +
1043
+ ' <block type="statement_block">' +
1044
+ ' <statement name="STATEMENT">' +
1045
+ ' <block type="statement_block"/>' +
1046
+ ' </statement>' +
1047
+ ' </block>' +
1048
+ ' </statement>' +
1049
+ '</block>',
1050
+ ),
1051
+ this.workspace,
1052
+ );
1053
+ this.assertConnectionsEmpty();
1054
+ this.clock.runAll();
1055
+ assert.equal(this.getPrevious().length, 3);
1056
+ assert.equal(this.getNext().length, 6);
1057
+
1058
+ block = block.getInputTargetBlock('STATEMENT');
1059
+ block.setCollapsed(true);
1060
+ assert.equal(this.getPrevious().length, 2);
1061
+ assert.equal(this.getNext().length, 3);
1062
+
1063
+ block.setCollapsed(false);
1064
+ assert.equal(this.getPrevious().length, 3);
1065
+ assert.equal(this.getNext().length, 6);
1066
+ });
1067
+ test('Multi-Statement Double Collapse', function () {
1068
+ const block = Blockly.Xml.domToBlock(
1069
+ Blockly.utils.xml.textToDom(
1070
+ '<block type="statement_block">' +
1071
+ ' <statement name="STATEMENT">' +
1072
+ ' <block type="statement_block">' +
1073
+ ' <statement name="STATEMENT">' +
1074
+ ' <block type="statement_block"/>' +
1075
+ ' </statement>' +
1076
+ ' </block>' +
1077
+ ' </statement>' +
1078
+ '</block>',
1079
+ ),
1080
+ this.workspace,
1081
+ );
1082
+ this.assertConnectionsEmpty();
1083
+ this.clock.runAll();
1084
+ assert.equal(this.getPrevious().length, 3);
1085
+ assert.equal(this.getNext().length, 6);
1086
+
1087
+ const middleBlock = block.getInputTargetBlock('STATEMENT');
1088
+ middleBlock.setCollapsed(true);
1089
+ assert.equal(this.getPrevious().length, 2);
1090
+ assert.equal(this.getNext().length, 3);
1091
+
1092
+ block.setCollapsed(true);
1093
+ assert.equal(this.getPrevious().length, 1);
1094
+ assert.equal(this.getNext().length, 1);
1095
+
1096
+ block.setCollapsed(false);
1097
+ assert.equal(this.getPrevious().length, 2);
1098
+ assert.equal(this.getNext().length, 3);
1099
+
1100
+ middleBlock.setCollapsed(false);
1101
+ assert.equal(this.getPrevious().length, 3);
1102
+ assert.equal(this.getNext().length, 6);
1103
+ });
1104
+ });
1105
+ suite('Setting Parent Block', function () {
1106
+ setup(function () {
1107
+ this.printBlock = Blockly.Xml.domToBlock(
1108
+ Blockly.utils.xml.textToDom(
1109
+ '<block type="text_print">' +
1110
+ ' <value name="TEXT">' +
1111
+ ' <block type="text_join">' +
1112
+ ' <mutation items="2"></mutation>' +
1113
+ ' <value name="ADD0">' +
1114
+ ' <block type="text">' +
1115
+ ' </block>' +
1116
+ ' </value>' +
1117
+ ' </block>' +
1118
+ ' </value>' +
1119
+ '</block>',
1120
+ ),
1121
+ this.workspace,
1122
+ );
1123
+ this.textJoinBlock = this.printBlock.getInputTargetBlock('TEXT');
1124
+ this.textBlock = this.textJoinBlock.getInputTargetBlock('ADD0');
1125
+ this.extraTopBlock = Blockly.Xml.domToBlock(
1126
+ Blockly.utils.xml.textToDom(`
1127
+ <block type="text_print">
1128
+ <value name="TEXT">
1129
+ <block type="text">
1130
+ <field name="TEXT">drag me</field>
1131
+ </block>
1132
+ </value>
1133
+ </block>`),
1134
+ this.workspace,
1135
+ );
1136
+ this.extraNestedBlock = this.extraTopBlock.getInputTargetBlock('TEXT');
1137
+ });
1138
+
1139
+ function assertBlockIsOnlyChild(parent, child, inputName) {
1140
+ assert.equal(parent.getChildren().length, 1);
1141
+ assert.equal(parent.getInputTargetBlock(inputName), child);
1142
+ assert.equal(child.getParent(), parent);
1143
+ }
1144
+ function assertNonParentAndOrphan(nonParent, orphan, inputName) {
1145
+ assert.equal(nonParent.getChildren().length, 0);
1146
+ assert.isNull(nonParent.getInputTargetBlock('TEXT'));
1147
+ assert.isNull(orphan.getParent());
1148
+ assert.equal(
1149
+ orphan.getSvgRoot().parentElement,
1150
+ orphan.workspace.getCanvas(),
1151
+ );
1152
+ }
1153
+ function assertOriginalSetup() {
1154
+ assertBlockIsOnlyChild(this.printBlock, this.textJoinBlock, 'TEXT');
1155
+ assertBlockIsOnlyChild(this.textJoinBlock, this.textBlock, 'ADD0');
1156
+ }
1157
+
1158
+ test('Setting to connected parent', function () {
1159
+ assert.doesNotThrow(
1160
+ this.textJoinBlock.setParent.bind(
1161
+ this.textJoinBlock,
1162
+ this.printBlock,
1163
+ ),
1164
+ );
1165
+ assertOriginalSetup.call(this);
1166
+ });
1167
+ test('Setting to new parent after connecting to it', function () {
1168
+ this.textJoinBlock.outputConnection.disconnect();
1169
+ this.textBlock.outputConnection.connect(
1170
+ this.printBlock.getInput('TEXT').connection,
1171
+ );
1172
+ assert.doesNotThrow(
1173
+ this.textBlock.setParent.bind(this.textBlock, this.printBlock),
1174
+ );
1175
+ assertBlockIsOnlyChild(this.printBlock, this.textBlock, 'TEXT');
1176
+ });
1177
+ test('Setting to new parent while connected to other block', function () {
1178
+ // Setting to grandparent with no available input connection.
1179
+ assert.throws(
1180
+ this.textBlock.setParent.bind(this.textBlock, this.printBlock),
1181
+ );
1182
+ this.textJoinBlock.outputConnection.disconnect();
1183
+ // Setting to block with available input connection.
1184
+ assert.throws(
1185
+ this.textBlock.setParent.bind(this.textBlock, this.printBlock),
1186
+ );
1187
+ assertNonParentAndOrphan(this.printBlock, this.textJoinBlock, 'TEXT');
1188
+ assertBlockIsOnlyChild(this.textJoinBlock, this.textBlock, 'ADD0');
1189
+ });
1190
+ test('Setting to same parent after disconnecting from it', function () {
1191
+ this.textJoinBlock.outputConnection.disconnect();
1192
+ assert.throws(
1193
+ this.textJoinBlock.setParent.bind(
1194
+ this.textJoinBlock,
1195
+ this.printBlock,
1196
+ ),
1197
+ );
1198
+ assertNonParentAndOrphan(this.printBlock, this.textJoinBlock, 'TEXT');
1199
+ });
1200
+ test('Setting to new parent when orphan', function () {
1201
+ this.textBlock.outputConnection.disconnect();
1202
+ // When new parent has no available input connection.
1203
+ assert.throws(
1204
+ this.textBlock.setParent.bind(this.textBlock, this.printBlock),
1205
+ );
1206
+ this.textJoinBlock.outputConnection.disconnect();
1207
+ // When new parent has available input connection.
1208
+ assert.throws(
1209
+ this.textBlock.setParent.bind(this.textBlock, this.printBlock),
1210
+ );
1211
+
1212
+ assertNonParentAndOrphan(this.printBlock, this.textJoinBlock, 'TEXT');
1213
+ assertNonParentAndOrphan(this.printBlock, this.textBlock, 'TEXT');
1214
+ assertNonParentAndOrphan(this.textJoinBlock, this.textBlock, 'ADD0');
1215
+ });
1216
+ test('Setting parent to null after disconnecting', function () {
1217
+ this.textBlock.outputConnection.disconnect();
1218
+ assert.doesNotThrow(
1219
+ this.textBlock.setParent.bind(this.textBlock, null),
1220
+ );
1221
+ assertNonParentAndOrphan(this.textJoinBlock, this.textBlock, 'ADD0');
1222
+ });
1223
+ test('Setting parent to null with dragging block', function () {
1224
+ this.extraTopBlock.setDragging(true);
1225
+ this.textBlock.outputConnection.disconnect();
1226
+ assert.doesNotThrow(
1227
+ this.textBlock.setParent.bind(this.textBlock, null),
1228
+ );
1229
+ assertNonParentAndOrphan(this.textJoinBlock, this.textBlock, 'ADD0');
1230
+ assert.equal(
1231
+ this.textBlock.getSvgRoot().nextSibling,
1232
+ this.extraTopBlock.getSvgRoot(),
1233
+ );
1234
+ });
1235
+ test('Setting parent to null with non-top dragging block', function () {
1236
+ this.extraNestedBlock.setDragging(true);
1237
+ this.textBlock.outputConnection.disconnect();
1238
+ assert.doesNotThrow(
1239
+ this.textBlock.setParent.bind(this.textBlock, null),
1240
+ );
1241
+ assertNonParentAndOrphan(this.textJoinBlock, this.textBlock, 'ADD0');
1242
+ assert.equal(this.textBlock.getSvgRoot().nextSibling, null);
1243
+ });
1244
+ test('Setting parent to null without disconnecting', function () {
1245
+ assert.throws(this.textBlock.setParent.bind(this.textBlock, null));
1246
+ assertOriginalSetup.call(this);
1247
+ });
1248
+ });
1249
+ suite('Remove Connections Programmatically', function () {
1250
+ test('Output', function () {
1251
+ const block = createRenderedBlock(this.workspace, 'row_block');
1252
+
1253
+ block.setOutput(false);
1254
+
1255
+ assert.equal(this.getOutputs().length, 0);
1256
+ assert.equal(this.getInputs().length, 1);
1257
+ });
1258
+ test('Value', function () {
1259
+ const block = createRenderedBlock(this.workspace, 'row_block');
1260
+
1261
+ block.removeInput('INPUT');
1262
+
1263
+ assert.equal(this.getOutputs().length, 1);
1264
+ assert.equal(this.getInputs().length, 0);
1265
+ });
1266
+ test('Previous', function () {
1267
+ const block = createRenderedBlock(this.workspace, 'stack_block');
1268
+
1269
+ block.setPreviousStatement(false);
1270
+
1271
+ assert.equal(this.getPrevious().length, 0);
1272
+ assert.equal(this.getNext().length, 1);
1273
+ });
1274
+ test('Next', function () {
1275
+ const block = createRenderedBlock(this.workspace, 'stack_block');
1276
+
1277
+ block.setNextStatement(false);
1278
+
1279
+ assert.equal(this.getPrevious().length, 1);
1280
+ assert.equal(this.getNext().length, 0);
1281
+ });
1282
+ test('Statement', function () {
1283
+ const block = createRenderedBlock(this.workspace, 'statement_block');
1284
+
1285
+ block.removeInput('STATEMENT');
1286
+
1287
+ assert.equal(this.getPrevious().length, 1);
1288
+ assert.equal(this.getNext().length, 1);
1289
+ });
1290
+ });
1291
+ suite('Add Connections Programmatically', function () {
1292
+ test('Output', async function () {
1293
+ const block = createRenderedBlock(this.workspace, 'empty_block');
1294
+
1295
+ block.setOutput(true);
1296
+ this.clock.runAll();
1297
+
1298
+ this.clock.runAll();
1299
+ assert.equal(this.getOutputs().length, 1);
1300
+ });
1301
+ test('Value', function () {
1302
+ const block = createRenderedBlock(this.workspace, 'empty_block');
1303
+
1304
+ block.appendValueInput('INPUT');
1305
+
1306
+ this.clock.runAll();
1307
+ assert.equal(this.getInputs().length, 1);
1308
+ });
1309
+ test('Previous', function () {
1310
+ const block = createRenderedBlock(this.workspace, 'empty_block');
1311
+
1312
+ block.setPreviousStatement(true);
1313
+ this.clock.runAll();
1314
+
1315
+ this.clock.runAll();
1316
+ assert.equal(this.getPrevious().length, 1);
1317
+ });
1318
+ test('Next', function () {
1319
+ const block = createRenderedBlock(this.workspace, 'empty_block');
1320
+
1321
+ block.setNextStatement(true);
1322
+ this.clock.runAll();
1323
+
1324
+ this.clock.runAll();
1325
+ assert.equal(this.getNext().length, 1);
1326
+ });
1327
+ test('Statement', function () {
1328
+ const block = createRenderedBlock(this.workspace, 'empty_block');
1329
+
1330
+ block.appendStatementInput('STATEMENT');
1331
+
1332
+ this.clock.runAll();
1333
+ assert.equal(this.getNext().length, 1);
1334
+ });
1335
+ });
1336
+ });
1337
+
1338
+ suite('Comments', function () {
1339
+ suite('Set/Get Text', function () {
1340
+ function assertCommentEvent(eventSpy, oldValue, newValue) {
1341
+ const calls = eventSpy.getCalls();
1342
+ const event = calls[calls.length - 1].args[0];
1343
+ assert.equal(event.type, EventType.BLOCK_CHANGE);
1344
+ assert.equal(
1345
+ event.element,
1346
+ 'comment',
1347
+ 'Expected the element to be a comment',
1348
+ );
1349
+ assert.equal(
1350
+ event.oldValue,
1351
+ oldValue,
1352
+ 'Expected the old values to match',
1353
+ );
1354
+ assert.equal(
1355
+ event.newValue,
1356
+ newValue,
1357
+ 'Expected the new values to match',
1358
+ );
1359
+ }
1360
+ function assertNoCommentEvent(eventSpy) {
1361
+ const calls = eventSpy.getCalls();
1362
+ const event = calls[calls.length - 1].args[0];
1363
+ assert.notEqual(event.type, EventType.BLOCK_CHANGE);
1364
+ }
1365
+ setup(function () {
1366
+ this.eventsFireSpy = sinon.spy(eventUtils.TEST_ONLY, 'fireInternal');
1367
+ });
1368
+ teardown(function () {
1369
+ this.eventsFireSpy.restore();
1370
+ });
1371
+ suite('Headless', function () {
1372
+ setup(function () {
1373
+ this.block = Blockly.Xml.domToBlock(
1374
+ Blockly.utils.xml.textToDom('<block type="empty_block"/>'),
1375
+ this.workspace,
1376
+ );
1377
+ });
1378
+ test('Text', function () {
1379
+ this.block.setCommentText('test text');
1380
+ assert.equal(this.block.getCommentText(), 'test text');
1381
+ assertCommentEvent(this.eventsFireSpy, null, 'test text');
1382
+ });
1383
+ test('Text Empty', function () {
1384
+ this.block.setCommentText('');
1385
+ assert.equal(this.block.getCommentText(), '');
1386
+ assertCommentEvent(this.eventsFireSpy, null, '');
1387
+ });
1388
+ test('Text Null', function () {
1389
+ this.block.setCommentText(null);
1390
+ assert.isNull(this.block.getCommentText());
1391
+ assertNoCommentEvent(this.eventsFireSpy);
1392
+ });
1393
+ test('Text -> Null', function () {
1394
+ this.block.setCommentText('first text');
1395
+
1396
+ this.block.setCommentText(null);
1397
+ assert.isNull(this.block.getCommentText());
1398
+ assertCommentEvent(this.eventsFireSpy, 'first text', null);
1399
+ });
1400
+ });
1401
+ suite('Rendered', function () {
1402
+ setup(function () {
1403
+ this.workspace = Blockly.inject('blocklyDiv', {
1404
+ comments: true,
1405
+ scrollbars: true,
1406
+ });
1407
+ this.block = Blockly.Xml.domToBlock(
1408
+ Blockly.utils.xml.textToDom('<block type="empty_block"/>'),
1409
+ this.workspace,
1410
+ );
1411
+ });
1412
+ teardown(function () {
1413
+ workspaceTeardown.call(this, this.workspace);
1414
+ });
1415
+ test('Text', function () {
1416
+ this.block.setCommentText('test text');
1417
+ assert.equal(this.block.getCommentText(), 'test text');
1418
+ assertCommentEvent(this.eventsFireSpy, null, 'test text');
1419
+ });
1420
+ test('Text Empty', function () {
1421
+ this.block.setCommentText('');
1422
+ assert.equal(this.block.getCommentText(), '');
1423
+ assertCommentEvent(this.eventsFireSpy, null, '');
1424
+ });
1425
+ test('Text Null', function () {
1426
+ this.block.setCommentText(null);
1427
+ assert.isNull(this.block.getCommentText());
1428
+ assertNoCommentEvent(this.eventsFireSpy);
1429
+ });
1430
+ test('Text -> Null', function () {
1431
+ this.block.setCommentText('first text');
1432
+
1433
+ this.block.setCommentText(null);
1434
+ assert.isNull(this.block.getCommentText());
1435
+ assertCommentEvent(this.eventsFireSpy, 'first text', null);
1436
+ });
1437
+ test('Set While Visible - Editable', function () {
1438
+ this.block.setCommentText('test1');
1439
+ const icon = this.block.getIcon(Blockly.icons.CommentIcon.TYPE);
1440
+ icon.setBubbleVisible(true);
1441
+
1442
+ this.block.setCommentText('test2');
1443
+ assert.equal(this.block.getCommentText(), 'test2');
1444
+ assertCommentEvent(this.eventsFireSpy, 'test1', 'test2');
1445
+ });
1446
+ test('Set While Visible - NonEditable', function () {
1447
+ this.block.setCommentText('test1');
1448
+ // Restored up by call to sinon.restore() in sharedTestTeardown()
1449
+ sinon.stub(this.block, 'isEditable').returns(false);
1450
+ const icon = this.block.getIcon(Blockly.icons.CommentIcon.TYPE);
1451
+ icon.setBubbleVisible(true);
1452
+
1453
+ this.block.setCommentText('test2');
1454
+ assert.equal(this.block.getCommentText(), 'test2');
1455
+ assertCommentEvent(this.eventsFireSpy, 'test1', 'test2');
1456
+ });
1457
+ });
1458
+ });
1459
+
1460
+ suite('Constructing registered comment classes', function () {
1461
+ class MockComment extends MockBubbleIcon {
1462
+ getType() {
1463
+ return IconType.COMMENT;
1464
+ }
1465
+
1466
+ setText() {}
1467
+
1468
+ getText() {
1469
+ return '';
1470
+ }
1471
+
1472
+ setBubbleSize() {}
1473
+
1474
+ getBubbleSize() {
1475
+ return Size(0, 0);
1476
+ }
1477
+
1478
+ setBubbleLocation() {}
1479
+
1480
+ getBubbleLocation() {}
1481
+
1482
+ saveState() {
1483
+ return {};
1484
+ }
1485
+
1486
+ loadState() {}
1487
+ }
1488
+
1489
+ if (!isCommentIcon(new MockComment())) {
1490
+ throw new TypeError('MockComment not an ICommentIcon');
1491
+ }
1492
+
1493
+ setup(function () {
1494
+ this.workspace = Blockly.inject('blocklyDiv', {});
1495
+
1496
+ this.block = this.workspace.newBlock('stack_block');
1497
+ this.block.initSvg();
1498
+ this.block.render();
1499
+ });
1500
+
1501
+ teardown(function () {
1502
+ workspaceTeardown.call(this, this.workspace);
1503
+
1504
+ Blockly.icons.registry.unregister(
1505
+ Blockly.icons.IconType.COMMENT.toString(),
1506
+ );
1507
+ Blockly.icons.registry.register(
1508
+ Blockly.icons.IconType.COMMENT,
1509
+ Blockly.icons.CommentIcon,
1510
+ );
1511
+ });
1512
+
1513
+ test('setCommentText constructs the registered comment icon', function () {
1514
+ Blockly.icons.registry.unregister(
1515
+ Blockly.icons.IconType.COMMENT.toString(),
1516
+ );
1517
+ Blockly.icons.registry.register(
1518
+ Blockly.icons.IconType.COMMENT,
1519
+ MockComment,
1520
+ );
1521
+
1522
+ this.block.setCommentText('test text');
1523
+
1524
+ assert.instanceOf(
1525
+ this.block.getIcon(Blockly.icons.IconType.COMMENT),
1526
+ MockComment,
1527
+ );
1528
+ });
1529
+
1530
+ test('setCommentText throws if no icon is registered', function () {
1531
+ Blockly.icons.registry.unregister(
1532
+ Blockly.icons.IconType.COMMENT.toString(),
1533
+ );
1534
+
1535
+ assert.throws(() => {
1536
+ this.block.setCommentText('test text');
1537
+ }, 'No comment icon class is registered, so a comment cannot be set');
1538
+ });
1539
+
1540
+ test('setCommentText throws if the icon is not an ICommentIcon', function () {
1541
+ Blockly.icons.registry.unregister(
1542
+ Blockly.icons.IconType.COMMENT.toString(),
1543
+ );
1544
+ Blockly.icons.registry.register(
1545
+ Blockly.icons.IconType.COMMENT,
1546
+ MockIcon,
1547
+ );
1548
+
1549
+ assert.throws(() => {
1550
+ this.block.setCommentText('test text');
1551
+ }, 'The class registered as a comment icon does not conform to the ICommentIcon interface');
1552
+ });
1553
+ });
1554
+ });
1555
+
1556
+ suite('Getting/Setting Field (Values)', function () {
1557
+ setup(function () {
1558
+ this.workspace = Blockly.inject('blocklyDiv');
1559
+ this.block = Blockly.Xml.domToBlock(
1560
+ Blockly.utils.xml.textToDom(
1561
+ '<block type="text"><field name = "TEXT">test</field></block>',
1562
+ ),
1563
+ this.workspace,
1564
+ );
1565
+ });
1566
+
1567
+ teardown(function () {
1568
+ workspaceTeardown.call(this, this.workspace);
1569
+ });
1570
+
1571
+ test('Getting Field', function () {
1572
+ assert.instanceOf(this.block.getField('TEXT'), Blockly.Field);
1573
+ });
1574
+ test('Getting Field without Name', function () {
1575
+ assert.throws(this.block.getField.bind(this.block), TypeError);
1576
+ });
1577
+ test('Getting Value of Field without Name', function () {
1578
+ assert.throws(this.block.getFieldValue.bind(this.block), TypeError);
1579
+ });
1580
+ test('Getting Field with Wrong Type', function () {
1581
+ const testFunction = function () {
1582
+ return 'TEXT';
1583
+ };
1584
+ const inputs = [
1585
+ 1,
1586
+ null,
1587
+ testFunction,
1588
+ {toString: testFunction},
1589
+ ['TEXT'],
1590
+ ];
1591
+ for (let i = 0; i < inputs.length; i++) {
1592
+ assert.throws(
1593
+ this.block.getField.bind(this.block, inputs[i]),
1594
+ TypeError,
1595
+ );
1596
+ }
1597
+ });
1598
+ test('Getting Value of Field with Wrong Type', function () {
1599
+ const testFunction = function () {
1600
+ return 'TEXT';
1601
+ };
1602
+ const inputs = [
1603
+ 1,
1604
+ null,
1605
+ testFunction,
1606
+ {toString: testFunction},
1607
+ ['TEXT'],
1608
+ ];
1609
+ for (let i = 0; i < inputs.length; i++) {
1610
+ assert.throws(
1611
+ this.block.getFieldValue.bind(this.block, inputs[i]),
1612
+ TypeError,
1613
+ );
1614
+ }
1615
+ });
1616
+ test('Getting/Setting Field Value', function () {
1617
+ assert.equal(this.block.getFieldValue('TEXT'), 'test');
1618
+ this.block.setFieldValue('abc', 'TEXT');
1619
+ assert.equal(this.block.getFieldValue('TEXT'), 'abc');
1620
+ });
1621
+ test('Setting Field without Name', function () {
1622
+ assert.throws(this.block.setFieldValue.bind(this.block, 'test'));
1623
+ });
1624
+ test('Setting Field with Wrong Type', function () {
1625
+ const testFunction = function () {
1626
+ return 'TEXT';
1627
+ };
1628
+ const inputs = [
1629
+ 1,
1630
+ null,
1631
+ testFunction,
1632
+ {toString: testFunction},
1633
+ ['TEXT'],
1634
+ ];
1635
+ for (let i = 0; i < inputs.length; i++) {
1636
+ assert.throws(
1637
+ this.block.setFieldValue.bind(this.block, 'test', inputs[i]),
1638
+ TypeError,
1639
+ );
1640
+ }
1641
+ });
1642
+ });
1643
+
1644
+ suite('Icon management', function () {
1645
+ class MockIconA extends MockIcon {
1646
+ getType() {
1647
+ return new Blockly.icons.IconType('A');
1648
+ }
1649
+
1650
+ getWeight() {
1651
+ return 1;
1652
+ }
1653
+ }
1654
+
1655
+ class MockIconB extends MockIcon {
1656
+ getType() {
1657
+ return new Blockly.icons.IconType('B');
1658
+ }
1659
+
1660
+ getWeight() {
1661
+ return 2;
1662
+ }
1663
+ }
1664
+
1665
+ suite('Adding icons', function () {
1666
+ setup(function () {
1667
+ this.workspace = Blockly.inject('blocklyDiv', {});
1668
+
1669
+ this.block = this.workspace.newBlock('stack_block');
1670
+ this.block.initSvg();
1671
+ this.block.render();
1672
+ this.renderSpy = sinon.spy(this.block, 'queueRender');
1673
+ });
1674
+
1675
+ teardown(function () {
1676
+ this.renderSpy.restore();
1677
+ workspaceTeardown.call(this, this.workspace);
1678
+ });
1679
+
1680
+ test('icons get added to the block', function () {
1681
+ this.block.addIcon(new MockIconA());
1682
+ assert.isTrue(this.block.hasIcon('A'), 'Expected the icon to be added');
1683
+ });
1684
+
1685
+ test('adding two icons of the same type throws', function () {
1686
+ this.block.addIcon(new MockIconA());
1687
+ assert.throws(
1688
+ () => {
1689
+ this.block.addIcon(new MockIconA());
1690
+ },
1691
+ Blockly.icons.DuplicateIconType,
1692
+ '',
1693
+ 'Expected adding an icon of the same type to throw',
1694
+ );
1695
+ });
1696
+
1697
+ test('adding an icon triggers a render', function () {
1698
+ this.renderSpy.resetHistory();
1699
+ this.block.addIcon(new MockIconA());
1700
+ assert.isTrue(
1701
+ this.renderSpy.calledOnce,
1702
+ 'Expected adding an icon to trigger a render',
1703
+ );
1704
+ });
1705
+ });
1706
+
1707
+ suite('Removing icons', function () {
1708
+ setup(function () {
1709
+ this.workspace = Blockly.inject('blocklyDiv');
1710
+
1711
+ this.block = this.workspace.newBlock('stack_block');
1712
+ this.block.initSvg();
1713
+ this.block.render();
1714
+ this.renderSpy = sinon.spy(this.block, 'queueRender');
1715
+ });
1716
+
1717
+ teardown(function () {
1718
+ this.renderSpy.restore();
1719
+ workspaceTeardown.call(this, this.workspace);
1720
+ });
1721
+
1722
+ test('icons get removed from the block', function () {
1723
+ this.block.addIcon(new MockIconA());
1724
+ assert.isTrue(
1725
+ this.block.removeIcon(new Blockly.icons.IconType('A')),
1726
+ 'Expected removeIcon to return true',
1727
+ );
1728
+ assert.isFalse(
1729
+ this.block.hasIcon('A'),
1730
+ 'Expected the icon to be removed',
1731
+ );
1732
+ });
1733
+
1734
+ test('removing an icon that does not exist returns false', function () {
1735
+ assert.isFalse(
1736
+ this.block.removeIcon(new Blockly.icons.IconType('B')),
1737
+ 'Expected removeIcon to return false',
1738
+ );
1739
+ });
1740
+
1741
+ test('removing an icon triggers a render', function () {
1742
+ this.block.addIcon(new MockIconA());
1743
+ this.renderSpy.resetHistory();
1744
+ this.block.removeIcon(new Blockly.icons.IconType('A'));
1745
+ assert.isTrue(
1746
+ this.renderSpy.calledOnce,
1747
+ 'Expected removing an icon to trigger a render',
1748
+ );
1749
+ });
1750
+ });
1751
+
1752
+ suite('Getting icons', function () {
1753
+ setup(function () {
1754
+ this.block = this.workspace.newBlock('stack_block');
1755
+ });
1756
+
1757
+ test('all icons are returned from getIcons, in order of weight', function () {
1758
+ const iconA = new MockIconA();
1759
+ const iconB = new MockIconB();
1760
+ this.block.addIcon(iconB);
1761
+ this.block.addIcon(iconA);
1762
+ assert.sameOrderedMembers(
1763
+ this.block.getIcons(),
1764
+ [iconA, iconB],
1765
+ 'Expected getIcon to return both icons in order of weight',
1766
+ );
1767
+ });
1768
+
1769
+ test('if there are no icons, getIcons returns an empty array', function () {
1770
+ assert.isEmpty(
1771
+ this.block.getIcons(),
1772
+ 'Expected getIcons to return an empty array ' +
1773
+ 'for a block with no icons',
1774
+ );
1775
+ });
1776
+
1777
+ test('if there are no icons, getIcons returns an empty array', function () {
1778
+ assert.isEmpty(
1779
+ this.block.getIcons(),
1780
+ 'Expected getIcons to return an empty array ' +
1781
+ 'for a block with no icons',
1782
+ );
1783
+ });
1784
+
1785
+ test('specific icons are returned from getIcon', function () {
1786
+ const iconA = new MockIconA();
1787
+ const iconB = new MockIconB();
1788
+ this.block.addIcon(iconA);
1789
+ this.block.addIcon(iconB);
1790
+ assert.equal(
1791
+ this.block.getIcon('B'),
1792
+ iconB,
1793
+ 'Expected getIcon to return the icon with the given type',
1794
+ );
1795
+ });
1796
+
1797
+ test('if there is no matching icon, getIcon returns undefined', function () {
1798
+ this.block.addIcon(new MockIconA());
1799
+ assert.isUndefined(
1800
+ this.block.getIcon('B'),
1801
+ 'Expected getIcon to return null if there is no ' +
1802
+ 'icon with a matching type',
1803
+ );
1804
+ });
1805
+ });
1806
+
1807
+ suite('Warning icons', function () {
1808
+ setup(function () {
1809
+ this.workspace = Blockly.inject('blocklyDiv');
1810
+
1811
+ this.block = this.workspace.newBlock('stack_block');
1812
+ this.block.initSvg();
1813
+ this.block.render();
1814
+ });
1815
+
1816
+ teardown(function () {
1817
+ workspaceTeardown.call(this, this.workspace);
1818
+ });
1819
+
1820
+ test('Block with no warning text does not have warning icon', function () {
1821
+ const icon = this.block.getIcon(Blockly.icons.WarningIcon.TYPE);
1822
+
1823
+ assert.isUndefined(
1824
+ icon,
1825
+ 'Block with no warning should not have warning icon',
1826
+ );
1827
+ });
1828
+
1829
+ test('Set warning text creates new icon if none existed', function () {
1830
+ const text = 'Warning Text';
1831
+
1832
+ this.block.setWarningText(text);
1833
+
1834
+ const icon = this.block.getIcon(Blockly.icons.WarningIcon.TYPE);
1835
+ assert.equal(
1836
+ icon.getText(),
1837
+ text,
1838
+ 'Expected warning icon text to be set',
1839
+ );
1840
+ });
1841
+
1842
+ test('Set warning text adds text to existing icon if needed', function () {
1843
+ const text1 = 'Warning Text 1';
1844
+ const text2 = 'Warning Text 2';
1845
+
1846
+ this.block.setWarningText(text1, '1');
1847
+ this.block.setWarningText(text2, '2');
1848
+
1849
+ const icon = this.block.getIcon(Blockly.icons.WarningIcon.TYPE);
1850
+ assert.equal(icon.getText(), `${text1}\n${text2}`);
1851
+ });
1852
+
1853
+ test('Clearing all warning text deletes the warning icon', function () {
1854
+ const text = 'Warning Text';
1855
+ this.block.setWarningText(text);
1856
+
1857
+ this.block.setWarningText(null);
1858
+
1859
+ const icon = this.block.getIcon(Blockly.icons.WarningIcon.TYPE);
1860
+ assert.isUndefined(
1861
+ icon,
1862
+ 'Expected warning icon to be undefined after deleting all warning text',
1863
+ );
1864
+ });
1865
+
1866
+ test('Clearing specific warning does not delete the icon if other warnings present', function () {
1867
+ const text1 = 'Warning Text 1';
1868
+ const text2 = 'Warning Text 2';
1869
+
1870
+ this.block.setWarningText(text1, '1');
1871
+ this.block.setWarningText(text2, '2');
1872
+ this.block.setWarningText(null, '1');
1873
+
1874
+ const icon = this.block.getIcon(Blockly.icons.WarningIcon.TYPE);
1875
+ assert.equal(
1876
+ icon.getText(),
1877
+ text2,
1878
+ 'Expected first warning text to be deleted',
1879
+ );
1880
+ });
1881
+
1882
+ test('Clearing specific warning removes icon if it was only warning present', function () {
1883
+ const text1 = 'Warning Text 1';
1884
+ const text2 = 'Warning Text 2';
1885
+
1886
+ this.block.setWarningText(text1, '1');
1887
+ this.block.setWarningText(text2, '2');
1888
+ this.block.setWarningText(null, '1');
1889
+ this.block.setWarningText(null, '2');
1890
+
1891
+ const icon = this.block.getIcon(Blockly.icons.WarningIcon.TYPE);
1892
+ assert.isUndefined(
1893
+ icon,
1894
+ 'Expected warning icon to be deleted after all warning text is cleared',
1895
+ );
1896
+ });
1897
+ });
1898
+
1899
+ suite('Warning icons and collapsing', function () {
1900
+ setup(function () {
1901
+ this.workspace = Blockly.inject('blocklyDiv');
1902
+ this.parentBlock = Blockly.serialization.blocks.append(
1903
+ {
1904
+ 'type': 'statement_block',
1905
+ 'inputs': {
1906
+ 'STATEMENT': {
1907
+ 'block': {
1908
+ 'type': 'statement_block',
1909
+ },
1910
+ },
1911
+ },
1912
+ },
1913
+ this.workspace,
1914
+ );
1915
+ this.parentBlock.initSvg();
1916
+ this.parentBlock.render();
1917
+
1918
+ this.childBlock = this.parentBlock.getInputTargetBlock('STATEMENT');
1919
+ this.childBlock.initSvg();
1920
+ this.childBlock.render();
1921
+ });
1922
+
1923
+ teardown(function () {
1924
+ workspaceTeardown.call(this, this.workspace);
1925
+ });
1926
+
1927
+ test('Adding a warning to a child block does not affect the parent', function () {
1928
+ const text = 'Warning Text';
1929
+ this.childBlock.setWarningText(text);
1930
+ const icon = this.parentBlock.getIcon(Blockly.icons.WarningIcon.TYPE);
1931
+ assert.isUndefined(
1932
+ icon,
1933
+ "Setting a child block's warning should not add a warning to the parent",
1934
+ );
1935
+ });
1936
+
1937
+ test('Warnings are added and removed when collapsing a stack with warnings', function () {
1938
+ const text = 'Warning Text';
1939
+
1940
+ this.childBlock.setWarningText(text);
1941
+
1942
+ this.parentBlock.setCollapsed(true);
1943
+ let icon = this.parentBlock.getIcon(Blockly.icons.WarningIcon.TYPE);
1944
+ assert.exists(icon?.getText(), 'Expected warning icon text to be set');
1945
+
1946
+ this.parentBlock.setCollapsed(false);
1947
+ icon = this.parentBlock.getIcon(Blockly.icons.WarningIcon.TYPE);
1948
+ assert.isUndefined(
1949
+ icon,
1950
+ 'Warning should be removed from parent after expanding',
1951
+ );
1952
+ });
1953
+
1954
+ test('Collapsing a block should not inherit warnings from following siblings', function () {
1955
+ const nextBlock = createRenderedBlock(
1956
+ this.workspace,
1957
+ 'statement_block',
1958
+ );
1959
+ this.childBlock.nextConnection.connect(nextBlock.previousConnection);
1960
+ nextBlock.setWarningText('Warning Text');
1961
+
1962
+ this.childBlock.setCollapsed(true);
1963
+
1964
+ const icon = this.childBlock.getIcon(Blockly.icons.WarningIcon.TYPE);
1965
+ assert.isUndefined(
1966
+ icon,
1967
+ 'Collapsed block should not show warnings from following siblings',
1968
+ );
1969
+ });
1970
+ });
1971
+
1972
+ suite('Bubbles and collapsing', function () {
1973
+ setup(function () {
1974
+ this.workspace = Blockly.inject('blocklyDiv');
1975
+ });
1976
+
1977
+ teardown(function () {
1978
+ workspaceTeardown.call(this, this.workspace);
1979
+ });
1980
+
1981
+ test("Collapsing the block closes its contained children's bubbles", function () {
1982
+ const parentBlock = Blockly.serialization.blocks.append(
1983
+ {
1984
+ 'type': 'statement_block',
1985
+ 'inputs': {
1986
+ 'STATEMENT': {
1987
+ 'block': {
1988
+ 'type': 'statement_block',
1989
+ },
1990
+ },
1991
+ },
1992
+ },
1993
+ this.workspace,
1994
+ );
1995
+ const childBlock = parentBlock.getInputTargetBlock('STATEMENT');
1996
+ const icon = new MockBubbleIcon();
1997
+ childBlock.addIcon(icon);
1998
+ icon.setBubbleVisible(true);
1999
+
2000
+ parentBlock.setCollapsed(true);
2001
+
2002
+ assert.isFalse(
2003
+ icon.bubbleIsVisible(),
2004
+ "Expected collapsing the parent block to hide the child block's " +
2005
+ "icon's bubble",
2006
+ );
2007
+ });
2008
+
2009
+ test("Collapsing a block does not close its following childrens' bubbles", function () {
2010
+ const parentBlock = Blockly.serialization.blocks.append(
2011
+ {
2012
+ 'type': 'statement_block',
2013
+ 'next': {
2014
+ 'block': {
2015
+ 'type': 'statement_block',
2016
+ },
2017
+ },
2018
+ },
2019
+ this.workspace,
2020
+ );
2021
+ const nextBlock = parentBlock.getNextBlock();
2022
+ const icon = new MockBubbleIcon();
2023
+ nextBlock.addIcon(icon);
2024
+ icon.setBubbleVisible(true);
2025
+
2026
+ parentBlock.setCollapsed(true);
2027
+
2028
+ assert.isTrue(
2029
+ icon.bubbleIsVisible(),
2030
+ 'Expected collapsing the parent block to not hide the next ' +
2031
+ "block's bubble",
2032
+ );
2033
+ });
2034
+ });
2035
+ });
2036
+
2037
+ suite('Collapsing and Expanding', function () {
2038
+ function assertCollapsed(block, opt_string) {
2039
+ assert.isTrue(block.isCollapsed());
2040
+ for (let i = 0, input; (input = block.inputList[i]); i++) {
2041
+ if (input.name == Blockly.Block.COLLAPSED_INPUT_NAME) {
2042
+ continue;
2043
+ }
2044
+ assert.isFalse(input.isVisible());
2045
+ for (let j = 0, field; (field = input.fieldRow[j]); j++) {
2046
+ assert.isFalse(field.isVisible());
2047
+ }
2048
+ }
2049
+ const icons = block.getIcons();
2050
+ for (let i = 0, icon; (icon = icons[i]); i++) {
2051
+ assert.isFalse(icon.bubbleIsVisible());
2052
+ }
2053
+
2054
+ const input = block.getInput(Blockly.Block.COLLAPSED_INPUT_NAME);
2055
+ assert.isNotNull(input);
2056
+ assert.isTrue(input.isVisible());
2057
+ const field = block.getField(Blockly.Block.COLLAPSED_FIELD_NAME);
2058
+ assert.isNotNull(field);
2059
+ assert.isTrue(field.isVisible());
2060
+
2061
+ if (opt_string) {
2062
+ assert.equal(field.getText(), opt_string);
2063
+ }
2064
+ }
2065
+ function assertNotCollapsed(block) {
2066
+ assert.isFalse(block.isCollapsed());
2067
+ for (let i = 0, input; (input = block.inputList[i]); i++) {
2068
+ assert.isTrue(input.isVisible());
2069
+ for (let j = 0, field; (field = input.fieldRow[j]); j++) {
2070
+ assert.isTrue(field.isVisible());
2071
+ }
2072
+ }
2073
+
2074
+ const input = block.getInput(Blockly.Block.COLLAPSED_INPUT_NAME);
2075
+ assert.isNull(input);
2076
+ const field = block.getField(Blockly.Block.COLLAPSED_FIELD_NAME);
2077
+ assert.isNull(field);
2078
+ }
2079
+ function isBlockHidden(block) {
2080
+ let node = block.getSvgRoot();
2081
+ do {
2082
+ const visible = node.style.display != 'none';
2083
+ if (!visible) {
2084
+ return true;
2085
+ }
2086
+ node = node.parentNode;
2087
+ } while (node != document);
2088
+ return false;
2089
+ }
2090
+
2091
+ setup(function () {
2092
+ eventUtils.disable();
2093
+ // We need a visible workspace.
2094
+ this.workspace = Blockly.inject('blocklyDiv', {});
2095
+ Blockly.defineBlocksWithJsonArray([
2096
+ {
2097
+ 'type': 'variable_block',
2098
+ 'message0': '%1',
2099
+ 'args0': [
2100
+ {
2101
+ 'type': 'field_variable',
2102
+ 'name': 'NAME',
2103
+ 'variable': 'x',
2104
+ },
2105
+ ],
2106
+ },
2107
+ ]);
2108
+ this.variableMap = this.workspace.getVariableMap();
2109
+ });
2110
+ teardown(function () {
2111
+ eventUtils.enable();
2112
+ workspaceTeardown.call(this, this.workspace);
2113
+ });
2114
+ suite('Connecting and Disconnecting', function () {
2115
+ test('Connect Block to Next', function () {
2116
+ const blockA = createRenderedBlock(this.workspace, 'stack_block');
2117
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2118
+
2119
+ blockA.setCollapsed(true);
2120
+ assertCollapsed(blockA);
2121
+ blockA.nextConnection.connect(blockB.previousConnection);
2122
+ assertNotCollapsed(blockB);
2123
+ });
2124
+ test('Connect Block to Value Input', function () {
2125
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2126
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2127
+
2128
+ blockA.setCollapsed(true);
2129
+ assertCollapsed(blockA);
2130
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2131
+ assert.isTrue(isBlockHidden(blockB));
2132
+ blockA.setCollapsed(false);
2133
+ assertNotCollapsed(blockA);
2134
+ assert.isFalse(isBlockHidden(blockB));
2135
+ });
2136
+ test('Connect Block to Statement Input', function () {
2137
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2138
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2139
+
2140
+ blockA.setCollapsed(true);
2141
+ assertCollapsed(blockA);
2142
+ blockA
2143
+ .getInput('STATEMENT')
2144
+ .connection.connect(blockB.previousConnection);
2145
+ assert.isTrue(isBlockHidden(blockB));
2146
+ blockA.setCollapsed(false);
2147
+ assertNotCollapsed(blockA);
2148
+ assert.isFalse(isBlockHidden(blockB));
2149
+ });
2150
+ test('Connect Block to Child of Collapsed - Input', function () {
2151
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2152
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2153
+ const blockC = createRenderedBlock(this.workspace, 'row_block');
2154
+
2155
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2156
+ blockA.setCollapsed(true);
2157
+ assertCollapsed(blockA);
2158
+ assert.isTrue(isBlockHidden(blockB));
2159
+ blockB.getInput('INPUT').connection.connect(blockC.outputConnection);
2160
+ assert.isTrue(isBlockHidden(blockC));
2161
+
2162
+ blockA.setCollapsed(false);
2163
+ assertNotCollapsed(blockA);
2164
+ assert.isFalse(isBlockHidden(blockB));
2165
+ assert.isFalse(isBlockHidden(blockC));
2166
+ });
2167
+ test('Connect Block to Child of Collapsed - Next', function () {
2168
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2169
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2170
+ const blockC = createRenderedBlock(this.workspace, 'stack_block');
2171
+
2172
+ blockA
2173
+ .getInput('STATEMENT')
2174
+ .connection.connect(blockB.previousConnection);
2175
+ blockA.setCollapsed(true);
2176
+ assertCollapsed(blockA);
2177
+ assert.isTrue(isBlockHidden(blockB));
2178
+ blockB.nextConnection.connect(blockC.previousConnection);
2179
+ assert.isTrue(isBlockHidden(blockC));
2180
+
2181
+ blockA.setCollapsed(false);
2182
+ assertNotCollapsed(blockA);
2183
+ assert.isFalse(isBlockHidden(blockB));
2184
+ assert.isFalse(isBlockHidden(blockC));
2185
+ });
2186
+ test('Connect Block to Value Input Already Taken', function () {
2187
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2188
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2189
+ const blockC = createRenderedBlock(this.workspace, 'row_block');
2190
+
2191
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2192
+ blockA.setCollapsed(true);
2193
+ assertCollapsed(blockA);
2194
+ assert.isTrue(isBlockHidden(blockB));
2195
+ blockA.getInput('INPUT').connection.connect(blockC.outputConnection);
2196
+ assert.isTrue(isBlockHidden(blockC));
2197
+ // Still hidden after C is inserted between.
2198
+ assert.isTrue(isBlockHidden(blockB));
2199
+
2200
+ blockA.setCollapsed(false);
2201
+ assertNotCollapsed(blockA);
2202
+ assert.isFalse(isBlockHidden(blockB));
2203
+ assert.isFalse(isBlockHidden(blockC));
2204
+ });
2205
+ test('Connect Block to Statement Input Already Taken', function () {
2206
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2207
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2208
+ const blockC = createRenderedBlock(this.workspace, 'stack_block');
2209
+
2210
+ blockA
2211
+ .getInput('STATEMENT')
2212
+ .connection.connect(blockB.previousConnection);
2213
+ blockA.setCollapsed(true);
2214
+ assertCollapsed(blockA);
2215
+ assert.isTrue(isBlockHidden(blockB));
2216
+ blockA
2217
+ .getInput('STATEMENT')
2218
+ .connection.connect(blockC.previousConnection);
2219
+ assert.isTrue(isBlockHidden(blockC));
2220
+ // Still hidden after C is inserted between.
2221
+ assert.isTrue(isBlockHidden(blockB));
2222
+
2223
+ blockA.setCollapsed(false);
2224
+ assertNotCollapsed(blockA);
2225
+ assert.isFalse(isBlockHidden(blockB));
2226
+ assert.isFalse(isBlockHidden(blockC));
2227
+ });
2228
+ test('Connect Block with Child - Input', function () {
2229
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2230
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2231
+ const blockC = createRenderedBlock(this.workspace, 'row_block');
2232
+
2233
+ blockB.getInput('INPUT').connection.connect(blockC.outputConnection);
2234
+ blockA.setCollapsed(true);
2235
+ assertCollapsed(blockA);
2236
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2237
+ assert.isTrue(isBlockHidden(blockC));
2238
+ assert.isTrue(isBlockHidden(blockB));
2239
+
2240
+ blockA.setCollapsed(false);
2241
+ assertNotCollapsed(blockA);
2242
+ assert.isFalse(isBlockHidden(blockB));
2243
+ assert.isFalse(isBlockHidden(blockC));
2244
+ });
2245
+ test('Connect Block with Child - Statement', function () {
2246
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2247
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2248
+ const blockC = createRenderedBlock(this.workspace, 'stack_block');
2249
+
2250
+ blockB.nextConnection.connect(blockC.previousConnection);
2251
+ blockA.setCollapsed(true);
2252
+ assertCollapsed(blockA);
2253
+ blockA
2254
+ .getInput('STATEMENT')
2255
+ .connection.connect(blockB.previousConnection);
2256
+ assert.isTrue(isBlockHidden(blockC));
2257
+ assert.isTrue(isBlockHidden(blockB));
2258
+
2259
+ blockA.setCollapsed(false);
2260
+ assertNotCollapsed(blockA);
2261
+ assert.isFalse(isBlockHidden(blockB));
2262
+ assert.isFalse(isBlockHidden(blockC));
2263
+ });
2264
+ test('Disconnect Block from Value Input', function () {
2265
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2266
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2267
+
2268
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2269
+ blockA.setCollapsed(true);
2270
+ assertCollapsed(blockA);
2271
+ assert.isTrue(isBlockHidden(blockB));
2272
+ blockB.outputConnection.disconnect();
2273
+ assert.isFalse(isBlockHidden(blockB));
2274
+ });
2275
+ test('Disconnect Block from Statement Input', function () {
2276
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2277
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2278
+
2279
+ blockA
2280
+ .getInput('STATEMENT')
2281
+ .connection.connect(blockB.previousConnection);
2282
+ blockA.setCollapsed(true);
2283
+ assertCollapsed(blockA);
2284
+ assert.isTrue(isBlockHidden(blockB));
2285
+ blockB.previousConnection.disconnect();
2286
+ assert.isFalse(isBlockHidden(blockB));
2287
+ });
2288
+ test('Disconnect Block from Child of Collapsed - Input', function () {
2289
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2290
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2291
+ const blockC = createRenderedBlock(this.workspace, 'row_block');
2292
+
2293
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2294
+ blockB.getInput('INPUT').connection.connect(blockC.outputConnection);
2295
+ blockA.setCollapsed(true);
2296
+ assertCollapsed(blockA);
2297
+ assert.isTrue(isBlockHidden(blockB));
2298
+ assert.isTrue(isBlockHidden(blockC));
2299
+
2300
+ blockC.outputConnection.disconnect();
2301
+ assert.isFalse(isBlockHidden(blockC));
2302
+ });
2303
+ test('Disconnect Block from Child of Collapsed - Next', function () {
2304
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2305
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2306
+ const blockC = createRenderedBlock(this.workspace, 'stack_block');
2307
+
2308
+ blockA
2309
+ .getInput('STATEMENT')
2310
+ .connection.connect(blockB.previousConnection);
2311
+ blockB.nextConnection.connect(blockC.previousConnection);
2312
+ blockA.setCollapsed(true);
2313
+ assertCollapsed(blockA);
2314
+ assert.isTrue(isBlockHidden(blockB));
2315
+ assert.isTrue(isBlockHidden(blockC));
2316
+
2317
+ blockC.previousConnection.disconnect();
2318
+ assert.isFalse(isBlockHidden(blockC));
2319
+ });
2320
+ test('Disconnect Block with Child - Input', function () {
2321
+ const blockA = createRenderedBlock(this.workspace, 'row_block');
2322
+ const blockB = createRenderedBlock(this.workspace, 'row_block');
2323
+ const blockC = createRenderedBlock(this.workspace, 'row_block');
2324
+
2325
+ blockB.getInput('INPUT').connection.connect(blockC.outputConnection);
2326
+ blockA.getInput('INPUT').connection.connect(blockB.outputConnection);
2327
+ blockA.setCollapsed(true);
2328
+ assertCollapsed(blockA);
2329
+ assert.isTrue(isBlockHidden(blockB));
2330
+ assert.isTrue(isBlockHidden(blockC));
2331
+
2332
+ blockB.outputConnection.disconnect();
2333
+ assert.isFalse(isBlockHidden(blockB));
2334
+ assert.isFalse(isBlockHidden(blockC));
2335
+ });
2336
+ test('Disconnect Block with Child - Statement', function () {
2337
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2338
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2339
+ const blockC = createRenderedBlock(this.workspace, 'stack_block');
2340
+
2341
+ blockB.nextConnection.connect(blockC.previousConnection);
2342
+ blockA
2343
+ .getInput('STATEMENT')
2344
+ .connection.connect(blockB.previousConnection);
2345
+ blockA.setCollapsed(true);
2346
+ assertCollapsed(blockA);
2347
+ assert.isTrue(isBlockHidden(blockC));
2348
+ assert.isTrue(isBlockHidden(blockB));
2349
+
2350
+ blockB.previousConnection.disconnect();
2351
+ assert.isFalse(isBlockHidden(blockB));
2352
+ assert.isFalse(isBlockHidden(blockC));
2353
+ });
2354
+ });
2355
+ suite('Adding and Removing Block Parts', function () {
2356
+ test('Add Previous Connection', function () {
2357
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2358
+ blockA.setCollapsed(true);
2359
+ assertCollapsed(blockA);
2360
+ blockA.setPreviousStatement(true);
2361
+ assertCollapsed(blockA);
2362
+ assert.isNotNull(blockA.previousConnection);
2363
+ });
2364
+ test('Add Next Connection', function () {
2365
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2366
+ blockA.setCollapsed(true);
2367
+ assertCollapsed(blockA);
2368
+ blockA.setNextStatement(true);
2369
+ assertCollapsed(blockA);
2370
+ assert.isNotNull(blockA.nextConnection);
2371
+ });
2372
+ test('Add Input', function () {
2373
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2374
+ blockA.setCollapsed(true);
2375
+
2376
+ blockA.appendDummyInput('NAME');
2377
+
2378
+ this.clock.runAll();
2379
+ assertCollapsed(blockA);
2380
+ assert.isNotNull(blockA.getInput('NAME'));
2381
+ });
2382
+ test('Add Field', function () {
2383
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2384
+ const input = blockA.appendDummyInput('NAME');
2385
+ blockA.setCollapsed(true);
2386
+ assertCollapsed(blockA);
2387
+ input.appendField(new Blockly.FieldLabel('test'), 'FIELD');
2388
+ assertCollapsed(blockA);
2389
+ const field = blockA.getField('FIELD');
2390
+ assert.isNotNull(field);
2391
+ assert.equal(field.getText(), 'test');
2392
+ });
2393
+ test('Add Icon', function () {
2394
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2395
+ blockA.setCollapsed(true);
2396
+ assertCollapsed(blockA);
2397
+ blockA.setCommentText('test');
2398
+ assertCollapsed(blockA);
2399
+ });
2400
+ test('Remove Previous Connection', function () {
2401
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2402
+ blockA.setPreviousStatement(true);
2403
+ blockA.setCollapsed(true);
2404
+ assertCollapsed(blockA);
2405
+ blockA.setPreviousStatement(false);
2406
+ assertCollapsed(blockA);
2407
+ assert.isNull(blockA.previousConnection);
2408
+ });
2409
+ test('Remove Next Connection', function () {
2410
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2411
+ blockA.setNextStatement(true);
2412
+ blockA.setCollapsed(true);
2413
+ assertCollapsed(blockA);
2414
+ blockA.setNextStatement(false);
2415
+ assertCollapsed(blockA);
2416
+ assert.isNull(blockA.nextConnection);
2417
+ });
2418
+ test('Remove Input', function () {
2419
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2420
+ blockA.appendDummyInput('NAME');
2421
+ blockA.setCollapsed(true);
2422
+ assertCollapsed(blockA);
2423
+ blockA.removeInput('NAME');
2424
+ assertCollapsed(blockA);
2425
+ assert.isNull(blockA.getInput('NAME'));
2426
+ });
2427
+ test('Remove Field', function () {
2428
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2429
+ const input = blockA.appendDummyInput('NAME');
2430
+ input.appendField(new Blockly.FieldLabel('test'), 'FIELD');
2431
+ blockA.setCollapsed(true);
2432
+ assertCollapsed(blockA);
2433
+ input.removeField('FIELD');
2434
+ assertCollapsed(blockA);
2435
+ const field = blockA.getField('FIELD');
2436
+ assert.isNull(field);
2437
+ });
2438
+ test('Remove Icon', function () {
2439
+ const blockA = createRenderedBlock(this.workspace, 'empty_block');
2440
+ blockA.setCommentText('test');
2441
+ blockA.setCollapsed(true);
2442
+ assertCollapsed(blockA);
2443
+ blockA.setCommentText(null);
2444
+ assertCollapsed(blockA);
2445
+ });
2446
+ });
2447
+
2448
+ suite('Renaming Vars', function () {
2449
+ test('Simple Rename', function () {
2450
+ const blockA = createRenderedBlock(this.workspace, 'variable_block');
2451
+
2452
+ blockA.setCollapsed(true);
2453
+ const variable = this.workspace.getVariableMap().getVariable('x', '');
2454
+ this.variableMap.renameVariable(variable, 'y');
2455
+
2456
+ this.clock.runAll();
2457
+ assertCollapsed(blockA, 'y');
2458
+ });
2459
+ test('Coalesce, Different Case', function () {
2460
+ const blockA = createRenderedBlock(this.workspace, 'variable_block');
2461
+
2462
+ blockA.setCollapsed(true);
2463
+ const variable = this.variableMap.createVariable('y');
2464
+ this.variableMap.renameVariable(variable, 'X');
2465
+
2466
+ this.clock.runAll();
2467
+ assertCollapsed(blockA, 'X');
2468
+ });
2469
+ });
2470
+ suite('Disabled Blocks', function () {
2471
+ test('Children of Collapsed Blocks Should Enable Properly', function () {
2472
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2473
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2474
+ blockA
2475
+ .getInput('STATEMENT')
2476
+ .connection.connect(blockB.previousConnection);
2477
+ // Disable the block and collapse it.
2478
+ blockA.setDisabledReason(true, 'test reason');
2479
+ blockA.setCollapsed(true);
2480
+
2481
+ // Enable the block before expanding it.
2482
+ blockA.setDisabledReason(false, 'test reason');
2483
+ blockA.setCollapsed(false);
2484
+
2485
+ // The child blocks should be enabled.
2486
+ assert.isTrue(blockB.isEnabled());
2487
+ assert.isFalse(
2488
+ blockB.getSvgRoot().classList.contains('blocklyDisabled'),
2489
+ );
2490
+ });
2491
+ test('Disabled Children of Collapsed Blocks Should Stay Disabled', function () {
2492
+ const blockA = createRenderedBlock(this.workspace, 'statement_block');
2493
+ const blockB = createRenderedBlock(this.workspace, 'stack_block');
2494
+ blockA
2495
+ .getInput('STATEMENT')
2496
+ .connection.connect(blockB.previousConnection);
2497
+
2498
+ // Disable the child block.
2499
+ blockB.setDisabledReason(true, 'test reason');
2500
+
2501
+ // Collapse and disable the parent block.
2502
+ blockA.setCollapsed(false);
2503
+ blockA.setDisabledReason(true, 'test reason');
2504
+
2505
+ // Enable the parent block.
2506
+ blockA.setDisabledReason(false, 'test reason');
2507
+ blockA.setCollapsed(true);
2508
+
2509
+ // Child blocks should stay disabled if they have been set.
2510
+ assert.isFalse(blockB.isEnabled());
2511
+ });
2512
+ test('Disabled blocks from JSON should have proper disabled status', function () {
2513
+ // Nested c-shaped blocks, inner block is disabled
2514
+ const blockJson = {
2515
+ 'type': 'controls_if',
2516
+ 'inputs': {
2517
+ 'DO0': {
2518
+ 'block': {
2519
+ 'type': 'controls_if',
2520
+ 'enabled': false,
2521
+ },
2522
+ },
2523
+ },
2524
+ };
2525
+ Blockly.serialization.blocks.append(blockJson, this.workspace);
2526
+ const innerBlock = this.workspace
2527
+ .getTopBlocks(false)[0]
2528
+ .getChildren()[0];
2529
+ assert.isTrue(
2530
+ innerBlock.visuallyDisabled,
2531
+ 'block should have visuallyDisabled set because it is disabled',
2532
+ );
2533
+ assert.isFalse(
2534
+ innerBlock.isEnabled(),
2535
+ 'block should be marked disabled because enabled json property was set to false',
2536
+ );
2537
+ });
2538
+ test('Disabled blocks from XML should have proper disabled status', function () {
2539
+ // Nested c-shaped blocks, inner block is disabled
2540
+ const blockXml = `<xml xmlns="https://developers.google.com/blockly/xml">
2541
+ <block type="controls_if" x="63" y="87">
2542
+ <statement name="DO0">
2543
+ <block type="controls_if" disabled="true"></block>
2544
+ </statement>
2545
+ </block>
2546
+ </xml>`;
2547
+ Blockly.Xml.domToWorkspace(
2548
+ Blockly.utils.xml.textToDom(blockXml),
2549
+ this.workspace,
2550
+ );
2551
+ const innerBlock = this.workspace
2552
+ .getTopBlocks(false)[0]
2553
+ .getChildren()[0];
2554
+ assert.isTrue(
2555
+ innerBlock.visuallyDisabled,
2556
+ 'block should have visuallyDisabled set because it is disabled',
2557
+ );
2558
+ assert.isFalse(
2559
+ innerBlock.isEnabled(),
2560
+ 'block should be marked disabled because enabled xml property was set to false',
2561
+ );
2562
+ });
2563
+ suite('Disabling blocks with children and neighbors', function () {
2564
+ setup(function () {
2565
+ // c-shape block with a stack of 4 blocks in the input
2566
+ const blockJson = {
2567
+ 'type': 'controls_if',
2568
+ 'id': 'parent',
2569
+ 'inputs': {
2570
+ 'DO0': {
2571
+ 'block': {
2572
+ 'type': 'controls_repeat_ext',
2573
+ 'id': 'child1',
2574
+ 'next': {
2575
+ 'block': {
2576
+ 'type': 'controls_for',
2577
+ 'id': 'child2',
2578
+ 'enabled': false,
2579
+ 'next': {
2580
+ 'block': {
2581
+ 'type': 'controls_whileUntil',
2582
+ 'id': 'child3',
2583
+ 'next': {
2584
+ 'block': {
2585
+ 'type': 'controls_forEach',
2586
+ 'id': 'child4',
2587
+ },
2588
+ },
2589
+ },
2590
+ },
2591
+ },
2592
+ },
2593
+ },
2594
+ },
2595
+ },
2596
+ };
2597
+ Blockly.serialization.blocks.append(blockJson, this.workspace);
2598
+ this.parent = this.workspace.getBlockById('parent');
2599
+ this.child1 = this.workspace.getBlockById('child1');
2600
+ this.child2 = this.workspace.getBlockById('child2');
2601
+ this.child3 = this.workspace.getBlockById('child3');
2602
+ this.child4 = this.workspace.getBlockById('child4');
2603
+ });
2604
+ test('Disabling parent block visually disables all descendants', async function () {
2605
+ this.parent.setDisabledReason(true, 'test reason');
2606
+ await Blockly.renderManagement.finishQueuedRenders();
2607
+ for (const child of this.parent.getDescendants(false)) {
2608
+ assert.isTrue(
2609
+ child.visuallyDisabled,
2610
+ `block ${child.id} should be visually disabled`,
2611
+ );
2612
+ }
2613
+ });
2614
+ test('Child blocks regain original status after parent is re-enabled', async function () {
2615
+ this.parent.setDisabledReason(true, 'test reason');
2616
+ await Blockly.renderManagement.finishQueuedRenders();
2617
+ this.parent.setDisabledReason(false, 'test reason');
2618
+ await Blockly.renderManagement.finishQueuedRenders();
2619
+
2620
+ // child2 is disabled, rest should be enabled
2621
+ assert.isTrue(this.child1.isEnabled(), 'child1 should be enabled');
2622
+ assert.isFalse(
2623
+ this.child1.visuallyDisabled,
2624
+ 'child1 should not be visually disabled',
2625
+ );
2626
+
2627
+ assert.isFalse(this.child2.isEnabled(), 'child2 should be disabled');
2628
+ assert.isTrue(
2629
+ this.child2.visuallyDisabled,
2630
+ 'child2 should be visually disabled',
2631
+ );
2632
+
2633
+ assert.isTrue(this.child3.isEnabled(), 'child3 should be enabled');
2634
+ assert.isFalse(
2635
+ this.child3.visuallyDisabled,
2636
+ 'child3 should not be visually disabled',
2637
+ );
2638
+
2639
+ assert.isTrue(this.child4.isEnabled(), 'child34 should be enabled');
2640
+ assert.isFalse(
2641
+ this.child4.visuallyDisabled,
2642
+ 'child4 should not be visually disabled',
2643
+ );
2644
+ });
2645
+ });
2646
+ });
2647
+ });
2648
+
2649
+ suite('Style', function () {
2650
+ suite('Headless', function () {
2651
+ setup(function () {
2652
+ this.block = Blockly.Xml.domToBlock(
2653
+ Blockly.utils.xml.textToDom('<block type="empty_block"/>'),
2654
+ this.workspace,
2655
+ );
2656
+ });
2657
+ test('Set colour', function () {
2658
+ this.block.setColour('20');
2659
+ assert.equal(this.block.getColour(), '#a5745b');
2660
+ assert.equal(this.block.colour_, this.block.getColour());
2661
+ assert.equal(this.block.getHue(), '20');
2662
+ });
2663
+ test('Set style', function () {
2664
+ this.block.setStyle('styleOne');
2665
+ assert.equal(this.block.getStyleName(), 'styleOne');
2666
+ assert.isNull(this.block.getHue());
2667
+ // Calling setStyle does not update the colour on a headless block.
2668
+ assert.equal(this.block.getColour(), '#000000');
2669
+ });
2670
+ });
2671
+ suite('Rendered', function () {
2672
+ setup(function () {
2673
+ this.workspace = Blockly.inject('blocklyDiv', {});
2674
+ this.block = Blockly.Xml.domToBlock(
2675
+ Blockly.utils.xml.textToDom('<block type="empty_block"/>'),
2676
+ this.workspace,
2677
+ );
2678
+ this.workspace.setTheme(
2679
+ new Blockly.Theme('test', {
2680
+ 'styleOne': {
2681
+ 'colourPrimary': '#000000',
2682
+ 'colourSecondary': '#999999',
2683
+ 'colourTertiary': '#4d4d4d',
2684
+ 'hat': '',
2685
+ },
2686
+ }),
2687
+ {},
2688
+ );
2689
+ });
2690
+ teardown(function () {
2691
+ workspaceTeardown.call(this, this.workspace);
2692
+ // Clear all registered themes.
2693
+ Blockly.registry.TEST_ONLY.typeMap['theme'] = {};
2694
+ });
2695
+ test('Set colour hue', function () {
2696
+ this.block.setColour('20');
2697
+ assert.equal(this.block.getStyleName(), 'auto_#a5745b');
2698
+ assert.equal(this.block.getColour(), '#a5745b');
2699
+ assert.equal(this.block.colour_, this.block.getColour());
2700
+ assert.equal(this.block.getHue(), '20');
2701
+ });
2702
+ test('Set colour hex', function () {
2703
+ this.block.setColour('#000000');
2704
+ assert.equal(this.block.getStyleName(), 'auto_#000000');
2705
+ assert.equal(this.block.getColour(), '#000000');
2706
+ assert.equal(this.block.colour_, this.block.getColour());
2707
+ assert.isNull(this.block.getHue());
2708
+ });
2709
+ test('Set style', function () {
2710
+ this.block.setStyle('styleOne');
2711
+ assert.equal(this.block.getStyleName(), 'styleOne');
2712
+ assert.equal(this.block.getColour(), '#000000');
2713
+ assert.equal(this.block.colour_, this.block.getColour());
2714
+ });
2715
+ });
2716
+ });
2717
+
2718
+ suite('toString', function () {
2719
+ const toStringTests = [
2720
+ {
2721
+ name: 'statement block',
2722
+ xml:
2723
+ '<block type="controls_repeat_ext">' +
2724
+ '<value name="TIMES">' +
2725
+ '<shadow type="math_number">' +
2726
+ '<field name="NUM">10</field>' +
2727
+ '</shadow>' +
2728
+ '</value>' +
2729
+ '</block>',
2730
+ toString: 'repeat 10 times do ?',
2731
+ },
2732
+ {
2733
+ name: 'nested statement blocks',
2734
+ xml:
2735
+ '<block type="controls_repeat_ext">' +
2736
+ '<value name="TIMES">' +
2737
+ '<shadow type="math_number">' +
2738
+ '<field name="NUM">10</field>' +
2739
+ '</shadow>' +
2740
+ '</value>' +
2741
+ '<statement name="DO">' +
2742
+ '<block type="controls_if"></block>' +
2743
+ '</statement>' +
2744
+ '</block>',
2745
+ toString: 'repeat 10 times do if ? do ?',
2746
+ },
2747
+ {
2748
+ name: 'nested Boolean output blocks',
2749
+ xml:
2750
+ '<block type="controls_if">' +
2751
+ '<value name="IF0">' +
2752
+ '<block type="logic_compare">' +
2753
+ '<field name="OP">EQ</field>' +
2754
+ '<value name="A">' +
2755
+ '<block type="logic_operation">' +
2756
+ '<field name="OP">AND</field>' +
2757
+ '</block>' +
2758
+ '</value>' +
2759
+ '</block>' +
2760
+ '</value>' +
2761
+ '</block>',
2762
+ toString: 'if ((? and ?) = ?) do ?',
2763
+ },
2764
+ {
2765
+ name: 'output block',
2766
+ xml:
2767
+ '<block type="math_single">' +
2768
+ '<field name="OP">ROOT</field>' +
2769
+ '<value name="NUM">' +
2770
+ '<shadow type="math_number">' +
2771
+ '<field name="NUM">9</field>' +
2772
+ '</shadow>' +
2773
+ '</value>' +
2774
+ '</block>',
2775
+ toString: 'square root 9',
2776
+ },
2777
+ {
2778
+ name: 'nested Number output blocks',
2779
+ xml:
2780
+ '<block type="math_arithmetic">' +
2781
+ '<field name="OP">ADD</field>' +
2782
+ '<value name="A">' +
2783
+ '<shadow type="math_number">' +
2784
+ '<field name="NUM">1</field>' +
2785
+ '</shadow>' +
2786
+ '<block type="math_arithmetic">' +
2787
+ '<field name="OP">MULTIPLY</field>' +
2788
+ '<value name="A">' +
2789
+ '<shadow type="math_number">' +
2790
+ '<field name="NUM">10</field>' +
2791
+ '</shadow>' +
2792
+ '</value>' +
2793
+ '<value name="B">' +
2794
+ '<shadow type="math_number">' +
2795
+ '<field name="NUM">5</field>' +
2796
+ '</shadow>' +
2797
+ '</value>' +
2798
+ '</block>' +
2799
+ '</value>' +
2800
+ '<value name="B">' +
2801
+ '<shadow type="math_number">' +
2802
+ '<field name="NUM">3</field>' +
2803
+ '</shadow>' +
2804
+ '</value>' +
2805
+ '</block>',
2806
+ toString: '(10 × 5) + 3',
2807
+ },
2808
+ {
2809
+ name: 'nested String output blocks',
2810
+ xml:
2811
+ '<block type="text_join">' +
2812
+ '<mutation items="2"></mutation>' +
2813
+ '<value name="ADD0">' +
2814
+ '<block type="text">' +
2815
+ '<field name="TEXT">Hello</field>' +
2816
+ '</block>' +
2817
+ '</value>' +
2818
+ '<value name="ADD1">' +
2819
+ '<block type="text">' +
2820
+ '<field name="TEXT">World</field>' +
2821
+ '</block>' +
2822
+ '</value>' +
2823
+ '</block>',
2824
+ toString: 'create text with “ Hello ” “ World ”',
2825
+ },
2826
+ {
2827
+ name: 'parentheses in string literal',
2828
+ xml:
2829
+ '<block type="text">' +
2830
+ '<field name="TEXT">foo ( bar ) baz</field>' +
2831
+ '</block>',
2832
+ toString: '“ foo ( bar ) baz ”',
2833
+ },
2834
+ ];
2835
+ // Create mocha test cases for each toString test.
2836
+ toStringTests.forEach(function (t) {
2837
+ test(t.name, function () {
2838
+ const block = Blockly.Xml.domToBlock(
2839
+ Blockly.utils.xml.textToDom(t.xml),
2840
+ this.workspace,
2841
+ );
2842
+ assert.equal(block.toString(), t.toString);
2843
+ });
2844
+ });
2845
+ });
2846
+
2847
+ suite('Initialization', function () {
2848
+ setup(function () {
2849
+ Blockly.defineBlocksWithJsonArray([
2850
+ {
2851
+ 'type': 'init_test_block',
2852
+ 'message0': '',
2853
+ },
2854
+ ]);
2855
+ });
2856
+ test('recordUndo is reset even if init throws', function () {
2857
+ // The test could pass if init is never called,
2858
+ // so we assert init was called to be safe.
2859
+ let initCalled = false;
2860
+ let recordUndoDuringInit;
2861
+ Blockly.Blocks['init_test_block'].init = function () {
2862
+ initCalled = true;
2863
+ recordUndoDuringInit = eventUtils.getRecordUndo();
2864
+ throw new Error();
2865
+ };
2866
+ assert.throws(
2867
+ function () {
2868
+ this.workspace.newBlock('init_test_block');
2869
+ }.bind(this),
2870
+ );
2871
+ assert.isFalse(
2872
+ recordUndoDuringInit,
2873
+ 'recordUndo should be false during block init function',
2874
+ );
2875
+ assert.isTrue(
2876
+ eventUtils.getRecordUndo(),
2877
+ 'recordUndo should be reset to true after init',
2878
+ );
2879
+ assert.isTrue(initCalled, 'expected init function to be called');
2880
+ });
2881
+ });
2882
+
2883
+ suite('EndOfRow', function () {
2884
+ setup(function () {
2885
+ Blockly.defineBlocksWithJsonArray([
2886
+ {
2887
+ 'type': 'end_row_test_block',
2888
+ 'message0': 'Row1\nRow2',
2889
+ 'inputsInline': true,
2890
+ },
2891
+ ]);
2892
+ });
2893
+ test('Newline is converted to an end-row input', function () {
2894
+ const block = this.workspace.newBlock('end_row_test_block');
2895
+ assert.equal(block.inputList[0].fieldRow[0].getValue(), 'Row1');
2896
+ assert.isTrue(
2897
+ block.inputList[0] instanceof EndRowInput,
2898
+ 'newline should be converted to an end-row input',
2899
+ );
2900
+ assert.equal(block.inputList[1].fieldRow[0].getValue(), 'Row2');
2901
+ });
2902
+ });
2903
+
2904
+ suite('Dragging', function () {
2905
+ setup(function () {
2906
+ this.workspace = Blockly.inject('blocklyDiv');
2907
+ this.blocks = createTestBlocks(this.workspace, false);
2908
+ for (const block of Object.values(this.blocks)) {
2909
+ block.initSvg();
2910
+ block.render();
2911
+ }
2912
+ });
2913
+ test('Bubbles are moved to drag layer along with their blocks', async function () {
2914
+ this.blocks.A.setCommentText('a');
2915
+ this.blocks.B.setCommentText('b');
2916
+ this.blocks.C.setCommentText('c');
2917
+ const v1 = this.blocks.A.getIcon(
2918
+ Blockly.icons.IconType.COMMENT,
2919
+ ).setBubbleVisible(true);
2920
+ const v2 = this.blocks.B.getIcon(
2921
+ Blockly.icons.IconType.COMMENT,
2922
+ ).setBubbleVisible(true);
2923
+ const v3 = this.blocks.C.getIcon(
2924
+ Blockly.icons.IconType.COMMENT,
2925
+ ).setBubbleVisible(true);
2926
+
2927
+ this.clock.tick(1000);
2928
+ await Promise.all([v1, v2, v3]);
2929
+
2930
+ this.blocks.B.startDrag();
2931
+
2932
+ // Block A stays put and should have its comment stay on the bubble layer.
2933
+ assert.equal(
2934
+ this.blocks.A.getIcon(Blockly.icons.IconType.COMMENT)
2935
+ .getBubble()
2936
+ .getSvgRoot().parentElement,
2937
+ this.blocks.A.workspace.getLayerManager()?.getBubbleLayer(),
2938
+ );
2939
+
2940
+ // Block B moves to the drag layer and its comment should follow.
2941
+ assert.equal(
2942
+ this.blocks.B.getIcon(Blockly.icons.IconType.COMMENT)
2943
+ .getBubble()
2944
+ .getSvgRoot().parentElement,
2945
+ this.blocks.B.workspace.getLayerManager()?.getDragLayer(),
2946
+ );
2947
+ });
2948
+ });
2949
+ });