@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,450 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2017 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 Extensions are functions that help initialize blocks, usually
23
+ * adding dynamic behavior such as onchange handlers and mutators. These
24
+ * are applied using Block.applyExtension(), or the JSON "extensions"
25
+ * array attribute.
26
+ * @author Anm@anm.me (Andrew n marshall)
27
+ */
28
+ 'use strict';
29
+
30
+ /**
31
+ * @name Blockly.Extensions
32
+ * @namespace
33
+ **/
34
+ goog.provide('Blockly.Extensions');
35
+
36
+ goog.require('Blockly.Mutator');
37
+ goog.require('Blockly.utils');
38
+
39
+ goog.require('goog.string');
40
+
41
+
42
+ /**
43
+ * The set of all registered extensions, keyed by extension name/id.
44
+ * @private
45
+ */
46
+ Blockly.Extensions.ALL_ = {};
47
+
48
+ /**
49
+ * Registers a new extension function. Extensions are functions that help
50
+ * initialize blocks, usually adding dynamic behavior such as onchange
51
+ * handlers and mutators. These are applied using Block.applyExtension(), or
52
+ * the JSON "extensions" array attribute.
53
+ * @param {string} name The name of this extension.
54
+ * @param {Function} initFn The function to initialize an extended block.
55
+ * @throws {Error} if the extension name is empty, the extension is already
56
+ * registered, or extensionFn is not a function.
57
+ */
58
+ Blockly.Extensions.register = function(name, initFn) {
59
+ if (!goog.isString(name) || goog.string.isEmptyOrWhitespace(name)) {
60
+ throw new Error('Error: Invalid extension name "' + name + '"');
61
+ }
62
+ if (Blockly.Extensions.ALL_[name]) {
63
+ throw new Error('Error: Extension "' + name + '" is already registered.');
64
+ }
65
+ if (!goog.isFunction(initFn)) {
66
+ throw new Error('Error: Extension "' + name + '" must be a function');
67
+ }
68
+ Blockly.Extensions.ALL_[name] = initFn;
69
+ };
70
+
71
+ /**
72
+ * Registers a new extension function that adds all key/value of mixinObj.
73
+ * @param {string} name The name of this extension.
74
+ * @param {!Object} mixinObj The values to mix in.
75
+ * @throws {Error} if the extension name is empty or the extension is already
76
+ * registered.
77
+ */
78
+ Blockly.Extensions.registerMixin = function(name, mixinObj) {
79
+ if (!goog.isObject(mixinObj)){
80
+ throw new Error('Error: Mixin "' + name + '" must be a object');
81
+ }
82
+ Blockly.Extensions.register(name, function() {
83
+ this.mixin(mixinObj);
84
+ });
85
+ };
86
+
87
+ /**
88
+ * Registers a new extension function that adds a mutator to the block.
89
+ * At register time this performs some basic sanity checks on the mutator.
90
+ * The wrapper may also add a mutator dialog to the block, if both compose and
91
+ * decompose are defined on the mixin.
92
+ * @param {string} name The name of this mutator extension.
93
+ * @param {!Object} mixinObj The values to mix in.
94
+ * @param {(function())=} opt_helperFn An optional function to apply after
95
+ * mixing in the object.
96
+ * @param {Array.<string>=} opt_blockList A list of blocks to appear in the
97
+ * flyout of the mutator dialog.
98
+ * @throws {Error} if the mutation is invalid or can't be applied to the block.
99
+ */
100
+ Blockly.Extensions.registerMutator = function(name, mixinObj, opt_helperFn,
101
+ opt_blockList) {
102
+ var errorPrefix = 'Error when registering mutator "' + name + '": ';
103
+
104
+ // Sanity check the mixin object before registering it.
105
+ Blockly.Extensions.checkHasFunction_(
106
+ errorPrefix, mixinObj.domToMutation, 'domToMutation');
107
+ Blockly.Extensions.checkHasFunction_(
108
+ errorPrefix, mixinObj.mutationToDom, 'mutationToDom');
109
+
110
+ var hasMutatorDialog =
111
+ Blockly.Extensions.checkMutatorDialog_(mixinObj, errorPrefix);
112
+
113
+ if (opt_helperFn && !goog.isFunction(opt_helperFn)) {
114
+ throw new Error('Extension "' + name + '" is not a function');
115
+ }
116
+
117
+ // Sanity checks passed.
118
+ Blockly.Extensions.register(name, function() {
119
+ if (hasMutatorDialog) {
120
+ this.setMutator(new Blockly.Mutator(opt_blockList));
121
+ }
122
+ // Mixin the object.
123
+ this.mixin(mixinObj);
124
+
125
+ if (opt_helperFn) {
126
+ opt_helperFn.apply(this);
127
+ }
128
+ });
129
+ };
130
+
131
+ /**
132
+ * Applies an extension method to a block. This should only be called during
133
+ * block construction.
134
+ * @param {string} name The name of the extension.
135
+ * @param {!Blockly.Block} block The block to apply the named extension to.
136
+ * @param {boolean} isMutator True if this extension defines a mutator.
137
+ * @throws {Error} if the extension is not found.
138
+ */
139
+ Blockly.Extensions.apply = function(name, block, isMutator) {
140
+ var extensionFn = Blockly.Extensions.ALL_[name];
141
+ if (!goog.isFunction(extensionFn)) {
142
+ throw new Error('Error: Extension "' + name + '" not found.');
143
+ }
144
+ if (isMutator) {
145
+ // Fail early if the block already has mutation properties.
146
+ Blockly.Extensions.checkNoMutatorProperties_(name, block);
147
+ } else {
148
+ // Record the old properties so we can make sure they don't change after
149
+ // applying the extension.
150
+ var mutatorProperties = Blockly.Extensions.getMutatorProperties_(block);
151
+ }
152
+ extensionFn.apply(block);
153
+
154
+ if (isMutator) {
155
+ var errorPrefix = 'Error after applying mutator "' + name + '": ';
156
+ Blockly.Extensions.checkBlockHasMutatorProperties_(errorPrefix, block);
157
+ } else {
158
+ if (!Blockly.Extensions.mutatorPropertiesMatch_(mutatorProperties, block)) {
159
+ throw new Error('Error when applying extension "' + name + '": ' +
160
+ 'mutation properties changed when applying a non-mutator extension.');
161
+ }
162
+ }
163
+ };
164
+
165
+ /**
166
+ * Check that the given value is a function.
167
+ * @param {string} errorPrefix The string to prepend to any error message.
168
+ * @param {*} func Function to check.
169
+ * @param {string} propertyName Which property to check.
170
+ * @throws {Error} if the property does not exist or is not a function.
171
+ * @private
172
+ */
173
+ Blockly.Extensions.checkHasFunction_ = function(errorPrefix, func,
174
+ propertyName) {
175
+ if (!func) {
176
+ throw new Error(errorPrefix +
177
+ 'missing required property "' + propertyName + '"');
178
+ } else if (typeof func != 'function') {
179
+ throw new Error(errorPrefix +
180
+ '" required property "' + propertyName + '" must be a function');
181
+ }
182
+ };
183
+
184
+ /**
185
+ * Check that the given block does not have any of the four mutator properties
186
+ * defined on it. This function should be called before applying a mutator
187
+ * extension to a block, to make sure we are not overwriting properties.
188
+ * @param {string} mutationName The name of the mutation to reference in error
189
+ * messages.
190
+ * @param {!Blockly.Block} block The block to check.
191
+ * @throws {Error} if any of the properties already exist on the block.
192
+ * @private
193
+ */
194
+ Blockly.Extensions.checkNoMutatorProperties_ = function(mutationName, block) {
195
+ var properties = Blockly.Extensions.getMutatorProperties_(block);
196
+ if (properties.length) {
197
+ throw new Error('Error: tried to apply mutation "' + mutationName +
198
+ '" to a block that already has mutator functions.' +
199
+ ' Block id: ' + block.id);
200
+ }
201
+ };
202
+
203
+ /**
204
+ * Check that the given object has both or neither of the functions required
205
+ * to have a mutator dialog.
206
+ * These functions are 'compose' and 'decompose'. If a block has one, it must
207
+ * have both.
208
+ * @param {!Object} object The object to check.
209
+ * @param {string} errorPrefix The string to prepend to any error message.
210
+ * @return {boolean} True if the object has both functions. False if it has
211
+ * neither function.
212
+ * @throws {Error} if the object has only one of the functions.
213
+ * @private
214
+ */
215
+ Blockly.Extensions.checkMutatorDialog_ = function(object, errorPrefix) {
216
+ var hasCompose = object.compose !== undefined;
217
+ var hasDecompose = object.decompose !== undefined;
218
+
219
+ if (hasCompose && hasDecompose) {
220
+ if (typeof object.compose != 'function') {
221
+ throw new Error(errorPrefix + 'compose must be a function.');
222
+ } else if (typeof object.decompose != 'function') {
223
+ throw new Error(errorPrefix + 'decompose must be a function.');
224
+ }
225
+ return true;
226
+ } else if (!hasCompose && !hasDecompose) {
227
+ return false;
228
+ } else {
229
+ throw new Error(errorPrefix +
230
+ 'Must have both or neither of "compose" and "decompose"');
231
+ }
232
+ };
233
+
234
+ /**
235
+ * Check that a block has required mutator properties. This should be called
236
+ * after applying a mutation extension.
237
+ * @param {string} errorPrefix The string to prepend to any error message.
238
+ * @param {!Blockly.Block} block The block to inspect.
239
+ * @private
240
+ */
241
+ Blockly.Extensions.checkBlockHasMutatorProperties_ = function(errorPrefix,
242
+ block) {
243
+ if (typeof block.domToMutation !== 'function') {
244
+ throw new Error(errorPrefix + 'Applying a mutator didn\'t add "domToMutation"');
245
+ }
246
+ if (typeof block.mutationToDom != 'function') {
247
+ throw new Error(errorPrefix +
248
+ 'Applying a mutator didn\'t add "mutationToDom"');
249
+ }
250
+
251
+ // A block with a mutator isn't required to have a mutation dialog, but
252
+ // it should still have both or neither of compose and decompose.
253
+ Blockly.Extensions.checkMutatorDialog_(block, errorPrefix);
254
+ };
255
+
256
+ /**
257
+ * Get a list of values of mutator properties on the given block.
258
+ * @param {!Blockly.Block} block The block to inspect.
259
+ * @return {!Array.<Object>} a list with all of the defined properties, which
260
+ * should be functions, but may be anything other than undefined.
261
+ * @private
262
+ */
263
+ Blockly.Extensions.getMutatorProperties_ = function(block) {
264
+ var result = [];
265
+ // List each function explicitly by reference to allow for renaming
266
+ // during compilation.
267
+ if (block.domToMutation !== undefined) {
268
+ result.push(block.domToMutation);
269
+ }
270
+ if (block.mutationToDom !== undefined) {
271
+ result.push(block.mutationToDom);
272
+ }
273
+ if (block.compose !== undefined) {
274
+ result.push(block.compose);
275
+ }
276
+ if (block.decompose !== undefined) {
277
+ result.push(block.decompose);
278
+ }
279
+ return result;
280
+ };
281
+
282
+ /**
283
+ * Check that the current mutator properties match a list of old mutator
284
+ * properties. This should be called after applying a non-mutator extension,
285
+ * to verify that the extension didn't change properties it shouldn't.
286
+ * @param {!Array.<Object>} oldProperties The old values to compare to.
287
+ * @param {!Blockly.Block} block The block to inspect for new values.
288
+ * @return {boolean} True if the property lists match.
289
+ * @private
290
+ */
291
+ Blockly.Extensions.mutatorPropertiesMatch_ = function(oldProperties, block) {
292
+ var newProperties = Blockly.Extensions.getMutatorProperties_(block);
293
+ if (newProperties.length != oldProperties.length) {
294
+ return false;
295
+ }
296
+ for (var i = 0; i < newProperties.length; i++) {
297
+ if (oldProperties[i] != newProperties[i]) {
298
+ return false;
299
+ }
300
+ }
301
+ return true;
302
+ };
303
+
304
+ /**
305
+ * Builds an extension function that will map a dropdown value to a tooltip
306
+ * string.
307
+ *
308
+ * This method includes multiple checks to ensure tooltips, dropdown options,
309
+ * and message references are aligned. This aims to catch errors as early as
310
+ * possible, without requiring developers to manually test tooltips under each
311
+ * option. After the page is loaded, each tooltip text string will be checked
312
+ * for matching message keys in the internationalized string table. Deferring
313
+ * this until the page is loaded decouples loading dependencies. Later, upon
314
+ * loading the first block of any given type, the extension will validate every
315
+ * dropdown option has a matching tooltip in the lookupTable. Errors are
316
+ * reported as warnings in the console, and are never fatal.
317
+ * @param {string} dropdownName The name of the field whose value is the key
318
+ * to the lookup table.
319
+ * @param {!Object.<string, string>} lookupTable The table of field values to
320
+ * tooltip text.
321
+ * @return {Function} The extension function.
322
+ */
323
+ Blockly.Extensions.buildTooltipForDropdown = function(dropdownName,
324
+ lookupTable) {
325
+ // List of block types already validated, to minimize duplicate warnings.
326
+ var blockTypesChecked = [];
327
+
328
+ // Check the tooltip string messages for invalid references.
329
+ // Wait for load, in case Blockly.Msg is not yet populated.
330
+ // runAfterPageLoad() does not run in a Node.js environment due to lack of
331
+ // document object, in which case skip the validation.
332
+ if (document) { // Relies on document.readyState
333
+ Blockly.utils.runAfterPageLoad(function() {
334
+ for (var key in lookupTable) {
335
+ // Will print warnings is reference is missing.
336
+ Blockly.utils.checkMessageReferences(lookupTable[key]);
337
+ }
338
+ });
339
+ }
340
+
341
+ /**
342
+ * The actual extension.
343
+ * @this {Blockly.Block}
344
+ */
345
+ var extensionFn = function() {
346
+ if (this.type && blockTypesChecked.indexOf(this.type) === -1) {
347
+ Blockly.Extensions.checkDropdownOptionsInTable_(
348
+ this, dropdownName, lookupTable);
349
+ blockTypesChecked.push(this.type);
350
+ }
351
+
352
+ this.setTooltip(function() {
353
+ var value = this.getFieldValue(dropdownName);
354
+ var tooltip = lookupTable[value];
355
+ if (tooltip == null) {
356
+ if (blockTypesChecked.indexOf(this.type) === -1) {
357
+ // Warn for missing values on generated tooltips.
358
+ var warning = 'No tooltip mapping for value ' + value +
359
+ ' of field ' + dropdownName;
360
+ if (this.type != null) {
361
+ warning += (' of block type ' + this.type);
362
+ }
363
+ console.warn(warning + '.');
364
+ }
365
+ } else {
366
+ tooltip = Blockly.utils.replaceMessageReferences(tooltip);
367
+ }
368
+ return tooltip;
369
+ }.bind(this));
370
+ };
371
+ return extensionFn;
372
+ };
373
+
374
+ /**
375
+ * Checks all options keys are present in the provided string lookup table.
376
+ * Emits console warnings when they are not.
377
+ * @param {!Blockly.Block} block The block containing the dropdown
378
+ * @param {string} dropdownName The name of the dropdown
379
+ * @param {!Object.<string, string>} lookupTable The string lookup table
380
+ * @private
381
+ */
382
+ Blockly.Extensions.checkDropdownOptionsInTable_ = function(block, dropdownName,
383
+ lookupTable) {
384
+ // Validate all dropdown options have values.
385
+ var dropdown = block.getField(dropdownName);
386
+ if (!dropdown.isOptionListDynamic()) {
387
+ var options = dropdown.getOptions();
388
+ for (var i = 0; i < options.length; ++i) {
389
+ var optionKey = options[i][1]; // label, then value
390
+ if (lookupTable[optionKey] == null) {
391
+ console.warn('No tooltip mapping for value ' + optionKey +
392
+ ' of field ' + dropdownName + ' of block type ' + block.type);
393
+ }
394
+ }
395
+ }
396
+ };
397
+
398
+ /**
399
+ * Builds an extension function that will install a dynamic tooltip. The
400
+ * tooltip message should include the string '%1' and that string will be
401
+ * replaced with the value of the named field.
402
+ * @param {string} msgTemplate The template form to of the message text, with
403
+ * %1 placeholder.
404
+ * @param {string} fieldName The field with the replacement value.
405
+ * @returns {Function} The extension function.
406
+ */
407
+ Blockly.Extensions.buildTooltipWithFieldValue =
408
+ function(msgTemplate, fieldName) {
409
+ // Check the tooltip string messages for invalid references.
410
+ // Wait for load, in case Blockly.Msg is not yet populated.
411
+ // runAfterPageLoad() does not run in a Node.js environment due to lack of
412
+ // document object, in which case skip the validation.
413
+ if (document) { // Relies on document.readyState
414
+ Blockly.utils.runAfterPageLoad(function() {
415
+ // Will print warnings is reference is missing.
416
+ Blockly.utils.checkMessageReferences(msgTemplate);
417
+ });
418
+ }
419
+
420
+ /**
421
+ * The actual extension.
422
+ * @this {Blockly.Block}
423
+ */
424
+ var extensionFn = function() {
425
+ this.setTooltip(function() {
426
+ return Blockly.utils.replaceMessageReferences(msgTemplate)
427
+ .replace('%1', this.getFieldValue(fieldName));
428
+ }.bind(this));
429
+ };
430
+ return extensionFn;
431
+ };
432
+
433
+ /**
434
+ * Configures the tooltip to mimic the parent block when connected. Otherwise,
435
+ * uses the tooltip text at the time this extension is initialized. This takes
436
+ * advantage of the fact that all other values from JSON are initialized before
437
+ * extensions.
438
+ * @this {Blockly.Block}
439
+ * @private
440
+ */
441
+ Blockly.Extensions.extensionParentTooltip_ = function() {
442
+ this.tooltipWhenNotConnected_ = this.tooltip;
443
+ this.setTooltip(function() {
444
+ var parent = this.getParent();
445
+ return (parent && parent.getInputsInline() && parent.tooltip) ||
446
+ this.tooltipWhenNotConnected_;
447
+ }.bind(this));
448
+ };
449
+ Blockly.Extensions.register('parent_tooltip_when_inline',
450
+ Blockly.Extensions.extensionParentTooltip_);