@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.
- package/.nvmrc +1 -0
- package/LICENSE +674 -0
- package/README.md +57 -0
- package/TRADEMARK +1 -0
- package/blockly_compressed_horizontal.js +2268 -0
- package/blockly_compressed_vertical.js +2296 -0
- package/blockly_uncompressed_horizontal.js +1212 -0
- package/blockly_uncompressed_vertical.js +1212 -0
- package/blocks_common/colour.js +61 -0
- package/blocks_common/math.js +159 -0
- package/blocks_common/matrix.js +54 -0
- package/blocks_common/note.js +58 -0
- package/blocks_common/text.js +57 -0
- package/blocks_compressed.js +37 -0
- package/blocks_compressed_horizontal.js +68 -0
- package/blocks_compressed_vertical.js +216 -0
- package/blocks_horizontal/control.js +212 -0
- package/blocks_horizontal/default_toolbox.js +139 -0
- package/blocks_horizontal/event.js +190 -0
- package/blocks_horizontal/wedo.js +325 -0
- package/blocks_vertical/control.js +532 -0
- package/blocks_vertical/data.js +666 -0
- package/blocks_vertical/default_toolbox.js +571 -0
- package/blocks_vertical/event.js +329 -0
- package/blocks_vertical/extensions.js +294 -0
- package/blocks_vertical/looks.js +591 -0
- package/blocks_vertical/motion.js +587 -0
- package/blocks_vertical/operators.js +470 -0
- package/blocks_vertical/procedures.js +1051 -0
- package/blocks_vertical/sensing.js +555 -0
- package/blocks_vertical/sound.js +246 -0
- package/blocks_vertical/vertical_extensions.js +289 -0
- package/build/gen_blocks.js +1 -0
- package/build/test_expect.js +1 -0
- package/build/test_input.js +1 -0
- package/build.py +647 -0
- package/cleanup.sh +101 -0
- package/core/block.js +1837 -0
- package/core/block_animations.js +107 -0
- package/core/block_drag_surface.js +299 -0
- package/core/block_dragger.js +424 -0
- package/core/block_events.js +531 -0
- package/core/block_render_svg_horizontal.js +892 -0
- package/core/block_render_svg_vertical.js +1734 -0
- package/core/block_svg.js +1355 -0
- package/core/blockly.js +620 -0
- package/core/blocks.js +37 -0
- package/core/bubble.js +664 -0
- package/core/bubble_dragger.js +285 -0
- package/core/colours.js +177 -0
- package/core/comment.js +293 -0
- package/core/comment_events.js +539 -0
- package/core/connection.js +776 -0
- package/core/connection_db.js +300 -0
- package/core/constants.js +408 -0
- package/core/contextmenu.js +534 -0
- package/core/css.js +1354 -0
- package/core/data_category.js +490 -0
- package/core/dragged_connection_manager.js +260 -0
- package/core/dropdowndiv.js +408 -0
- package/core/events.js +429 -0
- package/core/events_abstract.js +113 -0
- package/core/extensions.js +450 -0
- package/core/field.js +810 -0
- package/core/field_angle.js +410 -0
- package/core/field_checkbox.js +133 -0
- package/core/field_colour.js +253 -0
- package/core/field_colour_slider.js +387 -0
- package/core/field_date.js +353 -0
- package/core/field_dropdown.js +447 -0
- package/core/field_iconmenu.js +309 -0
- package/core/field_image.js +200 -0
- package/core/field_label.js +136 -0
- package/core/field_label_serializable.js +125 -0
- package/core/field_matrix.js +566 -0
- package/core/field_note.js +850 -0
- package/core/field_number.js +366 -0
- package/core/field_numberdropdown.js +77 -0
- package/core/field_textdropdown.js +164 -0
- package/core/field_textinput.js +675 -0
- package/core/field_textinput_removable.js +105 -0
- package/core/field_variable.js +385 -0
- package/core/field_variable_getter.js +185 -0
- package/core/field_vertical_separator.js +161 -0
- package/core/flyout_base.js +935 -0
- package/core/flyout_button.js +324 -0
- package/core/flyout_dragger.js +83 -0
- package/core/flyout_extension_category_header.js +159 -0
- package/core/flyout_horizontal.js +475 -0
- package/core/flyout_vertical.js +770 -0
- package/core/generator.js +426 -0
- package/core/gesture.js +1010 -0
- package/core/grid.js +227 -0
- package/core/icon.js +205 -0
- package/core/inject.js +496 -0
- package/core/input.js +285 -0
- package/core/insertion_marker_manager.js +678 -0
- package/core/intersection_observer.js +102 -0
- package/core/msg.js +62 -0
- package/core/mutator.js +426 -0
- package/core/names.js +198 -0
- package/core/options.js +244 -0
- package/core/procedures.js +739 -0
- package/core/rendered_connection.js +417 -0
- package/core/scratch_block_comment.js +646 -0
- package/core/scratch_blocks_utils.js +246 -0
- package/core/scratch_bubble.js +699 -0
- package/core/scratch_events.js +131 -0
- package/core/scratch_msgs.js +85 -0
- package/core/scrollbar.js +875 -0
- package/core/toolbox.js +803 -0
- package/core/tooltip.js +337 -0
- package/core/touch.js +226 -0
- package/core/trashcan.js +343 -0
- package/core/ui_events.js +91 -0
- package/core/ui_menu_utils.js +68 -0
- package/core/utils.js +825 -0
- package/core/variable_events.js +259 -0
- package/core/variable_map.js +415 -0
- package/core/variable_model.js +116 -0
- package/core/variables.js +674 -0
- package/core/warning.js +199 -0
- package/core/widgetdiv.js +344 -0
- package/core/workspace.js +673 -0
- package/core/workspace_audio.js +170 -0
- package/core/workspace_comment.js +426 -0
- package/core/workspace_comment_render_svg.js +706 -0
- package/core/workspace_comment_svg.js +609 -0
- package/core/workspace_drag_surface_svg.js +195 -0
- package/core/workspace_dragger.js +132 -0
- package/core/workspace_svg.js +2382 -0
- package/core/xml.js +930 -0
- package/core/zoom_controls.js +301 -0
- package/dist/horizontal.js +222 -0
- package/dist/vertical.js +222 -0
- package/dist/web/horizontal.js +232 -0
- package/dist/web/vertical.js +232 -0
- package/i18n/common.py +234 -0
- package/i18n/create_messages.py +162 -0
- package/i18n/create_scratch_msgs.js +69 -0
- package/i18n/dedup_json.py +73 -0
- package/i18n/js_to_json.js +46 -0
- package/i18n/js_to_json.py +136 -0
- package/i18n/json_to_js.js +52 -0
- package/i18n/json_to_js.py +185 -0
- package/i18n/sync_tx_translations.js +111 -0
- package/i18n/test_scratch_msgs.js +87 -0
- package/i18n/tests.py +47 -0
- package/i18n/xliff_to_json.py +232 -0
- package/local_build.sh +70 -0
- package/media/click.mp3 +0 -0
- package/media/click.ogg +0 -0
- package/media/click.wav +0 -0
- package/media/comment-arrow-down.svg +10 -0
- package/media/comment-arrow-up.svg +10 -0
- package/media/delete-x.svg +10 -0
- package/media/delete.mp3 +0 -0
- package/media/delete.ogg +0 -0
- package/media/delete.wav +0 -0
- package/media/dropdown-arrow-dark.svg +1 -0
- package/media/dropdown-arrow.svg +1 -0
- package/media/extensions/microbit-block-icon.svg +130 -0
- package/media/extensions/music-block-icon.svg +17 -0
- package/media/extensions/pen-block-icon.svg +19 -0
- package/media/extensions/wedo2-block-icon.svg +36 -0
- package/media/eyedropper.svg +22 -0
- package/media/green-flag.svg +17 -0
- package/media/handclosed.cur +0 -0
- package/media/handdelete.cur +0 -0
- package/media/handopen.cur +0 -0
- package/media/icons/arrow.svg +12 -0
- package/media/icons/arrow_button.svg +1 -0
- package/media/icons/control_forever.svg +1 -0
- package/media/icons/control_repeat.svg +1 -0
- package/media/icons/control_stop.svg +1 -0
- package/media/icons/control_wait.svg +1 -0
- package/media/icons/event_broadcast_blue.svg +1 -0
- package/media/icons/event_broadcast_coral.svg +1 -0
- package/media/icons/event_broadcast_green.svg +1 -0
- package/media/icons/event_broadcast_magenta.svg +1 -0
- package/media/icons/event_broadcast_orange.svg +1 -0
- package/media/icons/event_broadcast_purple.svg +1 -0
- package/media/icons/event_when-broadcast-received_blue.svg +1 -0
- package/media/icons/event_when-broadcast-received_coral.svg +1 -0
- package/media/icons/event_when-broadcast-received_green.svg +1 -0
- package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
- package/media/icons/event_when-broadcast-received_orange.svg +1 -0
- package/media/icons/event_when-broadcast-received_purple.svg +1 -0
- package/media/icons/event_whenflagclicked.svg +1 -0
- package/media/icons/remove.svg +19 -0
- package/media/icons/set-led_blue.svg +1 -0
- package/media/icons/set-led_coral.svg +1 -0
- package/media/icons/set-led_green.svg +1 -0
- package/media/icons/set-led_magenta.svg +1 -0
- package/media/icons/set-led_mystery.svg +1 -0
- package/media/icons/set-led_orange.svg +1 -0
- package/media/icons/set-led_purple.svg +1 -0
- package/media/icons/set-led_white.svg +1 -0
- package/media/icons/set-led_yellow.svg +1 -0
- package/media/icons/wedo_motor-clockwise.svg +1 -0
- package/media/icons/wedo_motor-counterclockwise.svg +1 -0
- package/media/icons/wedo_motor-speed_fast.svg +1 -0
- package/media/icons/wedo_motor-speed_med.svg +1 -0
- package/media/icons/wedo_motor-speed_slow.svg +1 -0
- package/media/icons/wedo_when-distance_close.svg +1 -0
- package/media/icons/wedo_when-tilt-backward.svg +1 -0
- package/media/icons/wedo_when-tilt-forward.svg +1 -0
- package/media/icons/wedo_when-tilt-left.svg +1 -0
- package/media/icons/wedo_when-tilt-right.svg +1 -0
- package/media/icons/wedo_when-tilt.svg +1 -0
- package/media/repeat.svg +18 -0
- package/media/rotate-left.svg +1 -0
- package/media/rotate-right.svg +1 -0
- package/media/sprites.png +0 -0
- package/media/status-not-ready.svg +13 -0
- package/media/status-ready.svg +13 -0
- package/media/zoom-in.svg +1 -0
- package/media/zoom-out.svg +1 -0
- package/media/zoom-reset.svg +1 -0
- package/msg/js/en.js +290 -0
- package/msg/json/en.json +285 -0
- package/msg/messages.js +359 -0
- package/msg/scratch_msgs.js +22969 -0
- package/package.json +60 -0
- package/pull_from_blockly.sh +151 -0
- package/renovate.json5 +15 -0
- package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
- package/shim/blockly_compressed_horizontal.goog.js +1 -0
- package/shim/blockly_compressed_horizontal.js +1 -0
- package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_vertical.Blockly.js +1 -0
- package/shim/blockly_compressed_vertical.goog.js +1 -0
- package/shim/blockly_compressed_vertical.js +1 -0
- package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
- package/shim/blocks_compressed_horizontal.js +1 -0
- package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
- package/shim/blocks_compressed_vertical.js +1 -0
- package/shim/gh-pages.js +1 -0
- package/shim/horizontal.js +1 -0
- package/shim/index.js +17 -0
- package/shim/vertical.js +1 -0
- package/universal-python.js +82 -0
|
@@ -0,0 +1,534 @@
|
|
|
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 Functionality for the right-click context menus.
|
|
23
|
+
* @author fraser@google.com (Neil Fraser)
|
|
24
|
+
*/
|
|
25
|
+
'use strict';
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @name Blockly.ContextMenu
|
|
29
|
+
* @namespace
|
|
30
|
+
*/
|
|
31
|
+
goog.provide('Blockly.ContextMenu');
|
|
32
|
+
|
|
33
|
+
goog.require('Blockly.Events.BlockCreate');
|
|
34
|
+
goog.require('Blockly.scratchBlocksUtils');
|
|
35
|
+
goog.require('Blockly.utils');
|
|
36
|
+
goog.require('Blockly.utils.uiMenu');
|
|
37
|
+
|
|
38
|
+
goog.require('goog.dom');
|
|
39
|
+
goog.require('goog.events');
|
|
40
|
+
goog.require('goog.style');
|
|
41
|
+
goog.require('goog.ui.Menu');
|
|
42
|
+
goog.require('goog.ui.MenuItem');
|
|
43
|
+
goog.require('goog.userAgent');
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Which block is the context menu attached to?
|
|
48
|
+
* @type {Blockly.Block}
|
|
49
|
+
*/
|
|
50
|
+
Blockly.ContextMenu.currentBlock = null;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Opaque data that can be passed to unbindEvent_.
|
|
54
|
+
* @type {Array.<!Array>}
|
|
55
|
+
* @private
|
|
56
|
+
*/
|
|
57
|
+
Blockly.ContextMenu.eventWrapper_ = null;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Construct the menu based on the list of options and show the menu.
|
|
61
|
+
* @param {!Event} e Mouse event.
|
|
62
|
+
* @param {!Array.<!Object>} options Array of menu options.
|
|
63
|
+
* @param {boolean} rtl True if RTL, false if LTR.
|
|
64
|
+
*/
|
|
65
|
+
Blockly.ContextMenu.show = function(e, options, rtl) {
|
|
66
|
+
Blockly.WidgetDiv.show(Blockly.ContextMenu, rtl, null);
|
|
67
|
+
if (!options.length) {
|
|
68
|
+
Blockly.ContextMenu.hide();
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
var menu = Blockly.ContextMenu.populate_(options, rtl);
|
|
72
|
+
|
|
73
|
+
goog.events.listen(
|
|
74
|
+
menu, goog.ui.Component.EventType.ACTION, Blockly.ContextMenu.hide);
|
|
75
|
+
|
|
76
|
+
Blockly.ContextMenu.position_(menu, e, rtl);
|
|
77
|
+
// 1ms delay is required for focusing on context menus because some other
|
|
78
|
+
// mouse event is still waiting in the queue and clears focus.
|
|
79
|
+
setTimeout(function() {menu.getElement().focus();}, 1);
|
|
80
|
+
Blockly.ContextMenu.currentBlock = null; // May be set by Blockly.Block.
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Create the context menu object and populate it with the given options.
|
|
85
|
+
* @param {!Array.<!Object>} options Array of menu options.
|
|
86
|
+
* @param {boolean} rtl True if RTL, false if LTR.
|
|
87
|
+
* @return {!goog.ui.Menu} The menu that will be shown on right click.
|
|
88
|
+
* @private
|
|
89
|
+
*/
|
|
90
|
+
Blockly.ContextMenu.populate_ = function(options, rtl) {
|
|
91
|
+
/* Here's what one option object looks like:
|
|
92
|
+
{text: 'Make It So',
|
|
93
|
+
enabled: true,
|
|
94
|
+
callback: Blockly.MakeItSo}
|
|
95
|
+
*/
|
|
96
|
+
var menu = new goog.ui.Menu();
|
|
97
|
+
menu.setRightToLeft(rtl);
|
|
98
|
+
|
|
99
|
+
// Sometimes the context menu can be created such that the mouse is hovering over an item in the menu
|
|
100
|
+
// When this happens, a contextmenu event is immediately sent to that item
|
|
101
|
+
// Obviously we don't want that to trigger an item to be selected.
|
|
102
|
+
var acceptContextMenuEvents = false;
|
|
103
|
+
setTimeout(function() {
|
|
104
|
+
acceptContextMenuEvents = true;
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
for (var i = 0, option; option = options[i]; i++) {
|
|
108
|
+
var menuItem = new goog.ui.MenuItem(option.text);
|
|
109
|
+
menuItem.setRightToLeft(rtl);
|
|
110
|
+
menu.addChild(menuItem, true);
|
|
111
|
+
menuItem.setEnabled(option.enabled);
|
|
112
|
+
if (option.enabled) {
|
|
113
|
+
goog.events.listen(
|
|
114
|
+
menuItem, goog.ui.Component.EventType.ACTION, option.callback);
|
|
115
|
+
menuItem.handleContextMenu = function(/* e */) {
|
|
116
|
+
if (!acceptContextMenuEvents) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
// Right-clicking on menu option should count as a click.
|
|
120
|
+
goog.events.dispatchEvent(this, goog.ui.Component.EventType.ACTION);
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
return menu;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Add the menu to the page and position it correctly.
|
|
129
|
+
* @param {!goog.ui.Menu} menu The menu to add and position.
|
|
130
|
+
* @param {!Event} e Mouse event for the right click that is making the context
|
|
131
|
+
* menu appear.
|
|
132
|
+
* @param {boolean} rtl True if RTL, false if LTR.
|
|
133
|
+
* @private
|
|
134
|
+
*/
|
|
135
|
+
Blockly.ContextMenu.position_ = function(menu, e, rtl) {
|
|
136
|
+
// Record windowSize and scrollOffset before adding menu.
|
|
137
|
+
var viewportBBox = Blockly.utils.getViewportBBox();
|
|
138
|
+
// This one is just a point, but we'll pretend that it's a rect so we can use
|
|
139
|
+
// some helper functions.
|
|
140
|
+
var anchorBBox = {
|
|
141
|
+
top: e.clientY + viewportBBox.top,
|
|
142
|
+
bottom: e.clientY + viewportBBox.top,
|
|
143
|
+
left: e.clientX + viewportBBox.left,
|
|
144
|
+
right: e.clientX + viewportBBox.left
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
Blockly.ContextMenu.createWidget_(menu);
|
|
148
|
+
var menuSize = Blockly.utils.uiMenu.getSize(menu);
|
|
149
|
+
|
|
150
|
+
if (rtl) {
|
|
151
|
+
Blockly.utils.uiMenu.adjustBBoxesForRTL(viewportBBox, anchorBBox, menuSize);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
Blockly.WidgetDiv.positionWithAnchor(viewportBBox, anchorBBox, menuSize, rtl);
|
|
155
|
+
// Calling menuDom.focus() has to wait until after the menu has been placed
|
|
156
|
+
// correctly. Otherwise it will cause a page scroll to get the misplaced menu
|
|
157
|
+
// in view. See issue #1329.
|
|
158
|
+
menu.getElement().focus();
|
|
159
|
+
|
|
160
|
+
// https://github.com/LLK/scratch-blocks/pull/2834
|
|
161
|
+
menu.setVisible(true, true, e);
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Create and render the menu widget inside Blockly's widget div.
|
|
166
|
+
* @param {!goog.ui.Menu} menu The menu to add to the widget div.
|
|
167
|
+
* @private
|
|
168
|
+
*/
|
|
169
|
+
Blockly.ContextMenu.createWidget_ = function(menu) {
|
|
170
|
+
var div = Blockly.WidgetDiv.DIV;
|
|
171
|
+
menu.render(div);
|
|
172
|
+
var menuDom = menu.getElement();
|
|
173
|
+
Blockly.utils.addClass(menuDom, 'blocklyContextMenu');
|
|
174
|
+
// Prevent system context menu when right-clicking a Blockly context menu.
|
|
175
|
+
Blockly.bindEventWithChecks_(
|
|
176
|
+
menuDom, 'contextmenu', null, Blockly.utils.noEvent);
|
|
177
|
+
// Enable autofocus after the initial render to avoid issue #1329.
|
|
178
|
+
menu.setAllowAutoFocus(true);
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Hide the context menu.
|
|
183
|
+
*/
|
|
184
|
+
Blockly.ContextMenu.hide = function() {
|
|
185
|
+
Blockly.WidgetDiv.hideIfOwner(Blockly.ContextMenu);
|
|
186
|
+
Blockly.ContextMenu.currentBlock = null;
|
|
187
|
+
if (Blockly.ContextMenu.eventWrapper_) {
|
|
188
|
+
Blockly.unbindEvent_(Blockly.ContextMenu.eventWrapper_);
|
|
189
|
+
}
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Create a callback function that creates and configures a block,
|
|
194
|
+
* then places the new block next to the original.
|
|
195
|
+
* @param {!Blockly.Block} block Original block.
|
|
196
|
+
* @param {!Element} xml XML representation of new block.
|
|
197
|
+
* @return {!Function} Function that creates a block.
|
|
198
|
+
*/
|
|
199
|
+
Blockly.ContextMenu.callbackFactory = function(block, xml) {
|
|
200
|
+
return function() {
|
|
201
|
+
Blockly.Events.disable();
|
|
202
|
+
try {
|
|
203
|
+
var newBlock = Blockly.Xml.domToBlock(xml, block.workspace);
|
|
204
|
+
// Move the new block next to the old block.
|
|
205
|
+
var xy = block.getRelativeToSurfaceXY();
|
|
206
|
+
if (block.RTL) {
|
|
207
|
+
xy.x -= Blockly.SNAP_RADIUS;
|
|
208
|
+
} else {
|
|
209
|
+
xy.x += Blockly.SNAP_RADIUS;
|
|
210
|
+
}
|
|
211
|
+
xy.y += Blockly.SNAP_RADIUS * 2;
|
|
212
|
+
newBlock.moveBy(xy.x, xy.y);
|
|
213
|
+
} finally {
|
|
214
|
+
Blockly.Events.enable();
|
|
215
|
+
}
|
|
216
|
+
if (Blockly.Events.isEnabled() && !newBlock.isShadow()) {
|
|
217
|
+
Blockly.Events.fire(new Blockly.Events.BlockCreate(newBlock));
|
|
218
|
+
}
|
|
219
|
+
newBlock.select();
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
// Helper functions for creating context menu options.
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Make a context menu option for deleting the current block.
|
|
227
|
+
* @param {!Blockly.BlockSvg} block The block where the right-click originated.
|
|
228
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
229
|
+
* @package
|
|
230
|
+
*/
|
|
231
|
+
Blockly.ContextMenu.blockDeleteOption = function(block) {
|
|
232
|
+
// Option to delete this block but not blocks lower in the stack.
|
|
233
|
+
// Count the number of blocks that are nested in this block,
|
|
234
|
+
// ignoring shadows and without ordering.
|
|
235
|
+
var descendantCount = block.getDescendants(false, true).length;
|
|
236
|
+
var nextBlock = block.getNextBlock();
|
|
237
|
+
if (nextBlock) {
|
|
238
|
+
// Blocks in the current stack would survive this block's deletion.
|
|
239
|
+
descendantCount -= nextBlock.getDescendants(false, true).length;
|
|
240
|
+
}
|
|
241
|
+
var deleteOption = {
|
|
242
|
+
text: descendantCount == 1 ? Blockly.Msg.DELETE_BLOCK :
|
|
243
|
+
Blockly.Msg.DELETE_X_BLOCKS.replace('%1', String(descendantCount)),
|
|
244
|
+
enabled: true,
|
|
245
|
+
callback: function() {
|
|
246
|
+
Blockly.Events.setGroup(true);
|
|
247
|
+
block.dispose(true, true);
|
|
248
|
+
Blockly.Events.setGroup(false);
|
|
249
|
+
}
|
|
250
|
+
};
|
|
251
|
+
return deleteOption;
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Make a context menu option for showing help for the current block.
|
|
256
|
+
* @param {!Blockly.BlockSvg} block The block where the right-click originated.
|
|
257
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
258
|
+
* @package
|
|
259
|
+
*/
|
|
260
|
+
Blockly.ContextMenu.blockHelpOption = function(block) {
|
|
261
|
+
var url = goog.isFunction(block.helpUrl) ? block.helpUrl() : block.helpUrl;
|
|
262
|
+
var helpOption = {
|
|
263
|
+
enabled: !!url,
|
|
264
|
+
text: Blockly.Msg.HELP,
|
|
265
|
+
callback: function() {
|
|
266
|
+
block.showHelp_();
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
return helpOption;
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Make a context menu option for duplicating the current block.
|
|
274
|
+
* @param {!Blockly.BlockSvg} block The block where the right-click originated.
|
|
275
|
+
* @param {!Event} event Event that caused the context menu to open.
|
|
276
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
277
|
+
* @package
|
|
278
|
+
*/
|
|
279
|
+
Blockly.ContextMenu.blockDuplicateOption = function(block, event) {
|
|
280
|
+
var duplicateOption = {
|
|
281
|
+
text: Blockly.Msg.DUPLICATE,
|
|
282
|
+
enabled: true,
|
|
283
|
+
callback:
|
|
284
|
+
Blockly.scratchBlocksUtils.duplicateAndDragCallback(block, event)
|
|
285
|
+
};
|
|
286
|
+
return duplicateOption;
|
|
287
|
+
};
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* Make a context menu option for adding or removing comments on the current
|
|
291
|
+
* block.
|
|
292
|
+
* @param {!Blockly.BlockSvg} block The block where the right-click originated.
|
|
293
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
294
|
+
* @package
|
|
295
|
+
*/
|
|
296
|
+
Blockly.ContextMenu.blockCommentOption = function(block) {
|
|
297
|
+
var commentOption = {
|
|
298
|
+
enabled: !goog.userAgent.IE
|
|
299
|
+
};
|
|
300
|
+
// If there's already a comment, add an option to delete it.
|
|
301
|
+
if (block.comment) {
|
|
302
|
+
commentOption.text = Blockly.Msg.REMOVE_COMMENT;
|
|
303
|
+
commentOption.callback = function() {
|
|
304
|
+
block.setCommentText(null);
|
|
305
|
+
};
|
|
306
|
+
} else {
|
|
307
|
+
// If there's no comment, add an option to create a comment.
|
|
308
|
+
commentOption.text = Blockly.Msg.ADD_COMMENT;
|
|
309
|
+
commentOption.callback = function() {
|
|
310
|
+
block.setCommentText('');
|
|
311
|
+
block.comment.focus();
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
return commentOption;
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Make a context menu option for undoing the most recent action on the
|
|
319
|
+
* workspace.
|
|
320
|
+
* @param {!Blockly.WorkspaceSvg} ws The workspace where the right-click
|
|
321
|
+
* originated.
|
|
322
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
323
|
+
* @package
|
|
324
|
+
*/
|
|
325
|
+
Blockly.ContextMenu.wsUndoOption = function(ws) {
|
|
326
|
+
return {
|
|
327
|
+
text: Blockly.Msg.UNDO,
|
|
328
|
+
enabled: ws.hasUndoStack(),
|
|
329
|
+
callback: ws.undo.bind(ws, false)
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
/**
|
|
334
|
+
* Make a context menu option for redoing the most recent action on the
|
|
335
|
+
* workspace.
|
|
336
|
+
* @param {!Blockly.WorkspaceSvg} ws The workspace where the right-click
|
|
337
|
+
* originated.
|
|
338
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
339
|
+
* @package
|
|
340
|
+
*/
|
|
341
|
+
Blockly.ContextMenu.wsRedoOption = function(ws) {
|
|
342
|
+
return {
|
|
343
|
+
text: Blockly.Msg.REDO,
|
|
344
|
+
enabled: ws.hasRedoStack(),
|
|
345
|
+
callback: ws.undo.bind(ws, true)
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* Make a context menu option for cleaning up blocks on the workspace, by
|
|
351
|
+
* aligning them vertically.
|
|
352
|
+
* @param {!Blockly.WorkspaceSvg} ws The workspace where the right-click
|
|
353
|
+
* originated.
|
|
354
|
+
* @param {number} numTopBlocks The number of top blocks on the workspace.
|
|
355
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
356
|
+
* @package
|
|
357
|
+
*/
|
|
358
|
+
Blockly.ContextMenu.wsCleanupOption = function(ws, numTopBlocks) {
|
|
359
|
+
return {
|
|
360
|
+
text: Blockly.Msg.CLEAN_UP,
|
|
361
|
+
enabled: numTopBlocks > 1,
|
|
362
|
+
callback: ws.cleanUp.bind(ws, true)
|
|
363
|
+
};
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* Helper function for toggling delete state on blocks on the workspace, to be
|
|
368
|
+
* called from a right-click menu.
|
|
369
|
+
* @param {!Array.<!Blockly.BlockSvg>} topBlocks The list of top blocks on the
|
|
370
|
+
* the workspace.
|
|
371
|
+
* @param {boolean} shouldCollapse True if the blocks should be collapsed, false
|
|
372
|
+
* if they should be expanded.
|
|
373
|
+
* @private
|
|
374
|
+
*/
|
|
375
|
+
Blockly.ContextMenu.toggleCollapseFn_ = function(topBlocks, shouldCollapse) {
|
|
376
|
+
// Add a little animation to collapsing and expanding.
|
|
377
|
+
var DELAY = 10;
|
|
378
|
+
var ms = 0;
|
|
379
|
+
for (var i = 0; i < topBlocks.length; i++) {
|
|
380
|
+
var block = topBlocks[i];
|
|
381
|
+
while (block) {
|
|
382
|
+
setTimeout(block.setCollapsed.bind(block, shouldCollapse), ms);
|
|
383
|
+
block = block.getNextBlock();
|
|
384
|
+
ms += DELAY;
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
};
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* Make a context menu option for collapsing all block stacks on the workspace.
|
|
391
|
+
* @param {boolean} hasExpandedBlocks Whether there are any non-collapsed blocks
|
|
392
|
+
* on the workspace.
|
|
393
|
+
* @param {!Array.<!Blockly.BlockSvg>} topBlocks The list of top blocks on the
|
|
394
|
+
* the workspace.
|
|
395
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
396
|
+
* @package
|
|
397
|
+
*/
|
|
398
|
+
Blockly.ContextMenu.wsCollapseOption = function(hasExpandedBlocks, topBlocks) {
|
|
399
|
+
return {
|
|
400
|
+
enabled: hasExpandedBlocks,
|
|
401
|
+
text: Blockly.Msg.COLLAPSE_ALL,
|
|
402
|
+
callback: function() {
|
|
403
|
+
Blockly.ContextMenu.toggleCollapseFn_(topBlocks, true);
|
|
404
|
+
}
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Make a context menu option for expanding all block stacks on the workspace.
|
|
410
|
+
* @param {boolean} hasCollapsedBlocks Whether there are any collapsed blocks
|
|
411
|
+
* on the workspace.
|
|
412
|
+
* @param {!Array.<!Blockly.BlockSvg>} topBlocks The list of top blocks on the
|
|
413
|
+
* the workspace.
|
|
414
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
415
|
+
* @package
|
|
416
|
+
*/
|
|
417
|
+
Blockly.ContextMenu.wsExpandOption = function(hasCollapsedBlocks, topBlocks) {
|
|
418
|
+
return {
|
|
419
|
+
enabled: hasCollapsedBlocks,
|
|
420
|
+
text: Blockly.Msg.EXPAND_ALL,
|
|
421
|
+
callback: function() {
|
|
422
|
+
Blockly.ContextMenu.toggleCollapseFn_(topBlocks, false);
|
|
423
|
+
}
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Make a context menu option for deleting the current workspace comment.
|
|
429
|
+
* @param {!Blockly.WorkspaceCommentSvg} comment The workspace comment where the
|
|
430
|
+
* right-click originated.
|
|
431
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
432
|
+
* @package
|
|
433
|
+
*/
|
|
434
|
+
Blockly.ContextMenu.commentDeleteOption = function(comment) {
|
|
435
|
+
var deleteOption = {
|
|
436
|
+
text: Blockly.Msg.DELETE,
|
|
437
|
+
enabled: true,
|
|
438
|
+
callback: function() {
|
|
439
|
+
Blockly.Events.setGroup(true);
|
|
440
|
+
comment.dispose(true, true);
|
|
441
|
+
Blockly.Events.setGroup(false);
|
|
442
|
+
}
|
|
443
|
+
};
|
|
444
|
+
return deleteOption;
|
|
445
|
+
};
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Make a context menu option for duplicating the current workspace comment.
|
|
449
|
+
* @param {!Blockly.WorkspaceCommentSvg} comment The workspace comment where the
|
|
450
|
+
* right-click originated.
|
|
451
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
452
|
+
* @package
|
|
453
|
+
*/
|
|
454
|
+
Blockly.ContextMenu.commentDuplicateOption = function(comment) {
|
|
455
|
+
var duplicateOption = {
|
|
456
|
+
text: Blockly.Msg.DUPLICATE,
|
|
457
|
+
enabled: true,
|
|
458
|
+
callback: function() {
|
|
459
|
+
Blockly.duplicate_(comment);
|
|
460
|
+
}
|
|
461
|
+
};
|
|
462
|
+
return duplicateOption;
|
|
463
|
+
};
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* Make a context menu option for adding a comment on the workspace.
|
|
467
|
+
* @param {!Blockly.WorkspaceSvg} ws The workspace where the right-click
|
|
468
|
+
* originated.
|
|
469
|
+
* @param {!Event} e The right-click mouse event.
|
|
470
|
+
* @return {!Object} A menu option, containing text, enabled, and a callback.
|
|
471
|
+
* @package
|
|
472
|
+
*/
|
|
473
|
+
Blockly.ContextMenu.workspaceCommentOption = function(ws, e) {
|
|
474
|
+
// Helper function to create and position a comment correctly based on the
|
|
475
|
+
// location of the mouse event.
|
|
476
|
+
var addWsComment = function() {
|
|
477
|
+
// Disable events while this comment is getting created
|
|
478
|
+
// so that we can fire a single create event for this comment
|
|
479
|
+
// at the end (instead of CommentCreate followed by CommentMove,
|
|
480
|
+
// which results in unexpected undo behavior).
|
|
481
|
+
var disabled = false;
|
|
482
|
+
if (Blockly.Events.isEnabled()) {
|
|
483
|
+
Blockly.Events.disable();
|
|
484
|
+
disabled = true;
|
|
485
|
+
}
|
|
486
|
+
var comment = new Blockly.WorkspaceCommentSvg(
|
|
487
|
+
ws, '', Blockly.WorkspaceCommentSvg.DEFAULT_SIZE,
|
|
488
|
+
Blockly.WorkspaceCommentSvg.DEFAULT_SIZE, false);
|
|
489
|
+
|
|
490
|
+
var injectionDiv = ws.getInjectionDiv();
|
|
491
|
+
// Bounding rect coordinates are in client coordinates, meaning that they
|
|
492
|
+
// are in pixels relative to the upper left corner of the visible browser
|
|
493
|
+
// window. These coordinates change when you scroll the browser window.
|
|
494
|
+
var boundingRect = injectionDiv.getBoundingClientRect();
|
|
495
|
+
|
|
496
|
+
// The client coordinates offset by the injection div's upper left corner.
|
|
497
|
+
var clientOffsetPixels = new goog.math.Coordinate(
|
|
498
|
+
e.clientX - boundingRect.left, e.clientY - boundingRect.top);
|
|
499
|
+
|
|
500
|
+
// The offset in pixels between the main workspace's origin and the upper
|
|
501
|
+
// left corner of the injection div.
|
|
502
|
+
var mainOffsetPixels = ws.getOriginOffsetInPixels();
|
|
503
|
+
|
|
504
|
+
// The position of the new comment in pixels relative to the origin of the
|
|
505
|
+
// main workspace.
|
|
506
|
+
var finalOffsetPixels = goog.math.Coordinate.difference(clientOffsetPixels,
|
|
507
|
+
mainOffsetPixels);
|
|
508
|
+
|
|
509
|
+
// The position of the new comment in main workspace coordinates.
|
|
510
|
+
var finalOffsetMainWs = finalOffsetPixels.scale(1 / ws.scale);
|
|
511
|
+
|
|
512
|
+
var commentX = finalOffsetMainWs.x;
|
|
513
|
+
var commentY = finalOffsetMainWs.y;
|
|
514
|
+
comment.moveBy(commentX, commentY);
|
|
515
|
+
if (ws.rendered) {
|
|
516
|
+
comment.initSvg();
|
|
517
|
+
comment.render(false);
|
|
518
|
+
comment.select();
|
|
519
|
+
}
|
|
520
|
+
if (disabled) {
|
|
521
|
+
Blockly.Events.enable();
|
|
522
|
+
}
|
|
523
|
+
Blockly.WorkspaceComment.fireCreateEvent(comment);
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
var wsCommentOption = {enabled: true};
|
|
527
|
+
wsCommentOption.text = Blockly.Msg.ADD_COMMENT;
|
|
528
|
+
wsCommentOption.callback = function() {
|
|
529
|
+
addWsComment();
|
|
530
|
+
};
|
|
531
|
+
return wsCommentOption;
|
|
532
|
+
};
|
|
533
|
+
|
|
534
|
+
// End helper functions for creating context menu options.
|