@blockdia/scratch-blocks 0.1.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 (243) hide show
  1. package/.nvmrc +1 -0
  2. package/LICENSE +674 -0
  3. package/README.md +57 -0
  4. package/TRADEMARK +1 -0
  5. package/blockly_compressed_horizontal.js +2268 -0
  6. package/blockly_compressed_vertical.js +2296 -0
  7. package/blockly_uncompressed_horizontal.js +1212 -0
  8. package/blockly_uncompressed_vertical.js +1212 -0
  9. package/blocks_common/colour.js +61 -0
  10. package/blocks_common/math.js +159 -0
  11. package/blocks_common/matrix.js +54 -0
  12. package/blocks_common/note.js +58 -0
  13. package/blocks_common/text.js +57 -0
  14. package/blocks_compressed.js +37 -0
  15. package/blocks_compressed_horizontal.js +68 -0
  16. package/blocks_compressed_vertical.js +216 -0
  17. package/blocks_horizontal/control.js +212 -0
  18. package/blocks_horizontal/default_toolbox.js +139 -0
  19. package/blocks_horizontal/event.js +190 -0
  20. package/blocks_horizontal/wedo.js +325 -0
  21. package/blocks_vertical/control.js +532 -0
  22. package/blocks_vertical/data.js +666 -0
  23. package/blocks_vertical/default_toolbox.js +571 -0
  24. package/blocks_vertical/event.js +329 -0
  25. package/blocks_vertical/extensions.js +294 -0
  26. package/blocks_vertical/looks.js +591 -0
  27. package/blocks_vertical/motion.js +587 -0
  28. package/blocks_vertical/operators.js +470 -0
  29. package/blocks_vertical/procedures.js +1051 -0
  30. package/blocks_vertical/sensing.js +555 -0
  31. package/blocks_vertical/sound.js +246 -0
  32. package/blocks_vertical/vertical_extensions.js +289 -0
  33. package/build/gen_blocks.js +1 -0
  34. package/build/test_expect.js +1 -0
  35. package/build/test_input.js +1 -0
  36. package/build.py +647 -0
  37. package/cleanup.sh +101 -0
  38. package/core/block.js +1837 -0
  39. package/core/block_animations.js +107 -0
  40. package/core/block_drag_surface.js +299 -0
  41. package/core/block_dragger.js +424 -0
  42. package/core/block_events.js +531 -0
  43. package/core/block_render_svg_horizontal.js +892 -0
  44. package/core/block_render_svg_vertical.js +1734 -0
  45. package/core/block_svg.js +1355 -0
  46. package/core/blockly.js +620 -0
  47. package/core/blocks.js +37 -0
  48. package/core/bubble.js +664 -0
  49. package/core/bubble_dragger.js +285 -0
  50. package/core/colours.js +177 -0
  51. package/core/comment.js +293 -0
  52. package/core/comment_events.js +539 -0
  53. package/core/connection.js +776 -0
  54. package/core/connection_db.js +300 -0
  55. package/core/constants.js +408 -0
  56. package/core/contextmenu.js +534 -0
  57. package/core/css.js +1354 -0
  58. package/core/data_category.js +490 -0
  59. package/core/dragged_connection_manager.js +260 -0
  60. package/core/dropdowndiv.js +408 -0
  61. package/core/events.js +429 -0
  62. package/core/events_abstract.js +113 -0
  63. package/core/extensions.js +450 -0
  64. package/core/field.js +810 -0
  65. package/core/field_angle.js +410 -0
  66. package/core/field_checkbox.js +133 -0
  67. package/core/field_colour.js +253 -0
  68. package/core/field_colour_slider.js +387 -0
  69. package/core/field_date.js +353 -0
  70. package/core/field_dropdown.js +447 -0
  71. package/core/field_iconmenu.js +309 -0
  72. package/core/field_image.js +200 -0
  73. package/core/field_label.js +136 -0
  74. package/core/field_label_serializable.js +125 -0
  75. package/core/field_matrix.js +566 -0
  76. package/core/field_note.js +850 -0
  77. package/core/field_number.js +366 -0
  78. package/core/field_numberdropdown.js +77 -0
  79. package/core/field_textdropdown.js +164 -0
  80. package/core/field_textinput.js +675 -0
  81. package/core/field_textinput_removable.js +105 -0
  82. package/core/field_variable.js +385 -0
  83. package/core/field_variable_getter.js +185 -0
  84. package/core/field_vertical_separator.js +161 -0
  85. package/core/flyout_base.js +935 -0
  86. package/core/flyout_button.js +324 -0
  87. package/core/flyout_dragger.js +83 -0
  88. package/core/flyout_extension_category_header.js +159 -0
  89. package/core/flyout_horizontal.js +475 -0
  90. package/core/flyout_vertical.js +770 -0
  91. package/core/generator.js +426 -0
  92. package/core/gesture.js +1010 -0
  93. package/core/grid.js +227 -0
  94. package/core/icon.js +205 -0
  95. package/core/inject.js +496 -0
  96. package/core/input.js +285 -0
  97. package/core/insertion_marker_manager.js +678 -0
  98. package/core/intersection_observer.js +102 -0
  99. package/core/msg.js +62 -0
  100. package/core/mutator.js +426 -0
  101. package/core/names.js +198 -0
  102. package/core/options.js +244 -0
  103. package/core/procedures.js +739 -0
  104. package/core/rendered_connection.js +417 -0
  105. package/core/scratch_block_comment.js +646 -0
  106. package/core/scratch_blocks_utils.js +246 -0
  107. package/core/scratch_bubble.js +699 -0
  108. package/core/scratch_events.js +131 -0
  109. package/core/scratch_msgs.js +85 -0
  110. package/core/scrollbar.js +875 -0
  111. package/core/toolbox.js +803 -0
  112. package/core/tooltip.js +337 -0
  113. package/core/touch.js +226 -0
  114. package/core/trashcan.js +343 -0
  115. package/core/ui_events.js +91 -0
  116. package/core/ui_menu_utils.js +68 -0
  117. package/core/utils.js +825 -0
  118. package/core/variable_events.js +259 -0
  119. package/core/variable_map.js +415 -0
  120. package/core/variable_model.js +116 -0
  121. package/core/variables.js +674 -0
  122. package/core/warning.js +199 -0
  123. package/core/widgetdiv.js +344 -0
  124. package/core/workspace.js +673 -0
  125. package/core/workspace_audio.js +170 -0
  126. package/core/workspace_comment.js +426 -0
  127. package/core/workspace_comment_render_svg.js +706 -0
  128. package/core/workspace_comment_svg.js +609 -0
  129. package/core/workspace_drag_surface_svg.js +195 -0
  130. package/core/workspace_dragger.js +132 -0
  131. package/core/workspace_svg.js +2382 -0
  132. package/core/xml.js +930 -0
  133. package/core/zoom_controls.js +301 -0
  134. package/dist/horizontal.js +222 -0
  135. package/dist/vertical.js +222 -0
  136. package/dist/web/horizontal.js +232 -0
  137. package/dist/web/vertical.js +232 -0
  138. package/i18n/common.py +234 -0
  139. package/i18n/create_messages.py +162 -0
  140. package/i18n/create_scratch_msgs.js +69 -0
  141. package/i18n/dedup_json.py +73 -0
  142. package/i18n/js_to_json.js +46 -0
  143. package/i18n/js_to_json.py +136 -0
  144. package/i18n/json_to_js.js +52 -0
  145. package/i18n/json_to_js.py +185 -0
  146. package/i18n/sync_tx_translations.js +111 -0
  147. package/i18n/test_scratch_msgs.js +87 -0
  148. package/i18n/tests.py +47 -0
  149. package/i18n/xliff_to_json.py +232 -0
  150. package/local_build.sh +70 -0
  151. package/media/click.mp3 +0 -0
  152. package/media/click.ogg +0 -0
  153. package/media/click.wav +0 -0
  154. package/media/comment-arrow-down.svg +10 -0
  155. package/media/comment-arrow-up.svg +10 -0
  156. package/media/delete-x.svg +10 -0
  157. package/media/delete.mp3 +0 -0
  158. package/media/delete.ogg +0 -0
  159. package/media/delete.wav +0 -0
  160. package/media/dropdown-arrow-dark.svg +1 -0
  161. package/media/dropdown-arrow.svg +1 -0
  162. package/media/extensions/microbit-block-icon.svg +130 -0
  163. package/media/extensions/music-block-icon.svg +17 -0
  164. package/media/extensions/pen-block-icon.svg +19 -0
  165. package/media/extensions/wedo2-block-icon.svg +36 -0
  166. package/media/eyedropper.svg +22 -0
  167. package/media/green-flag.svg +17 -0
  168. package/media/handclosed.cur +0 -0
  169. package/media/handdelete.cur +0 -0
  170. package/media/handopen.cur +0 -0
  171. package/media/icons/arrow.svg +12 -0
  172. package/media/icons/arrow_button.svg +1 -0
  173. package/media/icons/control_forever.svg +1 -0
  174. package/media/icons/control_repeat.svg +1 -0
  175. package/media/icons/control_stop.svg +1 -0
  176. package/media/icons/control_wait.svg +1 -0
  177. package/media/icons/event_broadcast_blue.svg +1 -0
  178. package/media/icons/event_broadcast_coral.svg +1 -0
  179. package/media/icons/event_broadcast_green.svg +1 -0
  180. package/media/icons/event_broadcast_magenta.svg +1 -0
  181. package/media/icons/event_broadcast_orange.svg +1 -0
  182. package/media/icons/event_broadcast_purple.svg +1 -0
  183. package/media/icons/event_when-broadcast-received_blue.svg +1 -0
  184. package/media/icons/event_when-broadcast-received_coral.svg +1 -0
  185. package/media/icons/event_when-broadcast-received_green.svg +1 -0
  186. package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
  187. package/media/icons/event_when-broadcast-received_orange.svg +1 -0
  188. package/media/icons/event_when-broadcast-received_purple.svg +1 -0
  189. package/media/icons/event_whenflagclicked.svg +1 -0
  190. package/media/icons/remove.svg +19 -0
  191. package/media/icons/set-led_blue.svg +1 -0
  192. package/media/icons/set-led_coral.svg +1 -0
  193. package/media/icons/set-led_green.svg +1 -0
  194. package/media/icons/set-led_magenta.svg +1 -0
  195. package/media/icons/set-led_mystery.svg +1 -0
  196. package/media/icons/set-led_orange.svg +1 -0
  197. package/media/icons/set-led_purple.svg +1 -0
  198. package/media/icons/set-led_white.svg +1 -0
  199. package/media/icons/set-led_yellow.svg +1 -0
  200. package/media/icons/wedo_motor-clockwise.svg +1 -0
  201. package/media/icons/wedo_motor-counterclockwise.svg +1 -0
  202. package/media/icons/wedo_motor-speed_fast.svg +1 -0
  203. package/media/icons/wedo_motor-speed_med.svg +1 -0
  204. package/media/icons/wedo_motor-speed_slow.svg +1 -0
  205. package/media/icons/wedo_when-distance_close.svg +1 -0
  206. package/media/icons/wedo_when-tilt-backward.svg +1 -0
  207. package/media/icons/wedo_when-tilt-forward.svg +1 -0
  208. package/media/icons/wedo_when-tilt-left.svg +1 -0
  209. package/media/icons/wedo_when-tilt-right.svg +1 -0
  210. package/media/icons/wedo_when-tilt.svg +1 -0
  211. package/media/repeat.svg +18 -0
  212. package/media/rotate-left.svg +1 -0
  213. package/media/rotate-right.svg +1 -0
  214. package/media/sprites.png +0 -0
  215. package/media/status-not-ready.svg +13 -0
  216. package/media/status-ready.svg +13 -0
  217. package/media/zoom-in.svg +1 -0
  218. package/media/zoom-out.svg +1 -0
  219. package/media/zoom-reset.svg +1 -0
  220. package/msg/js/en.js +290 -0
  221. package/msg/json/en.json +285 -0
  222. package/msg/messages.js +359 -0
  223. package/msg/scratch_msgs.js +22969 -0
  224. package/package.json +60 -0
  225. package/pull_from_blockly.sh +151 -0
  226. package/renovate.json5 +15 -0
  227. package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
  228. package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
  229. package/shim/blockly_compressed_horizontal.goog.js +1 -0
  230. package/shim/blockly_compressed_horizontal.js +1 -0
  231. package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
  232. package/shim/blockly_compressed_vertical.Blockly.js +1 -0
  233. package/shim/blockly_compressed_vertical.goog.js +1 -0
  234. package/shim/blockly_compressed_vertical.js +1 -0
  235. package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
  236. package/shim/blocks_compressed_horizontal.js +1 -0
  237. package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
  238. package/shim/blocks_compressed_vertical.js +1 -0
  239. package/shim/gh-pages.js +1 -0
  240. package/shim/horizontal.js +1 -0
  241. package/shim/index.js +17 -0
  242. package/shim/vertical.js +1 -0
  243. package/universal-python.js +82 -0
