@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,447 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2012 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 Dropdown input field. Used for editable titles and variables.
23
+ * In the interests of a consistent UI, the toolbox shares some functions and
24
+ * properties with the context menu.
25
+ * @author fraser@google.com (Neil Fraser)
26
+ */
27
+ 'use strict';
28
+
29
+ goog.provide('Blockly.FieldDropdown');
30
+
31
+ goog.require('Blockly.Field');
32
+ goog.require('Blockly.DropDownDiv');
33
+ goog.require('goog.dom');
34
+ goog.require('goog.events');
35
+ goog.require('goog.style');
36
+ goog.require('goog.ui.Menu');
37
+ goog.require('goog.ui.MenuItem');
38
+ goog.require('goog.userAgent');
39
+
40
+
41
+ /**
42
+ * Class for an editable dropdown field.
43
+ * @param {(!Array.<!Array>|!Function)} menuGenerator An array of options
44
+ * for a dropdown list, or a function which generates these options.
45
+ * @param {Function=} opt_validator A function that is executed when a new
46
+ * option is selected, with the newly selected value as its sole argument.
47
+ * If it returns a value, that value (which must be one of the options) will
48
+ * become selected in place of the newly selected option, unless the return
49
+ * value is null, in which case the change is aborted.
50
+ * @extends {Blockly.Field}
51
+ * @constructor
52
+ */
53
+ Blockly.FieldDropdown = function(menuGenerator, opt_validator) {
54
+ this.menuGenerator_ = menuGenerator;
55
+ this.trimOptions_();
56
+ var firstTuple = this.getOptions()[0];
57
+
58
+ // Call parent's constructor.
59
+ Blockly.FieldDropdown.superClass_.constructor.call(this, firstTuple[1],
60
+ opt_validator);
61
+ this.addArgType('dropdown');
62
+ };
63
+ goog.inherits(Blockly.FieldDropdown, Blockly.Field);
64
+
65
+ /**
66
+ * Construct a FieldDropdown from a JSON arg object.
67
+ * @param {!Object} element A JSON object with options.
68
+ * @returns {!Blockly.FieldDropdown} The new field instance.
69
+ * @package
70
+ * @nocollapse
71
+ */
72
+ Blockly.FieldDropdown.fromJson = function(element) {
73
+ return new Blockly.FieldDropdown(element['options']);
74
+ };
75
+
76
+ /**
77
+ * Horizontal distance that a checkmark overhangs the dropdown.
78
+ */
79
+ Blockly.FieldDropdown.CHECKMARK_OVERHANG = 25;
80
+
81
+ /**
82
+ * Mouse cursor style when over the hotspot that initiates the editor.
83
+ */
84
+ Blockly.FieldDropdown.prototype.CURSOR = 'default';
85
+
86
+ /**
87
+ * Closure menu item currently selected.
88
+ * @type {?goog.ui.MenuItem}
89
+ */
90
+ Blockly.FieldDropdown.prototype.selectedItem = null;
91
+
92
+ /**
93
+ * Language-neutral currently selected string or image object.
94
+ * @type {string|!Object}
95
+ * @private
96
+ */
97
+ Blockly.FieldDropdown.prototype.value_ = '';
98
+
99
+ /**
100
+ * SVG image element if currently selected option is an image, or null.
101
+ * @type {SVGElement}
102
+ * @private
103
+ */
104
+ Blockly.FieldDropdown.prototype.imageElement_ = null;
105
+
106
+ /**
107
+ * Object with src, height, width, and alt attributes if currently selected
108
+ * option is an image, or null.
109
+ * @type {Object}
110
+ * @private
111
+ */
112
+ Blockly.FieldDropdown.prototype.imageJson_ = null;
113
+
114
+ /**
115
+ * Install this dropdown on a block.
116
+ */
117
+ Blockly.FieldDropdown.prototype.init = function() {
118
+ if (this.fieldGroup_) {
119
+ // Dropdown has already been initialized once.
120
+ return;
121
+ }
122
+ // Add dropdown arrow: "option ▾" (LTR) or "▾ אופציה" (RTL)
123
+ // Positioned on render, after text size is calculated.
124
+ /** @type {Number} */
125
+ this.arrowSize_ = 12;
126
+ /** @type {Number} */
127
+ this.arrowX_ = 0;
128
+ /** @type {Number} */
129
+ this.arrowY_ = 11;
130
+ this.arrow_ = Blockly.utils.createSvgElement('image', {
131
+ 'height': this.arrowSize_ + 'px',
132
+ 'width': this.arrowSize_ + 'px'
133
+ });
134
+ this.arrow_.setAttributeNS('http://www.w3.org/1999/xlink',
135
+ 'xlink:href', Blockly.mainWorkspace.options.pathToMedia + 'dropdown-arrow.svg');
136
+ this.className_ += ' blocklyDropdownText';
137
+
138
+ Blockly.FieldDropdown.superClass_.init.call(this);
139
+ // If not in a shadow block, draw a box.
140
+ if (!this.sourceBlock_.isShadow()) {
141
+ this.box_ = Blockly.utils.createSvgElement('rect', {
142
+ 'rx': Blockly.BlockSvg.CORNER_RADIUS,
143
+ 'ry': Blockly.BlockSvg.CORNER_RADIUS,
144
+ 'x': 0,
145
+ 'y': 0,
146
+ 'width': this.size_.width,
147
+ 'height': this.size_.height,
148
+ 'stroke': this.sourceBlock_.getColourTertiary(),
149
+ 'fill': this.sourceBlock_.getColour(),
150
+ 'class': 'blocklyBlockBackground',
151
+ 'fill-opacity': 1
152
+ }, null);
153
+ this.fieldGroup_.insertBefore(this.box_, this.textElement_);
154
+ }
155
+ // Force a reset of the text to add the arrow.
156
+ var text = this.text_;
157
+ this.text_ = null;
158
+ this.setText(text);
159
+ };
160
+
161
+ /**
162
+ * Create a dropdown menu under the text.
163
+ * @private
164
+ */
165
+ Blockly.FieldDropdown.prototype.showEditor_ = function() {
166
+ var options = this.getOptions();
167
+ if (options.length == 0) return;
168
+
169
+ this.dropDownOpen_ = true;
170
+ // If there is an existing drop-down someone else owns, hide it immediately and clear it.
171
+ Blockly.DropDownDiv.hideWithoutAnimation();
172
+ Blockly.DropDownDiv.clearContent();
173
+
174
+ var contentDiv = Blockly.DropDownDiv.getContentDiv();
175
+
176
+ var thisField = this;
177
+
178
+ function callback(e) {
179
+ var menu = this;
180
+ var menuItem = e.target;
181
+ if (menuItem) {
182
+ thisField.onItemSelected(menu, menuItem);
183
+ }
184
+ Blockly.DropDownDiv.hide();
185
+ Blockly.Events.setGroup(false);
186
+ }
187
+
188
+ var menu = new goog.ui.Menu();
189
+ menu.setRightToLeft(this.sourceBlock_.RTL);
190
+ for (var i = 0; i < options.length; i++) {
191
+ var content = options[i][0]; // Human-readable text or image.
192
+ var value = options[i][1]; // Language-neutral value.
193
+ if (typeof content == 'object') {
194
+ // An image, not text.
195
+ var image = new Image(content['width'], content['height']);
196
+ image.src = content['src'];
197
+ image.alt = content['alt'] || '';
198
+ content = image;
199
+ }
200
+ var menuItem = new goog.ui.MenuItem(content);
201
+ menuItem.setRightToLeft(this.sourceBlock_.RTL);
202
+ menuItem.setValue(value);
203
+ menuItem.setCheckable(true);
204
+ menu.addChild(menuItem, true);
205
+ var checked = (value == this.value_);
206
+ menuItem.setChecked(checked);
207
+ if (checked) {
208
+ this.selectedItem = menuItem;
209
+ }
210
+ }
211
+ // Listen for mouse/keyboard events.
212
+ goog.events.listen(menu, goog.ui.Component.EventType.ACTION, callback);
213
+
214
+ // Record windowSize and scrollOffset before adding menu.
215
+ menu.render(contentDiv);
216
+ var menuDom = menu.getElement();
217
+ Blockly.utils.addClass(menuDom, 'blocklyDropdownMenu');
218
+ // Record menuSize after adding menu.
219
+ var menuSize = goog.style.getSize(menuDom);
220
+ // Recalculate height for the total content, not only box height.
221
+ menuSize.height = menuDom.scrollHeight;
222
+
223
+ var primaryColour = (this.sourceBlock_.isShadow()) ?
224
+ this.sourceBlock_.parentBlock_.getColour() : this.sourceBlock_.getColour();
225
+
226
+ Blockly.DropDownDiv.setColour(primaryColour, this.sourceBlock_.getColourTertiary());
227
+
228
+ var category = (this.sourceBlock_.isShadow()) ?
229
+ this.sourceBlock_.parentBlock_.getCategory() : this.sourceBlock_.getCategory();
230
+ Blockly.DropDownDiv.setCategory(category);
231
+
232
+ // Calculate positioning based on the field position.
233
+ var scale = this.sourceBlock_.workspace.scale;
234
+ var bBox = {width: this.size_.width, height: this.size_.height};
235
+ bBox.width *= scale;
236
+ bBox.height *= scale;
237
+ var position = this.fieldGroup_.getBoundingClientRect();
238
+ var primaryX = position.left + bBox.width / 2;
239
+ var primaryY = position.top + bBox.height;
240
+ var secondaryX = primaryX;
241
+ var secondaryY = position.top;
242
+ // Set bounds to workspace; show the drop-down.
243
+ Blockly.DropDownDiv.setBoundsElement(this.sourceBlock_.workspace.getParentSvg().parentNode);
244
+ Blockly.DropDownDiv.show(
245
+ this, primaryX, primaryY, secondaryX, secondaryY, this.onHide.bind(this));
246
+
247
+ menu.setAllowAutoFocus(true);
248
+ menuDom.focus();
249
+
250
+ // Update colour to look selected.
251
+ if (!this.disableColourChange_) {
252
+ if (this.sourceBlock_.isShadow()) {
253
+ this.sourceBlock_.setShadowColour(this.sourceBlock_.getColourQuaternary());
254
+ } else if (this.box_) {
255
+ this.box_.setAttribute('fill', this.sourceBlock_.getColourQuaternary());
256
+ }
257
+ }
258
+ };
259
+
260
+ /**
261
+ * Callback for when the drop-down is hidden.
262
+ */
263
+ Blockly.FieldDropdown.prototype.onHide = function() {
264
+ this.dropDownOpen_ = false;
265
+ // Update colour to look selected.
266
+ if (!this.disableColourChange_ && this.sourceBlock_) {
267
+ if (this.sourceBlock_.isShadow()) {
268
+ this.sourceBlock_.clearShadowColour();
269
+ } else if (this.box_) {
270
+ this.box_.setAttribute('fill', this.sourceBlock_.getColour());
271
+ }
272
+ }
273
+ };
274
+
275
+ /**
276
+ * Handle the selection of an item in the dropdown menu.
277
+ * @param {!goog.ui.Menu} menu The Menu component clicked.
278
+ * @param {!goog.ui.MenuItem} menuItem The MenuItem selected within menu.
279
+ */
280
+ Blockly.FieldDropdown.prototype.onItemSelected = function(menu, menuItem) {
281
+ var value = menuItem.getValue();
282
+ if (this.sourceBlock_) {
283
+ // Call any validation function, and allow it to override.
284
+ value = this.callValidator(value);
285
+ }
286
+ // If the value of the menu item is a function, call it and do not select it.
287
+ if (typeof value == 'function') {
288
+ value();
289
+ return;
290
+ }
291
+ if (value !== null) {
292
+ this.setValue(value);
293
+ }
294
+ };
295
+
296
+ /**
297
+ * @private
298
+ */
299
+ Blockly.FieldDropdown.prototype.trimOptions_ = function() {
300
+ this.prefixField = null;
301
+ this.suffixField = null;
302
+ var options = this.menuGenerator_;
303
+ if (!goog.isArray(options)) {
304
+ return;
305
+ }
306
+
307
+ // Localize label text and image alt text.
308
+ for (var i = 0; i < options.length; i++) {
309
+ var label = options[i][0];
310
+ if (typeof label == 'string') {
311
+ options[i][0] = Blockly.utils.replaceMessageReferences(label);
312
+ } else {
313
+ if (label.alt != null) {
314
+ options[i][0].alt = Blockly.utils.replaceMessageReferences(label.alt);
315
+ }
316
+ }
317
+ }
318
+ };
319
+
320
+ /**
321
+ * @return {boolean} True if the option list is generated by a function.
322
+ * Otherwise false.
323
+ */
324
+ Blockly.FieldDropdown.prototype.isOptionListDynamic = function() {
325
+ return goog.isFunction(this.menuGenerator_);
326
+ };
327
+
328
+ /**
329
+ * Return a list of the options for this dropdown.
330
+ * @return {!Array.<!Array>} Array of option tuples:
331
+ * (human-readable text or image, language-neutral name).
332
+ */
333
+ Blockly.FieldDropdown.prototype.getOptions = function() {
334
+ if (goog.isFunction(this.menuGenerator_)) {
335
+ return this.menuGenerator_.call(this);
336
+ }
337
+ return /** @type {!Array.<!Array.<string>>} */ (this.menuGenerator_);
338
+ };
339
+
340
+ /**
341
+ * Get the language-neutral value from this dropdown menu.
342
+ * @return {string} Current text.
343
+ */
344
+ Blockly.FieldDropdown.prototype.getValue = function() {
345
+ return this.value_;
346
+ };
347
+
348
+ /**
349
+ * Set the language-neutral value for this dropdown menu.
350
+ * @param {string} newValue New value to set.
351
+ */
352
+ Blockly.FieldDropdown.prototype.setValue = function(newValue) {
353
+ if (newValue === null || newValue === this.value_) {
354
+ return; // No change if null.
355
+ }
356
+ if (this.sourceBlock_ && Blockly.Events.isEnabled()) {
357
+ Blockly.Events.fire(new Blockly.Events.BlockChange(
358
+ this.sourceBlock_, 'field', this.name, this.value_, newValue));
359
+ }
360
+ // Clear menu item for old value.
361
+ if (this.selectedItem) {
362
+ this.selectedItem.setChecked(false);
363
+ this.selectedItem = null;
364
+ }
365
+ this.value_ = newValue;
366
+ // Look up and display the human-readable text.
367
+ var options = this.getOptions();
368
+ for (var i = 0; i < options.length; i++) {
369
+ // Options are tuples of human-readable text and language-neutral values.
370
+ if (options[i][1] == newValue) {
371
+ var content = options[i][0];
372
+ if (typeof content == 'object') {
373
+ this.imageJson_ = content;
374
+ this.text_ = content.alt;
375
+ } else {
376
+ this.imageJson_ = null;
377
+ this.text_ = content;
378
+ }
379
+ // Always rerender if either the value or the text has changed.
380
+ this.forceRerender();
381
+ return;
382
+ }
383
+ }
384
+ // Value not found. Add it, maybe it will become valid once set
385
+ // (like variable names).
386
+ this.text_ = newValue;
387
+ this.forceRerender();
388
+ };
389
+
390
+ /**
391
+ * Sets the text in this field. Trigger a rerender of the source block.
392
+ * @param {?string} text New text.
393
+ */
394
+ Blockly.FieldDropdown.prototype.setText = function(text) {
395
+ if (text === null || text === this.text_) {
396
+ // No change if null.
397
+ return;
398
+ }
399
+ this.text_ = text;
400
+ this.updateTextNode_();
401
+
402
+ if (this.textElement_) {
403
+ this.textElement_.parentNode.appendChild(this.arrow_);
404
+ }
405
+ if (this.sourceBlock_ && this.sourceBlock_.rendered) {
406
+ this.sourceBlock_.render();
407
+ this.sourceBlock_.bumpNeighbours_();
408
+ }
409
+ };
410
+
411
+ /**
412
+ * Position a drop-down arrow at the appropriate location at render-time.
413
+ * @param {number} x X position the arrow is being rendered at, in px.
414
+ * @return {number} Amount of space the arrow is taking up, in px.
415
+ */
416
+ Blockly.FieldDropdown.prototype.positionArrow = function(x) {
417
+ if (!this.arrow_) {
418
+ return 0;
419
+ }
420
+
421
+ var addedWidth = 0;
422
+ if (this.sourceBlock_.RTL) {
423
+ this.arrowX_ = this.arrowSize_ - Blockly.BlockSvg.DROPDOWN_ARROW_PADDING;
424
+ addedWidth = this.arrowSize_ + Blockly.BlockSvg.DROPDOWN_ARROW_PADDING;
425
+ } else {
426
+ this.arrowX_ = x + Blockly.BlockSvg.DROPDOWN_ARROW_PADDING / 2;
427
+ addedWidth = this.arrowSize_ + Blockly.BlockSvg.DROPDOWN_ARROW_PADDING;
428
+ }
429
+ if (this.box_) {
430
+ // Bump positioning to the right for a box-type drop-down.
431
+ this.arrowX_ += Blockly.BlockSvg.BOX_FIELD_PADDING;
432
+ }
433
+ this.arrow_.setAttribute('transform',
434
+ 'translate(' + this.arrowX_ + ',' + this.arrowY_ + ')');
435
+ return addedWidth;
436
+ };
437
+
438
+ /**
439
+ * Close the dropdown menu if this input is being deleted.
440
+ */
441
+ Blockly.FieldDropdown.prototype.dispose = function() {
442
+ this.selectedItem = null;
443
+ Blockly.WidgetDiv.hideIfOwner(this);
444
+ Blockly.FieldDropdown.superClass_.dispose.call(this);
445
+ };
446
+
447
+ Blockly.Field.register('field_dropdown', Blockly.FieldDropdown);