@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,646 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2018 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 Object representing a code comment.
23
+ * @author kchadha@scratch.mit.edu (Karishma Chadha)
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.ScratchBlockComment');
28
+
29
+ goog.require('Blockly.Comment');
30
+ goog.require('Blockly.Events.BlockChange');
31
+ goog.require('Blockly.Events.Ui');
32
+ goog.require('Blockly.Icon');
33
+ goog.require('Blockly.ScratchBubble');
34
+
35
+ goog.require('goog.math.Coordinate');
36
+ goog.require('goog.userAgent');
37
+
38
+
39
+ /**
40
+ * Class for a comment.
41
+ * @param {!Blockly.Block} block The block associated with this comment.
42
+ * @param {string} text The text content of this comment.
43
+ * @param {string=} id Optional uid for comment; a new one will be generated if
44
+ * not provided.
45
+ * @param {number=} x Initial x position for comment, in workspace coordinates.
46
+ * @param {number=} y Initial y position for comment, in workspace coordinates.
47
+ * @param {boolean=} minimized Whether or not this comment is minimized
48
+ * (only the top bar displays), defaults to false.
49
+ * @extends {Blockly.Comment}
50
+ * @constructor
51
+ */
52
+ Blockly.ScratchBlockComment = function(block, text, id, x, y, minimized) {
53
+ Blockly.ScratchBlockComment.superClass_.constructor.call(this, block);
54
+ /**
55
+ * The text content of this comment.
56
+ * @type {string}
57
+ * @private
58
+ */
59
+ this.text_ = text;
60
+
61
+ var xIsValidNumber = typeof x == 'number' && !isNaN(x);
62
+ var yIsValidNumber = typeof y == 'number' && !isNaN(y);
63
+
64
+ /**
65
+ * Whether this comment needs to be auto-positioned (based on provided values
66
+ * for x and y position).
67
+ * @type {boolean}
68
+ * @private
69
+ */
70
+ this.needsAutoPositioning_ = !xIsValidNumber && !yIsValidNumber;
71
+ // If both of the given x and y params are invalid, this comment needs to be auto positioned.
72
+
73
+ /**
74
+ * The x position of this comment in workspace coordinates. Default to 0 if
75
+ * x position is not provided or is not a valid number.
76
+ * @type {number}
77
+ * @private
78
+ */
79
+ this.x_ = xIsValidNumber ? x : 0;
80
+ /**
81
+ * The y position of this comment in workspace coordinates. Default to 0 if
82
+ * y position is not provided or is not a valid number.
83
+ * @type {number}
84
+ * @private
85
+ */
86
+ this.y_ = yIsValidNumber ? y : 0;
87
+ /**
88
+ * Whether this comment is minimized.
89
+ * @type {boolean}
90
+ * @private
91
+ */
92
+ this.isMinimized_ = minimized || false;
93
+
94
+ /**
95
+ * The workspace this comment belongs to.
96
+ * @type {Blockly.Workspace}
97
+ * @package
98
+ */
99
+ this.workspace = block.workspace;
100
+ /**
101
+ * The unique identifier for this comment.
102
+ * @type {string}
103
+ * @package
104
+ */
105
+ this.id = goog.isString(id) && !this.workspace.getCommentById(id) ?
106
+ id : Blockly.utils.genUid();
107
+ this.workspace.addTopComment(this);
108
+
109
+ /**
110
+ * The id of the block this comment belongs to.
111
+ * @type {string}
112
+ * @package
113
+ */
114
+ this.blockId = block.id;
115
+
116
+ if (!block.rendered) {
117
+ Blockly.ScratchBlockComment.fireCreateEvent(this);
118
+ }
119
+ // If the block is rendered, fire event the create event when the comment is made
120
+ // visible
121
+ };
122
+ goog.inherits(Blockly.ScratchBlockComment, Blockly.Comment);
123
+
124
+ /**
125
+ * Width of bubble.
126
+ * @private
127
+ */
128
+ Blockly.ScratchBlockComment.prototype.width_ = 200;
129
+
130
+ /**
131
+ * Height of bubble.
132
+ * @private
133
+ */
134
+ Blockly.ScratchBlockComment.prototype.height_ = 200;
135
+
136
+ /**
137
+ * Comment Icon Size.
138
+ * @package
139
+ */
140
+ Blockly.ScratchBlockComment.prototype.SIZE = 0;
141
+
142
+ /**
143
+ * Offset for text area in comment bubble.
144
+ * @private
145
+ */
146
+ Blockly.ScratchBlockComment.TEXTAREA_OFFSET = 12;
147
+
148
+ /**
149
+ * Maximum lable length (actual label length will include
150
+ * one additional character, the ellipsis).
151
+ * @private
152
+ */
153
+ Blockly.ScratchBlockComment.MAX_LABEL_LENGTH = 12;
154
+
155
+ /**
156
+ * Width that a minimized comment should have.
157
+ * @private
158
+ */
159
+ Blockly.ScratchBlockComment.MINIMIZE_WIDTH = 200;
160
+
161
+ /**
162
+ * Draw the comment icon.
163
+ * @param {!Element} _group The icon group.
164
+ * @private
165
+ */
166
+ Blockly.ScratchBlockComment.prototype.drawIcon_ = function(_group) {
167
+ // NO-OP -- Don't render a comment icon for Scratch block comments
168
+ };
169
+
170
+ // Override renderIcon from Blocky.Icon so that the comment bubble is
171
+ // anchored correctly on the block. This function takes in the top margin
172
+ // as an input instead of setting an arbitrary one.
173
+ /**
174
+ * Render the icon.
175
+ * @param {number} cursorX Horizontal offset at which to position the icon.
176
+ * @param {number} topMargin Vertical offset from the top of the block to position the icon.
177
+ * @return {number} Horizontal offset for next item to draw.
178
+ * @package
179
+ */
180
+ Blockly.ScratchBlockComment.prototype.renderIcon = function(cursorX, topMargin) {
181
+ if (this.collapseHidden && this.block_.isCollapsed()) {
182
+ this.iconGroup_.setAttribute('display', 'none');
183
+ return cursorX;
184
+ }
185
+ this.iconGroup_.setAttribute('display', 'block');
186
+
187
+ var width = this.SIZE;
188
+ if (this.block_.RTL) {
189
+ cursorX -= width;
190
+ }
191
+ this.iconGroup_.setAttribute('transform',
192
+ 'translate(' + cursorX + ',' + topMargin + ')');
193
+ this.computeIconLocation();
194
+ if (this.block_.RTL) {
195
+ cursorX -= Blockly.BlockSvg.SEP_SPACE_X;
196
+ } else {
197
+ cursorX += width + Blockly.BlockSvg.SEP_SPACE_X;
198
+ }
199
+ return cursorX;
200
+ };
201
+
202
+ /**
203
+ * Create the editor for the comment's bubble.
204
+ * @return {{commentEditor: !Element, labelText: !string}} The components used
205
+ * to render the comment editing/writing area and the truncated label text
206
+ * to display in the minimized comment top bar.
207
+ * @private
208
+ */
209
+ Blockly.ScratchBlockComment.prototype.createEditor_ = function() {
210
+ this.foreignObject_ = Blockly.utils.createSvgElement('foreignObject',
211
+ {
212
+ 'x': Blockly.ScratchBubble.BORDER_WIDTH,
213
+ 'y': Blockly.ScratchBubble.BORDER_WIDTH + Blockly.ScratchBubble.TOP_BAR_HEIGHT,
214
+ 'class': 'scratchCommentForeignObject'
215
+ },
216
+ null);
217
+ var body = document.createElementNS(Blockly.HTML_NS, 'body');
218
+ body.setAttribute('xmlns', Blockly.HTML_NS);
219
+ body.className = 'blocklyMinimalBody scratchCommentBody';
220
+ var textarea = document.createElementNS(Blockly.HTML_NS, 'textarea');
221
+ textarea.className = 'scratchCommentTextarea scratchCommentText';
222
+ textarea.setAttribute('dir', this.block_.RTL ? 'RTL' : 'LTR');
223
+ textarea.setAttribute('placeholder', Blockly.Msg.WORKSPACE_COMMENT_DEFAULT_TEXT);
224
+ body.appendChild(textarea);
225
+ this.textarea_ = textarea;
226
+ this.textarea_.style.margin = (Blockly.ScratchBlockComment.TEXTAREA_OFFSET) + 'px';
227
+ this.foreignObject_.appendChild(body);
228
+ Blockly.bindEventWithChecks_(textarea, 'mousedown', this,
229
+ this.textareaFocus_, true, true); // noCapture and do not prevent default
230
+ // Don't zoom with mousewheel.
231
+ Blockly.bindEventWithChecks_(textarea, 'wheel', this, function(e) {
232
+ if (!e.ctrlKey && textarea.clientHeight !== textarea.scrollHeight) {
233
+ e.stopPropagation();
234
+ }
235
+ });
236
+ Blockly.bindEventWithChecks_(textarea, 'change', this, function(_e) {
237
+ if (this.text_ != textarea.value) {
238
+ Blockly.Events.fire(new Blockly.Events.CommentChange(
239
+ this, {text: this.text_}, {text: textarea.value}));
240
+ this.text_ = textarea.value;
241
+ }
242
+ });
243
+
244
+ // Label for comment top bar when comment is minimized
245
+ this.label_ = this.getLabelText();
246
+
247
+ return {
248
+ commentEditor: this.foreignObject_,
249
+ labelText: this.label_
250
+ };
251
+ };
252
+
253
+ /**
254
+ * Handle text area click, make sure to stop propagation to allow default selection behavior.
255
+ * @param {!Event} e Mouse up event.
256
+ * @private
257
+ */
258
+ Blockly.ScratchBlockComment.prototype.textareaFocus_ = function(e) {
259
+ // Stop event from propagating to the workspace to make sure preventDefault _is not called_.
260
+ e.stopPropagation();
261
+ };
262
+
263
+
264
+ /**
265
+ * Callback function triggered when the bubble has resized.
266
+ * Resize the text area accordingly.
267
+ * @private
268
+ */
269
+ Blockly.ScratchBlockComment.prototype.resizeBubble_ = function() {
270
+ if (this.isVisible() && !this.isMinimized_) {
271
+ var size = this.bubble_.getBubbleSize();
272
+ var doubleBorderWidth = 2 * Blockly.ScratchBubble.BORDER_WIDTH;
273
+ var textOffset = Blockly.ScratchBlockComment.TEXTAREA_OFFSET * 2;
274
+ this.foreignObject_.setAttribute('width', size.width - doubleBorderWidth);
275
+ this.foreignObject_.setAttribute('height', size.height - doubleBorderWidth - Blockly.ScratchBubble.TOP_BAR_HEIGHT);
276
+ this.textarea_.style.width = (size.width - textOffset) + 'px';
277
+ this.textarea_.style.height = (size.height - doubleBorderWidth -
278
+ Blockly.ScratchBubble.TOP_BAR_HEIGHT - textOffset) + 'px';
279
+
280
+ // Actually set the size!
281
+ this.width_ = size.width;
282
+ this.height_ = size.height;
283
+ }
284
+ };
285
+
286
+ /**
287
+ * Change the colour of the associated bubble to match its block.
288
+ * @package
289
+ */
290
+ Blockly.ScratchBlockComment.prototype.updateColour = function() {
291
+ if (this.isVisible()) {
292
+ this.bubble_.setColour(this.block_.getColourTertiary());
293
+ }
294
+ };
295
+
296
+ /**
297
+ * Auto position this comment given information about the block that owns this
298
+ * comment and the comment state, if this block needs auto positioning.
299
+ * @private
300
+ */
301
+ Blockly.ScratchBlockComment.prototype.autoPosition_ = function() {
302
+ if (!this.needsAutoPositioning_) return;
303
+ if (this.isMinimized_) {
304
+ var minimizedOffset = 4 * Blockly.BlockSvg.GRID_UNIT;
305
+ this.x_ = this.block_.RTL ?
306
+ this.iconXY_.x - this.getBubbleSize().width - minimizedOffset :
307
+ this.iconXY_.x + minimizedOffset;
308
+ this.y_ = this.iconXY_.y - (Blockly.ScratchBubble.TOP_BAR_HEIGHT / 2);
309
+ } else {
310
+ // TW: We remove comment overhang entirely. We've found that it tends
311
+ // to put comments very far away from their target block or even
312
+ // completely offscreen far too often. Users end up having to move
313
+ // the comment anyways, so let's do them a favor and not make them
314
+ // scroll to find the comment.
315
+ var overhang = 0;
316
+ var offset = 8 * Blockly.BlockSvg.GRID_UNIT;
317
+ this.x_ = this.block_.RTL ?
318
+ this.iconXY_.x - this.width_ - overhang - offset :
319
+ this.iconXY_.x + overhang + offset;
320
+ this.y_ = this.iconXY_.y - (Blockly.ScratchBubble.TOP_BAR_HEIGHT / 2);
321
+ }
322
+ };
323
+
324
+ /**
325
+ * Show or hide the comment bubble.
326
+ * @param {boolean} visible True if the bubble should be visible.
327
+ * @package
328
+ */
329
+ Blockly.ScratchBlockComment.prototype.setVisible = function(visible) {
330
+ if (visible == this.isVisible()) {
331
+ // No change.
332
+ return;
333
+ }
334
+ if ((!this.block_.isEditable() && !this.textarea_) || goog.userAgent.IE) {
335
+ // Steal the code from warnings to make an uneditable text bubble.
336
+ // MSIE does not support foreignobject; textareas are impossible.
337
+ // http://msdn.microsoft.com/en-us/library/hh834675%28v=vs.85%29.aspx
338
+ // Always treat comments in IE as uneditable.
339
+ Blockly.Warning.prototype.setVisible.call(this, visible);
340
+ return;
341
+ }
342
+ // Save the bubble stats before the visibility switch.
343
+ var text = this.getText();
344
+ var size = this.getBubbleSize();
345
+ if (visible) {
346
+ // Auto position this comment, if necessary.
347
+ if (this.needsAutoPositioning_) {
348
+ this.autoPosition_();
349
+ // This comment has been auto-positioned so reset the flag
350
+ this.needsAutoPositioning_ = false;
351
+ }
352
+
353
+ // Create the bubble.
354
+ this.bubble_ = new Blockly.ScratchBubble(
355
+ this, /** @type {!Blockly.WorkspaceSvg} */ (this.block_.workspace),
356
+ this.createEditor_(), this.iconXY_, this.width_, this.height_,
357
+ this.x_, this.y_, this.isMinimized_);
358
+ this.bubble_.setAutoLayout(false);
359
+ this.bubble_.registerResizeEvent(this.resizeBubble_.bind(this));
360
+ this.bubble_.registerMinimizeToggleEvent(this.toggleMinimize_.bind(this));
361
+ this.bubble_.registerDeleteEvent(this.dispose.bind(this));
362
+ this.bubble_.registerContextMenuCallback(this.showContextMenu_.bind(this));
363
+ this.updateColour();
364
+ } else {
365
+ // Dispose of the bubble.
366
+ this.bubble_.dispose();
367
+ this.bubble_ = null;
368
+ this.textarea_ = null;
369
+ this.foreignObject_ = null;
370
+ this.label_ = null;
371
+ }
372
+ // Restore the bubble stats after the visibility switch.
373
+ this.setText(text);
374
+ this.setBubbleSize(size.width, size.height);
375
+ if (visible) {
376
+ Blockly.ScratchBlockComment.fireCreateEvent(this);
377
+ }
378
+ };
379
+
380
+ /**
381
+ * Toggle the minimization state of this comment.
382
+ * @private
383
+ */
384
+ Blockly.ScratchBlockComment.prototype.toggleMinimize_ = function() {
385
+ this.setMinimized(!this.isMinimized_);
386
+ };
387
+
388
+ /**
389
+ * Set the minimized state for this comment.
390
+ * @param {boolean} minimize Whether the comment should be minimized
391
+ * @package
392
+ */
393
+ Blockly.ScratchBlockComment.prototype.setMinimized = function(minimize) {
394
+ if (this.isMinimized_ == minimize) {
395
+ return;
396
+ }
397
+ Blockly.Events.fire(new Blockly.Events.CommentChange(this,
398
+ {minimized: this.isMinimized_}, {minimized: minimize}));
399
+ this.isMinimized_ = minimize;
400
+ if (minimize) {
401
+ this.bubble_.setMinimized(true, this.getLabelText());
402
+ this.setBubbleSize(Blockly.ScratchBlockComment.MINIMIZE_WIDTH,
403
+ Blockly.ScratchBubble.TOP_BAR_HEIGHT);
404
+ // Note we are not updating this.width_ or this.height_ here
405
+ // because we want to keep track of the width/height of the
406
+ // maximized comment
407
+ } else {
408
+ this.bubble_.setMinimized(false);
409
+ this.setText(this.text_);
410
+ this.setBubbleSize(this.width_, this.height_);
411
+ }
412
+ };
413
+
414
+ /**
415
+ * Size this comment's bubble.
416
+ * @param {number} width Width of the bubble.
417
+ * @param {number} height Height of the bubble.
418
+ * @package
419
+ */
420
+ Blockly.ScratchBlockComment.prototype.setBubbleSize = function(width, height) {
421
+ if (this.bubble_) {
422
+ if (this.isMinimized_) {
423
+ this.bubble_.setBubbleSize(Blockly.ScratchBlockComment.MINIMIZE_WIDTH,
424
+ Blockly.ScratchBubble.TOP_BAR_HEIGHT);
425
+ } else {
426
+ this.bubble_.setBubbleSize(width, height);
427
+ }
428
+ }
429
+ };
430
+
431
+ /**
432
+ * Set the un-minimized size of this comment. If the comment has an un-minimized
433
+ * bubble, also set the bubble's size.
434
+ * @param {number} width Width of the unminimized comment.
435
+ * @param {number} height Height of the unminimized comment.
436
+ * @package
437
+ */
438
+ Blockly.ScratchBlockComment.prototype.setSize = function(width, height) {
439
+ var oldWidth = this.width_;
440
+ var oldHeight = this.height_;
441
+
442
+ if (!this.isMinimized_) {
443
+ this.setBubbleSize(width, height);
444
+ }
445
+
446
+ this.height_ = height;
447
+ this.width_ = width;
448
+
449
+ if (oldWidth != this.width_ || oldHeight != this.height_) {
450
+ Blockly.Events.fire(new Blockly.Events.CommentChange(
451
+ this,
452
+ {width: oldWidth, height: oldHeight},
453
+ {width: this.width_, height: this.height_}));
454
+ }
455
+ };
456
+
457
+ /**
458
+ * Get the truncated text for this comment to display in the minimized
459
+ * top bar.
460
+ * @return {string} The truncated comment text
461
+ * @package
462
+ */
463
+ Blockly.ScratchBlockComment.prototype.getLabelText = function() {
464
+ if (this.text_.length > Blockly.ScratchBlockComment.MAX_LABEL_LENGTH) {
465
+ if (this.block_.RTL) {
466
+ return '\u2026' + this.text_.slice(0, Blockly.ScratchBlockComment.MAX_LABEL_LENGTH);
467
+ }
468
+ return this.text_.slice(0, Blockly.ScratchBlockComment.MAX_LABEL_LENGTH) + '\u2026';
469
+ } else {
470
+ return this.text_;
471
+ }
472
+ };
473
+
474
+ /**
475
+ * Set this comment's text.
476
+ * @param {string} text Comment text.
477
+ * @package
478
+ */
479
+ Blockly.ScratchBlockComment.prototype.setText = function(text) {
480
+ if (this.text_ != text) {
481
+ Blockly.Events.fire(new Blockly.Events.CommentChange(
482
+ this, {text: this.text_}, {text: text}));
483
+ this.text_ = text;
484
+ }
485
+ if (this.textarea_) {
486
+ this.textarea_.value = text;
487
+ }
488
+ };
489
+
490
+ /**
491
+ * Move this comment to a position given x and y coordinates.
492
+ * @param {number} x The x-coordinate on the workspace.
493
+ * @param {number} y The y-coordinate on the workspace.
494
+ * @package
495
+ */
496
+ Blockly.ScratchBlockComment.prototype.moveTo = function(x, y) {
497
+ var event = new Blockly.Events.CommentMove(this);
498
+ if (this.bubble_) {
499
+ this.bubble_.moveTo(x, y);
500
+ }
501
+ this.x_ = x;
502
+ this.y_ = y;
503
+ event.recordNew();
504
+ Blockly.Events.fire(event);
505
+ };
506
+
507
+ /**
508
+ * Get the x and y position of this comment.
509
+ * @return {goog.math.Coordinate} The XY position
510
+ * @package
511
+ */
512
+ Blockly.ScratchBlockComment.prototype.getXY = function() {
513
+ if (this.bubble_) {
514
+ return this.bubble_.getRelativeToSurfaceXY();
515
+ }
516
+ // Auto position this comment if iconXY_ is provided
517
+ // (auto positioning will only occur if it is necessary).
518
+ if (this.needsAutoPositioning_ && this.iconXY_) {
519
+ this.autoPosition_();
520
+ // Do not reset the needsAutoPositioning flag here. This will be reset
521
+ // after the comment has been made visible and the re-auto positioned,
522
+ // because the block may have moved by that point.
523
+ }
524
+ return new goog.math.Coordinate(this.x_, this.y_);
525
+ };
526
+
527
+ /**
528
+ * Get the height and width of this comment.
529
+ * Note: this does not use the current bubble size because
530
+ * the bubble may be minimized.
531
+ * @return {{height: number, width: number}} The height and width of
532
+ * this comment when it is full size. These numbers do not change
533
+ * as the workspace zoom changes.
534
+ * @package
535
+ */
536
+ Blockly.ScratchBlockComment.prototype.getHeightWidth = function() {
537
+ return {height: this.height_, width: this.width_};
538
+ };
539
+
540
+ /**
541
+ * Returns the coordinates of a bounding box describing the dimensions of this
542
+ * comment.
543
+ * Coordinate system: workspace coordinates.
544
+ * @return {!{topLeft: goog.math.Coordinate, bottomRight: goog.math.Coordinate}}
545
+ * Object with top left and bottom right coordinates of the bounding box.
546
+ * @package
547
+ */
548
+ Blockly.ScratchBlockComment.prototype.getBoundingRectangle = function() {
549
+ var commentXY = this.getXY();
550
+ var commentBounds = this.getBubbleSize();
551
+ var topLeft;
552
+ var bottomRight;
553
+ if (this.workspace.RTL) {
554
+ // TODO (#1562) for some reason this doesn't work with workspace scroll in RTL
555
+ topLeft = new goog.math.Coordinate(commentXY.x - commentBounds.width,
556
+ commentXY.y);
557
+ bottomRight = new goog.math.Coordinate(commentXY.x,
558
+ commentXY.y + commentBounds.height);
559
+ } else {
560
+ topLeft = new goog.math.Coordinate(commentXY.x, commentXY.y);
561
+ bottomRight = new goog.math.Coordinate(commentXY.x + commentBounds.width,
562
+ commentXY.y + commentBounds.height);
563
+ }
564
+ return {topLeft: topLeft, bottomRight: bottomRight};
565
+ };
566
+
567
+ /**
568
+ * Check whether this comment is currently minimized.
569
+ * @return {boolean} True if minimized
570
+ * @package
571
+ */
572
+ Blockly.ScratchBlockComment.prototype.isMinimized = function() {
573
+ return this.isMinimized_;
574
+ };
575
+
576
+ /**
577
+ * Show the context menu for this comment's bubble.
578
+ * @param {!Event} e The mouse event
579
+ * @private
580
+ */
581
+ Blockly.ScratchBlockComment.prototype.showContextMenu_ = function(e) {
582
+ var menuOptions = [];
583
+ menuOptions.push(Blockly.ContextMenu.commentDeleteOption(this, Blockly.Msg.DELETE));
584
+ Blockly.ContextMenu.show(e, menuOptions, this.block_.RTL);
585
+ };
586
+
587
+ /**
588
+ * Encode a comment subtree as XML with XY coordinates.
589
+ * @param {boolean=} opt_noId True if the encoder should skip the comment id.
590
+ * @return {!Element} Tree of XML elements.
591
+ * @package
592
+ */
593
+ Blockly.ScratchBlockComment.prototype.toXmlWithXY = function() {
594
+ var element = goog.dom.createDom('comment');
595
+ element.setAttribute('id', this.id);
596
+ element.textContent = this.text_;
597
+ element.setAttribute('x', Math.round(
598
+ this.workspace.RTL ? this.workspace.getWidth() - this.x_ : this.x_));
599
+ element.setAttribute('y', Math.round(this.y_));
600
+ element.setAttribute('h', this.height_);
601
+ element.setAttribute('w', this.width_);
602
+ return element;
603
+ };
604
+
605
+ /**
606
+ * Fire a create event for the given workspace comment, if comments are enabled.
607
+ * @param {!Blockly.WorkspaceComment} comment The comment that was just created.
608
+ * @package
609
+ */
610
+ Blockly.ScratchBlockComment.fireCreateEvent = function(comment) {
611
+ if (Blockly.Events.isEnabled()) {
612
+ var existingGroup = Blockly.Events.getGroup();
613
+ if (!existingGroup) {
614
+ Blockly.Events.setGroup(true);
615
+ }
616
+ try {
617
+ Blockly.Events.fire(new Blockly.Events.CommentCreate(comment));
618
+ } finally {
619
+ if (!existingGroup) {
620
+ Blockly.Events.setGroup(false);
621
+ }
622
+ }
623
+ }
624
+ };
625
+
626
+ /**
627
+ * Dispose of this comment.
628
+ */
629
+ Blockly.ScratchBlockComment.prototype.dispose = function() {
630
+ if (Blockly.Events.isEnabled()) {
631
+ // Emit delete event before disposal begins so that the
632
+ // event's reference to this comment contains all the relevant
633
+ // information (for undoing this event)
634
+ Blockly.Events.fire(new Blockly.Events.CommentDelete(this));
635
+ }
636
+ this.block_.comment = null;
637
+ this.workspace.removeTopComment(this);
638
+ Blockly.Icon.prototype.dispose.call(this);
639
+ };
640
+
641
+ /**
642
+ * Focus this comments textarea.
643
+ */
644
+ Blockly.ScratchBlockComment.prototype.focus = function() {
645
+ this.textarea_.focus();
646
+ };