@@ -0,0 +1,417 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2016 Google Inc.
6
+ * https://developers.google.com/blockly/
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ /**
22
+ * @fileoverview Components for creating connections between blocks.
23
+ * @author fenichel@google.com (Rachel Fenichel)
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.RenderedConnection');
28
+
29
+ goog.require('Blockly.Connection');
30
+
31
+
32
+ /**
33
+ * Class for a connection between blocks that may be rendered on screen.
34
+ * @param {!Blockly.Block} source The block establishing this connection.
35
+ * @param {number} type The type of the connection.
36
+ * @extends {Blockly.Connection}
37
+ * @constructor
38
+ */
39
+ Blockly.RenderedConnection = function(source, type) {
40
+ Blockly.RenderedConnection.superClass_.constructor.call(this, source, type);
41
+
42
+ /**
43
+ * Workspace units, (0, 0) is top left of block.
44
+ * @type {!goog.math.Coordinate}
45
+ * @private
46
+ */
47
+ this.offsetInBlock_ = new goog.math.Coordinate(0, 0);
48
+ };
49
+ goog.inherits(Blockly.RenderedConnection, Blockly.Connection);
50
+
51
+ /**
52
+ * Returns the distance between this connection and another connection in
53
+ * workspace units.
54
+ * @param {!Blockly.Connection} otherConnection The other connection to measure
55
+ * the distance to.
56
+ * @return {number} The distance between connections, in workspace units.
57
+ */
58
+ Blockly.RenderedConnection.prototype.distanceFrom = function(otherConnection) {
59
+ var xDiff = this.x_ - otherConnection.x_;
60
+ var yDiff = this.y_ - otherConnection.y_;
61
+ return Math.sqrt(xDiff * xDiff + yDiff * yDiff);
62
+ };
63
+
64
+ /**
65
+ * Move the block(s) belonging to the connection to a point where they don't
66
+ * visually interfere with the specified connection.
67
+ * @param {!Blockly.Connection} staticConnection The connection to move away
68
+ * from.
69
+ * @private
70
+ */
71
+ Blockly.RenderedConnection.prototype.bumpAwayFrom_ = function(staticConnection) {
72
+ if (this.sourceBlock_.workspace.isDragging()) {
73
+ // Don't move blocks around while the user is doing the same.
74
+ return;
75
+ }
76
+ // Move the root block.
77
+ var rootBlock = this.sourceBlock_.getRootBlock();
78
+ if (rootBlock.isInFlyout) {
79
+ // Don't move blocks around in a flyout.
80
+ return;
81
+ }
82
+ var reverse = false;
83
+ if (!rootBlock.isMovable()) {
84
+ // Can't bump an uneditable block away.
85
+ // Check to see if the other block is movable.
86
+ rootBlock = staticConnection.getSourceBlock().getRootBlock();
87
+ if (!rootBlock.isMovable()) {
88
+ return;
89
+ }
90
+ // Swap the connections and move the 'static' connection instead.
91
+ staticConnection = this;
92
+ reverse = true;
93
+ }
94
+ // Raise it to the top for extra visibility.
95
+ var selected = Blockly.selected == rootBlock;
96
+ selected || rootBlock.addSelect();
97
+ var dx = (staticConnection.x_ + Blockly.SNAP_RADIUS) - this.x_;
98
+ var dy = (staticConnection.y_ + Blockly.SNAP_RADIUS) - this.y_;
99
+ if (reverse) {
100
+ // When reversing a bump due to an uneditable block, bump up.
101
+ dy = -dy;
102
+ }
103
+ if (rootBlock.RTL) {
104
+ dx = -dx;
105
+ }
106
+ rootBlock.moveBy(dx, dy);
107
+ selected || rootBlock.removeSelect();
108
+ };
109
+
110
+ /**
111
+ * Change the connection's coordinates.
112
+ * @param {number} x New absolute x coordinate, in workspace coordinates.
113
+ * @param {number} y New absolute y coordinate, in workspace coordinates.
114
+ */
115
+ Blockly.RenderedConnection.prototype.moveTo = function(x, y) {
116
+ // Remove it from its old location in the database (if already present)
117
+ if (this.inDB_) {
118
+ this.db_.removeConnection_(this);
119
+ }
120
+ this.x_ = x;
121
+ this.y_ = y;
122
+ // Insert it into its new location in the database.
123
+ if (!this.hidden_) {
124
+ this.db_.addConnection(this);
125
+ }
126
+ };
127
+
128
+ /**
129
+ * Change the connection's coordinates.
130
+ * @param {number} dx Change to x coordinate, in workspace units.
131
+ * @param {number} dy Change to y coordinate, in workspace units.
132
+ */
133
+ Blockly.RenderedConnection.prototype.moveBy = function(dx, dy) {
134
+ this.moveTo(this.x_ + dx, this.y_ + dy);
135
+ };
136
+
137
+ /**
138
+ * Move this connection to the location given by its offset within the block and
139
+ * the location of the block's top left corner.
140
+ * @param {!goog.math.Coordinate} blockTL The location of the top left corner
141
+ * of the block, in workspace coordinates.
142
+ */
143
+ Blockly.RenderedConnection.prototype.moveToOffset = function(blockTL) {
144
+ this.moveTo(blockTL.x + this.offsetInBlock_.x,
145
+ blockTL.y + this.offsetInBlock_.y);
146
+ };
147
+
148
+ /**
149
+ * Set the offset of this connection relative to the top left of its block.
150
+ * @param {number} x The new relative x, in workspace units.
151
+ * @param {number} y The new relative y, in workspace units.
152
+ */
153
+ Blockly.RenderedConnection.prototype.setOffsetInBlock = function(x, y) {
154
+ this.offsetInBlock_.x = x;
155
+ this.offsetInBlock_.y = y;
156
+ };
157
+
158
+ /**
159
+ * Move the blocks on either side of this connection right next to each other.
160
+ * @private
161
+ */
162
+ Blockly.RenderedConnection.prototype.tighten_ = function() {
163
+ var dx = this.targetConnection.x_ - this.x_;
164
+ var dy = this.targetConnection.y_ - this.y_;
165
+ if (dx != 0 || dy != 0) {
166
+ var block = this.targetBlock();
167
+ var svgRoot = block.getSvgRoot();
168
+ if (!svgRoot) {
169
+ throw 'block is not rendered.';
170
+ }
171
+ // Workspace coordinates.
172
+ var xy = Blockly.utils.getRelativeXY(svgRoot);
173
+ block.getSvgRoot().setAttribute('transform',
174
+ 'translate(' + (xy.x - dx) + ',' + (xy.y - dy) + ')');
175
+ block.moveConnections_(-dx, -dy);
176
+ }
177
+ };
178
+
179
+ /**
180
+ * Find the closest compatible connection to this connection.
181
+ * All parameters are in workspace units.
182
+ * @param {number} maxLimit The maximum radius to another connection.
183
+ * @param {!goog.math.Coordinate} dxy Offset between this connection's location
184
+ * in the database and the current location (as a result of dragging).
185
+ * @return {!{connection: ?Blockly.Connection, radius: number}} Contains two
186
+ * properties: 'connection' which is either another connection or null,
187
+ * and 'radius' which is the distance.
188
+ */
189
+ Blockly.RenderedConnection.prototype.closest = function(maxLimit, dxy) {
190
+ return this.dbOpposite_.searchForClosest(this, maxLimit, dxy);
191
+ };
192
+
193
+ /**
194
+ * Add highlighting around this connection.
195
+ */
196
+ Blockly.RenderedConnection.prototype.highlight = function() {
197
+ var steps;
198
+ steps = 'm -20,0 h 5 ' + Blockly.BlockSvg.NOTCH_PATH_LEFT + ' h 5';
199
+ var xy = this.sourceBlock_.getRelativeToSurfaceXY();
200
+ var x = this.x_ - xy.x;
201
+ var y = this.y_ - xy.y;
202
+ Blockly.Connection.highlightedPath_ = Blockly.utils.createSvgElement(
203
+ 'path',
204
+ {
205
+ 'class': 'blocklyHighlightedConnectionPath',
206
+ 'd': steps,
207
+ transform: 'translate(' + x + ',' + y + ')' +
208
+ (this.sourceBlock_.RTL ? ' scale(-1 1)' : '')
209
+ },
210
+ this.sourceBlock_.getSvgRoot());
211
+ };
212
+
213
+ /**
214
+ * Unhide this connection, as well as all down-stream connections on any block
215
+ * attached to this connection. This happens when a block is expanded.
216
+ * Also unhides down-stream comments.
217
+ * @return {!Array.<!Blockly.Block>} List of blocks to render.
218
+ */
219
+ Blockly.RenderedConnection.prototype.unhideAll = function() {
220
+ this.setHidden(false);
221
+ // All blocks that need unhiding must be unhidden before any rendering takes
222
+ // place, since rendering requires knowing the dimensions of lower blocks.
223
+ // Also, since rendering a block renders all its parents, we only need to
224
+ // render the leaf nodes.
225
+ var renderList = [];
226
+ if (this.type != Blockly.INPUT_VALUE && this.type != Blockly.NEXT_STATEMENT) {
227
+ // Only spider down.
228
+ return renderList;
229
+ }
230
+ var block = this.targetBlock();
231
+ if (block) {
232
+ var connections;
233
+ if (block.isCollapsed()) {
234
+ // This block should only be partially revealed since it is collapsed.
235
+ connections = [];
236
+ block.outputConnection && connections.push(block.outputConnection);
237
+ block.nextConnection && connections.push(block.nextConnection);
238
+ block.previousConnection && connections.push(block.previousConnection);
239
+ } else {
240
+ // Show all connections of this block.
241
+ connections = block.getConnections_(true);
242
+ }
243
+ for (var i = 0; i < connections.length; i++) {
244
+ renderList.push.apply(renderList, connections[i].unhideAll());
245
+ }
246
+ if (!renderList.length) {
247
+ // Leaf block.
248
+ renderList[0] = block;
249
+ }
250
+ }
251
+ return renderList;
252
+ };
253
+
254
+ /**
255
+ * Remove the highlighting around this connection.
256
+ */
257
+ Blockly.RenderedConnection.prototype.unhighlight = function() {
258
+ goog.dom.removeNode(Blockly.Connection.highlightedPath_);
259
+ delete Blockly.Connection.highlightedPath_;
260
+ };
261
+
262
+ /**
263
+ * Set whether this connections is hidden (not tracked in a database) or not.
264
+ * @param {boolean} hidden True if connection is hidden.
265
+ */
266
+ Blockly.RenderedConnection.prototype.setHidden = function(hidden) {
267
+ this.hidden_ = hidden;
268
+ if (hidden && this.inDB_) {
269
+ this.db_.removeConnection_(this);
270
+ } else if (!hidden && !this.inDB_) {
271
+ this.db_.addConnection(this);
272
+ }
273
+ };
274
+
275
+ /**
276
+ * Hide this connection, as well as all down-stream connections on any block
277
+ * attached to this connection. This happens when a block is collapsed.
278
+ * Also hides down-stream comments.
279
+ */
280
+ Blockly.RenderedConnection.prototype.hideAll = function() {
281
+ this.setHidden(true);
282
+ if (this.targetConnection) {
283
+ var blocks = this.targetBlock().getDescendants(false);
284
+ for (var i = 0; i < blocks.length; i++) {
285
+ var block = blocks[i];
286
+ // Hide all connections of all children.
287
+ var connections = block.getConnections_(true);
288
+ for (var j = 0; j < connections.length; j++) {
289
+ connections[j].setHidden(true);
290
+ }
291
+ // Close all bubbles of all children.
292
+ var icons = block.getIcons();
293
+ for (var j = 0; j < icons.length; j++) {
294
+ icons[j].setVisible(false);
295
+ }
296
+ }
297
+ }
298
+ };
299
+
300
+ /**
301
+ * Check if the two connections can be dragged to connect to each other.
302
+ * @param {!Blockly.Connection} candidate A nearby connection to check.
303
+ * @param {number} maxRadius The maximum radius allowed for connections, in
304
+ * workspace units.
305
+ * @return {boolean} True if the connection is allowed, false otherwise.
306
+ */
307
+ Blockly.RenderedConnection.prototype.isConnectionAllowed = function(candidate,
308
+ maxRadius) {
309
+ if (this.distanceFrom(candidate) > maxRadius) {
310
+ return false;
311
+ }
312
+
313
+ return Blockly.RenderedConnection.superClass_.isConnectionAllowed.call(this,
314
+ candidate);
315
+ };
316
+
317
+ /**
318
+ * Disconnect two blocks that are connected by this connection.
319
+ * @param {!Blockly.Block} parentBlock The superior block.
320
+ * @param {!Blockly.Block} childBlock The inferior block.
321
+ * @private
322
+ */
323
+ Blockly.RenderedConnection.prototype.disconnectInternal_ = function(parentBlock,
324
+ childBlock) {
325
+ Blockly.RenderedConnection.superClass_.disconnectInternal_.call(this,
326
+ parentBlock, childBlock);
327
+ // Rerender the parent so that it may reflow.
328
+ if (parentBlock.rendered) {
329
+ parentBlock.render();
330
+ }
331
+ if (childBlock.rendered) {
332
+ childBlock.updateDisabled();
333
+ childBlock.render();
334
+ }
335
+ };
336
+
337
+ /**
338
+ * Respawn the shadow block if there was one connected to the this connection.
339
+ * Render/rerender blocks as needed.
340
+ * @private
341
+ */
342
+ Blockly.RenderedConnection.prototype.respawnShadow_ = function() {
343
+ var parentBlock = this.getSourceBlock();
344
+ // Respawn the shadow block if there is one.
345
+ var shadow = this.getShadowDom();
346
+ if (parentBlock.workspace && shadow && Blockly.Events.recordUndo) {
347
+ Blockly.RenderedConnection.superClass_.respawnShadow_.call(this);
348
+ var blockShadow = this.targetBlock();
349
+ if (!blockShadow) {
350
+ throw 'Couldn\'t respawn the shadow block that should exist here.';
351
+ }
352
+ blockShadow.initSvg();
353
+ blockShadow.render(false);
354
+ if (parentBlock.rendered) {
355
+ parentBlock.render();
356
+ }
357
+ }
358
+ };
359
+
360
+ /**
361
+ * Find all nearby compatible connections to this connection.
362
+ * Type checking does not apply, since this function is used for bumping.
363
+ * @param {number} maxLimit The maximum radius to another connection, in
364
+ * workspace units.
365
+ * @return {!Array.<!Blockly.Connection>} List of connections.
366
+ * @private
367
+ */
368
+ Blockly.RenderedConnection.prototype.neighbours_ = function(maxLimit) {
369
+ return this.dbOpposite_.getNeighbours(this, maxLimit);
370
+ };
371
+
372
+ /**
373
+ * Connect two connections together. This is the connection on the superior
374
+ * block. Rerender blocks as needed.
375
+ * @param {!Blockly.Connection} childConnection Connection on inferior block.
376
+ * @private
377
+ */
378
+ Blockly.RenderedConnection.prototype.connect_ = function(childConnection) {
379
+ Blockly.RenderedConnection.superClass_.connect_.call(this, childConnection);
380
+
381
+ var parentConnection = this;
382
+ var parentBlock = parentConnection.getSourceBlock();
383
+ var childBlock = childConnection.getSourceBlock();
384
+
385
+ if (parentBlock.rendered) {
386
+ parentBlock.updateDisabled();
387
+ }
388
+ if (childBlock.rendered) {
389
+ childBlock.updateDisabled();
390
+ }
391
+ if (parentBlock.rendered && childBlock.rendered) {
392
+ if (parentConnection.type == Blockly.NEXT_STATEMENT ||
393
+ parentConnection.type == Blockly.PREVIOUS_STATEMENT) {
394
+ // Child block may need to square off its corners if it is in a stack.
395
+ // Rendering a child will render its parent.
396
+ childBlock.render();
397
+ } else {
398
+ // Child block does not change shape. Rendering the parent node will
399
+ // move its connected children into position.
400
+ parentBlock.render();
401
+ }
402
+ }
403
+ };
404
+
405
+ /**
406
+ * Function to be called when this connection's compatible types have changed.
407
+ * @private
408
+ */
409
+ Blockly.RenderedConnection.prototype.onCheckChanged_ = function() {
410
+ // The new value type may not be compatible with the existing connection.
411
+ if (this.isConnected() && !this.checkType_(this.targetConnection)) {
412
+ var child = this.isSuperior() ? this.targetBlock() : this.sourceBlock_;
413
+ child.unplug();
414
+ // Bump away.
415
+ this.sourceBlock_.bumpNeighbours_();
416
+ }
417
+ };