@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
package/core/inject.js ADDED
@@ -0,0 +1,496 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2011 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 Functions for injecting Blockly into a web page.
23
+ * @author fraser@google.com (Neil Fraser)
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.inject');
28
+
29
+ goog.require('Blockly.BlockDragSurfaceSvg');
30
+ goog.require('Blockly.Css');
31
+ goog.require('Blockly.constants');
32
+ goog.require('Blockly.DropDownDiv');
33
+ goog.require('Blockly.Grid');
34
+ goog.require('Blockly.Options');
35
+ goog.require('Blockly.WorkspaceSvg');
36
+ goog.require('Blockly.WorkspaceDragSurfaceSvg');
37
+ goog.require('goog.dom');
38
+ goog.require('goog.ui.Component');
39
+ goog.require('goog.userAgent');
40
+
41
+ /**
42
+ * Inject a Blockly editor into the specified container element (usually a div).
43
+ * @param {!Element|string} container Containing element, or its ID,
44
+ * or a CSS selector.
45
+ * @param {Object=} opt_options Optional dictionary of options.
46
+ * @return {!Blockly.Workspace} Newly created main workspace.
47
+ */
48
+ Blockly.inject = function(container, opt_options) {
49
+ if (goog.isString(container)) {
50
+ container = document.getElementById(container) ||
51
+ document.querySelector(container);
52
+ }
53
+ // Verify that the container is in document.
54
+ if (!goog.dom.contains(document, container)) {
55
+ throw 'Error: container is not in current document.';
56
+ }
57
+ var options = new Blockly.Options(opt_options || {});
58
+ var subContainer = goog.dom.createDom('div', 'injectionDiv');
59
+ container.appendChild(subContainer);
60
+
61
+ // Open the Field text cache and leave it open. See this issue for more information
62
+ // https://github.com/LLK/scratch-blocks/issues/1004
63
+ Blockly.Field.startCache();
64
+
65
+ var svg = Blockly.createDom_(subContainer, options);
66
+
67
+ // Create surfaces for dragging things. These are optimizations
68
+ // so that the broowser does not repaint during the drag.
69
+ var blockDragSurface = new Blockly.BlockDragSurfaceSvg(subContainer);
70
+ var workspaceDragSurface = null;
71
+
72
+ var workspace = Blockly.createMainWorkspace_(svg, options, blockDragSurface,
73
+ workspaceDragSurface);
74
+ Blockly.init_(workspace);
75
+ Blockly.mainWorkspace = workspace;
76
+
77
+ Blockly.svgResize(workspace);
78
+ return workspace;
79
+ };
80
+
81
+ /**
82
+ * Create the SVG image.
83
+ * @param {!Element} container Containing element.
84
+ * @param {!Blockly.Options} options Dictionary of options.
85
+ * @return {!Element} Newly created SVG image.
86
+ * @private
87
+ */
88
+ Blockly.createDom_ = function(container, options) {
89
+ // Sadly browsers (Chrome vs Firefox) are currently inconsistent in laying
90
+ // out content in RTL mode. Therefore Blockly forces the use of LTR,
91
+ // then manually positions content in RTL as needed.
92
+ container.setAttribute('dir', 'LTR');
93
+ // Closure can be trusted to create HTML widgets with the proper direction.
94
+ goog.ui.Component.setDefaultRightToLeft(options.RTL);
95
+
96
+ // Load CSS.
97
+ Blockly.Css.inject(options.hasCss, options.pathToMedia);
98
+
99
+ // Build the SVG DOM.
100
+ /*
101
+ <svg
102
+ xmlns="http://www.w3.org/2000/svg"
103
+ xmlns:html="http://www.w3.org/1999/xhtml"
104
+ xmlns:xlink="http://www.w3.org/1999/xlink"
105
+ version="1.1"
106
+ class="blocklySvg">
107
+ ...
108
+ </svg>
109
+ */
110
+ var svg = Blockly.utils.createSvgElement('svg', {
111
+ 'xmlns': 'http://www.w3.org/2000/svg',
112
+ 'xmlns:html': 'http://www.w3.org/1999/xhtml',
113
+ 'xmlns:xlink': 'http://www.w3.org/1999/xlink',
114
+ 'version': '1.1',
115
+ 'class': 'blocklySvg'
116
+ }, container);
117
+ /*
118
+ <defs>
119
+ ... filters go here ...
120
+ </defs>
121
+ */
122
+ var defs = Blockly.utils.createSvgElement('defs', {}, svg);
123
+ // Each filter/pattern needs a unique ID for the case of multiple Blockly
124
+ // instances on a page. Browser behaviour becomes undefined otherwise.
125
+ // https://neil.fraser.name/news/2015/11/01/
126
+ // TODO (tmickel): Look into whether block highlighting still works.
127
+ // Reference commit:
128
+ // https://github.com/google/blockly/commit/144be4d49f36fdba260a26edbd170ae75bbc37a6
129
+ var rnd = String(Math.random()).substring(2);
130
+
131
+ // Using a dilate distorts the block shape.
132
+ // Instead use a gaussian blur, and then set all alpha to 1 with a transfer.
133
+ var stackGlowFilter = Blockly.utils.createSvgElement('filter',
134
+ {
135
+ 'id': 'blocklyStackGlowFilter' + rnd,
136
+ 'height': '160%',
137
+ 'width': '180%',
138
+ y: '-30%',
139
+ x: '-40%'
140
+ },
141
+ defs);
142
+ options.stackGlowBlur = Blockly.utils.createSvgElement('feGaussianBlur',
143
+ {
144
+ 'in': 'SourceGraphic',
145
+ 'stdDeviation': Blockly.Colours.stackGlowSize
146
+ },
147
+ stackGlowFilter);
148
+ // Set all gaussian blur pixels to 1 opacity before applying flood
149
+ var componentTransfer = Blockly.utils.createSvgElement('feComponentTransfer', {'result': 'outBlur'}, stackGlowFilter);
150
+ Blockly.utils.createSvgElement('feFuncA',
151
+ {
152
+ 'type': 'table',
153
+ 'tableValues': '0' + goog.string.repeat(' 1', 16)
154
+ },
155
+ componentTransfer);
156
+ // Color the highlight
157
+ Blockly.utils.createSvgElement('feFlood',
158
+ {
159
+ 'flood-color': Blockly.Colours.stackGlow,
160
+ 'flood-opacity': Blockly.Colours.stackGlowOpacity,
161
+ 'result': 'outColor'
162
+ },
163
+ stackGlowFilter);
164
+ Blockly.utils.createSvgElement('feComposite',
165
+ {
166
+ 'in': 'outColor',
167
+ 'in2': 'outBlur',
168
+ 'operator': 'in',
169
+ 'result': 'outGlow'
170
+ },
171
+ stackGlowFilter);
172
+ Blockly.utils.createSvgElement('feComposite',
173
+ {
174
+ 'in': 'SourceGraphic',
175
+ 'in2': 'outGlow',
176
+ 'operator': 'over'
177
+ },
178
+ stackGlowFilter);
179
+
180
+ // Filter for replacement marker
181
+ var replacementGlowFilter = Blockly.utils.createSvgElement('filter',
182
+ {
183
+ 'id': 'blocklyReplacementGlowFilter' + rnd,
184
+ 'height': '160%',
185
+ 'width': '180%',
186
+ y: '-30%',
187
+ x: '-40%'
188
+ },
189
+ defs);
190
+ Blockly.utils.createSvgElement('feGaussianBlur',
191
+ {
192
+ 'in': 'SourceGraphic',
193
+ 'stdDeviation': Blockly.Colours.replacementGlowSize
194
+ },
195
+ replacementGlowFilter);
196
+ // Set all gaussian blur pixels to 1 opacity before applying flood
197
+ var componentTransfer = Blockly.utils.createSvgElement('feComponentTransfer',
198
+ {'result': 'outBlur'}, replacementGlowFilter);
199
+ Blockly.utils.createSvgElement('feFuncA',
200
+ {
201
+ 'type': 'table',
202
+ 'tableValues': '0' + goog.string.repeat(' 1', 16)
203
+ },
204
+ componentTransfer);
205
+ // Color the highlight
206
+ Blockly.utils.createSvgElement('feFlood',
207
+ {
208
+ 'flood-color': Blockly.Colours.replacementGlow,
209
+ 'flood-opacity': Blockly.Colours.replacementGlowOpacity,
210
+ 'result': 'outColor'
211
+ },
212
+ replacementGlowFilter);
213
+ Blockly.utils.createSvgElement('feComposite',
214
+ {
215
+ 'in': 'outColor',
216
+ 'in2': 'outBlur',
217
+ 'operator': 'in',
218
+ 'result': 'outGlow'
219
+ },
220
+ replacementGlowFilter);
221
+ Blockly.utils.createSvgElement('feComposite',
222
+ {
223
+ 'in': 'SourceGraphic',
224
+ 'in2': 'outGlow',
225
+ 'operator': 'over'
226
+ },
227
+ replacementGlowFilter);
228
+ /*
229
+ <pattern id="blocklyDisabledPattern837493" patternUnits="userSpaceOnUse"
230
+ width="10" height="10">
231
+ <rect width="10" height="10" fill="#aaa" />
232
+ <path d="M 0 0 L 10 10 M 10 0 L 0 10" stroke="#cc0" />
233
+ </pattern>
234
+ */
235
+ var disabledPattern = Blockly.utils.createSvgElement('pattern',
236
+ {
237
+ 'id': 'blocklyDisabledPattern' + rnd,
238
+ 'patternUnits': 'userSpaceOnUse',
239
+ 'width': 10,
240
+ 'height': 10
241
+ },
242
+ defs);
243
+ Blockly.utils.createSvgElement('rect',
244
+ {
245
+ 'width': 10,
246
+ 'height': 10,
247
+ 'fill': '#aaa'
248
+ },
249
+ disabledPattern);
250
+ Blockly.utils.createSvgElement('path',
251
+ {
252
+ 'd': 'M 0 0 L 10 10 M 10 0 L 0 10',
253
+ 'stroke': '#cc0'
254
+ },
255
+ disabledPattern);
256
+ options.stackGlowFilterId = stackGlowFilter.id;
257
+ options.replacementGlowFilterId = replacementGlowFilter.id;
258
+ options.disabledPatternId = disabledPattern.id;
259
+
260
+ options.gridPattern = Blockly.Grid.createDom(rnd, options.gridOptions, defs);
261
+ return svg;
262
+ };
263
+
264
+ /**
265
+ * Create a main workspace and add it to the SVG.
266
+ * @param {!Element} svg SVG element with pattern defined.
267
+ * @param {!Blockly.Options} options Dictionary of options.
268
+ * @param {!Blockly.BlockDragSurfaceSvg} blockDragSurface Drag surface SVG
269
+ * for the blocks.
270
+ * @param {!Blockly.WorkspaceDragSurfaceSvg} workspaceDragSurface Drag surface
271
+ * SVG for the workspace.
272
+ * @return {!Blockly.Workspace} Newly created main workspace.
273
+ * @private
274
+ */
275
+ Blockly.createMainWorkspace_ = function(svg, options, blockDragSurface, workspaceDragSurface) {
276
+ options.parentWorkspace = null;
277
+ var mainWorkspace = new Blockly.WorkspaceSvg(options, blockDragSurface, workspaceDragSurface);
278
+ mainWorkspace.scale = options.zoomOptions.startScale;
279
+ svg.appendChild(mainWorkspace.createDom('blocklyMainBackground'));
280
+
281
+ if (!options.hasCategories && options.languageTree) {
282
+ // Add flyout as an <svg> that is a sibling of the workspace svg.
283
+ var flyout = mainWorkspace.addFlyout_('svg');
284
+ Blockly.utils.insertAfter(flyout, svg);
285
+ }
286
+
287
+ // A null translation will also apply the correct initial scale.
288
+ mainWorkspace.translate(0, 0);
289
+ Blockly.mainWorkspace = mainWorkspace;
290
+
291
+ if (!options.readOnly && !options.hasScrollbars) {
292
+ var workspaceChanged = function() {
293
+ if (!mainWorkspace.isDragging()) {
294
+ var metrics = mainWorkspace.getMetrics();
295
+ var edgeLeft = metrics.viewLeft + metrics.absoluteLeft;
296
+ var edgeTop = metrics.viewTop + metrics.absoluteTop;
297
+ if (metrics.contentTop < edgeTop ||
298
+ metrics.contentTop + metrics.contentHeight >
299
+ metrics.viewHeight + edgeTop ||
300
+ metrics.contentLeft <
301
+ (options.RTL ? metrics.viewLeft : edgeLeft) ||
302
+ metrics.contentLeft + metrics.contentWidth > (options.RTL ?
303
+ metrics.viewWidth : metrics.viewWidth + edgeLeft)) {
304
+ // One or more blocks may be out of bounds. Bump them back in.
305
+ var MARGIN = 25;
306
+ var blocks = mainWorkspace.getTopBlocks(false);
307
+ for (var b = 0, block; block = blocks[b]; b++) {
308
+ var blockXY = block.getRelativeToSurfaceXY();
309
+ var blockHW = block.getHeightWidth();
310
+ // Bump any block that's above the top back inside.
311
+ var overflowTop = edgeTop + MARGIN - blockHW.height - blockXY.y;
312
+ if (overflowTop > 0) {
313
+ block.moveBy(0, overflowTop);
314
+ }
315
+ // Bump any block that's below the bottom back inside.
316
+ var overflowBottom =
317
+ edgeTop + metrics.viewHeight - MARGIN - blockXY.y;
318
+ if (overflowBottom < 0) {
319
+ block.moveBy(0, overflowBottom);
320
+ }
321
+ // Bump any block that's off the left back inside.
322
+ var overflowLeft = MARGIN + edgeLeft -
323
+ blockXY.x - (options.RTL ? 0 : blockHW.width);
324
+ if (overflowLeft > 0) {
325
+ block.moveBy(overflowLeft, 0);
326
+ }
327
+ // Bump any block that's off the right back inside.
328
+ var overflowRight = edgeLeft + metrics.viewWidth - MARGIN -
329
+ blockXY.x + (options.RTL ? blockHW.width : 0);
330
+ if (overflowRight < 0) {
331
+ block.moveBy(overflowRight, 0);
332
+ }
333
+ }
334
+ }
335
+ }
336
+ };
337
+ mainWorkspace.addChangeListener(workspaceChanged);
338
+ }
339
+ // The SVG is now fully assembled.
340
+ Blockly.svgResize(mainWorkspace);
341
+ Blockly.WidgetDiv.createDom();
342
+ Blockly.DropDownDiv.createDom();
343
+ Blockly.Tooltip.createDom();
344
+ return mainWorkspace;
345
+ };
346
+
347
+ /**
348
+ * Initialize Blockly with various handlers.
349
+ * @param {!Blockly.Workspace} mainWorkspace Newly created main workspace.
350
+ * @private
351
+ */
352
+ Blockly.init_ = function(mainWorkspace) {
353
+ var options = mainWorkspace.options;
354
+ var svg = mainWorkspace.getParentSvg();
355
+
356
+ // This fixes wheel events in Safari.
357
+ // This makes no sense, but it really does work.
358
+ // https://bugs.webkit.org/show_bug.cgi?id=226683#c4
359
+ svg.parentNode.addEventListener('wheel', function() {});
360
+
361
+ // Suppress the browser's context menu.
362
+ Blockly.bindEventWithChecks_(svg.parentNode, 'contextmenu', null,
363
+ function(e) {
364
+ if (!Blockly.utils.isTargetInput(e)) {
365
+ e.preventDefault();
366
+ }
367
+ });
368
+
369
+ var workspaceResizeHandler = Blockly.bindEventWithChecks_(window, 'resize',
370
+ null,
371
+ function() {
372
+ Blockly.hideChaffOnResize(true);
373
+ Blockly.svgResize(mainWorkspace);
374
+ });
375
+ mainWorkspace.setResizeHandlerWrapper(workspaceResizeHandler);
376
+
377
+ Blockly.inject.bindDocumentEvents_();
378
+
379
+ if (options.languageTree) {
380
+ if (mainWorkspace.toolbox_) {
381
+ mainWorkspace.toolbox_.init(mainWorkspace);
382
+ } else if (mainWorkspace.flyout_) {
383
+ // Build a fixed flyout with the root blocks.
384
+ mainWorkspace.flyout_.init(mainWorkspace);
385
+ mainWorkspace.flyout_.show(options.languageTree.childNodes);
386
+ mainWorkspace.flyout_.scrollToStart();
387
+ // Translate the workspace to avoid the fixed flyout.
388
+ if (options.horizontalLayout) {
389
+ mainWorkspace.scrollY = mainWorkspace.flyout_.height_;
390
+ if (options.toolboxPosition == Blockly.TOOLBOX_AT_BOTTOM) {
391
+ mainWorkspace.scrollY *= -1;
392
+ }
393
+ } else {
394
+ mainWorkspace.scrollX = mainWorkspace.flyout_.width_;
395
+ if (options.toolboxPosition == Blockly.TOOLBOX_AT_RIGHT) {
396
+ mainWorkspace.scrollX *= -1;
397
+ }
398
+ }
399
+ mainWorkspace.translate(mainWorkspace.scrollX, mainWorkspace.scrollY);
400
+ }
401
+ }
402
+
403
+ if (options.hasScrollbars) {
404
+ mainWorkspace.scrollbar = new Blockly.ScrollbarPair(mainWorkspace);
405
+ mainWorkspace.scrollbar.resize();
406
+ }
407
+
408
+ // Load the sounds.
409
+ if (options.hasSounds) {
410
+ Blockly.inject.loadSounds_(options.pathToMedia, mainWorkspace);
411
+ }
412
+ };
413
+
414
+ /**
415
+ * Bind document events, but only once. Destroying and reinjecting Blockly
416
+ * should not bind again.
417
+ * Bind events for scrolling the workspace.
418
+ * Most of these events should be bound to the SVG's surface.
419
+ * However, 'mouseup' has to be on the whole document so that a block dragged
420
+ * out of bounds and released will know that it has been released.
421
+ * Also, 'keydown' has to be on the whole document since the browser doesn't
422
+ * understand a concept of focus on the SVG image.
423
+ * @private
424
+ */
425
+ Blockly.inject.bindDocumentEvents_ = function() {
426
+ if (!Blockly.documentEventsBound_) {
427
+ Blockly.bindEventWithChecks_(document, 'keydown', null, Blockly.onKeyDown_);
428
+ // longStop needs to run to stop the context menu from showing up. It
429
+ // should run regardless of what other touch event handlers have run.
430
+ Blockly.bindEvent_(document, 'touchend', null, Blockly.longStop_);
431
+ Blockly.bindEvent_(document, 'touchcancel', null, Blockly.longStop_);
432
+ // Some iPad versions don't fire resize after portrait to landscape change.
433
+ if (goog.userAgent.IPAD) {
434
+ Blockly.bindEventWithChecks_(window, 'orientationchange', document,
435
+ function() {
436
+ // TODO(#397): Fix for multiple blockly workspaces.
437
+ Blockly.svgResize(Blockly.getMainWorkspace());
438
+ });
439
+ }
440
+ }
441
+ Blockly.documentEventsBound_ = true;
442
+ };
443
+
444
+ /**
445
+ * Load sounds for the given workspace.
446
+ * @param {string} pathToMedia The path to the media directory.
447
+ * @param {!Blockly.Workspace} workspace The workspace to load sounds for.
448
+ * @private
449
+ */
450
+ Blockly.inject.loadSounds_ = function(pathToMedia, workspace) {
451
+ var audioMgr = workspace.getAudioManager();
452
+ audioMgr.load(
453
+ [
454
+ pathToMedia + 'click.mp3',
455
+ pathToMedia + 'click.wav',
456
+ pathToMedia + 'click.ogg'
457
+ ],
458
+ 'click');
459
+ audioMgr.load(
460
+ [
461
+ pathToMedia + 'delete.mp3',
462
+ pathToMedia + 'delete.ogg',
463
+ pathToMedia + 'delete.wav'
464
+ ],
465
+ 'delete');
466
+
467
+ // Bind temporary hooks that preload the sounds.
468
+ var soundBinds = [];
469
+ var unbindSounds = function() {
470
+ while (soundBinds.length) {
471
+ Blockly.unbindEvent_(soundBinds.pop());
472
+ }
473
+ audioMgr.preload();
474
+ };
475
+
476
+ // opt_noCaptureIdentifier is true because this is an action to take on a
477
+ // click, not a drag.
478
+ // Android ignores any sound not loaded as a result of a user action.
479
+ soundBinds.push(
480
+ Blockly.bindEventWithChecks_(document, 'mousemove', null, unbindSounds,
481
+ /* opt_noCaptureIdentifier */ true));
482
+ soundBinds.push(
483
+ Blockly.bindEventWithChecks_(document, 'touchstart', null, unbindSounds,
484
+ /* opt_noCaptureIdentifier */ true));
485
+ };
486
+
487
+ /**
488
+ * Modify the block tree on the existing toolbox.
489
+ * @param {Node|string} tree DOM tree of blocks, or text representation of same.
490
+ * @deprecated April 2015
491
+ */
492
+ Blockly.updateToolbox = function(tree) {
493
+ console.warn('Deprecated call to Blockly.updateToolbox, ' +
494
+ 'use workspace.updateToolbox instead.');
495
+ Blockly.getMainWorkspace().updateToolbox(tree);
496
+ };