@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
package/core/comment.js
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
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 Object representing a code comment.
|
|
23
|
+
* @author fraser@google.com (Neil Fraser)
|
|
24
|
+
*/
|
|
25
|
+
'use strict';
|
|
26
|
+
|
|
27
|
+
goog.provide('Blockly.Comment');
|
|
28
|
+
|
|
29
|
+
goog.require('Blockly.Bubble');
|
|
30
|
+
goog.require('Blockly.Events.BlockChange');
|
|
31
|
+
goog.require('Blockly.Events.Ui');
|
|
32
|
+
goog.require('Blockly.Icon');
|
|
33
|
+
goog.require('goog.userAgent');
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Class for a comment.
|
|
38
|
+
* @param {!Blockly.Block} block The block associated with this comment.
|
|
39
|
+
* @extends {Blockly.Icon}
|
|
40
|
+
* @constructor
|
|
41
|
+
*/
|
|
42
|
+
Blockly.Comment = function(block) {
|
|
43
|
+
Blockly.Comment.superClass_.constructor.call(this, block);
|
|
44
|
+
this.createIcon();
|
|
45
|
+
};
|
|
46
|
+
goog.inherits(Blockly.Comment, Blockly.Icon);
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Comment text (if bubble is not visible).
|
|
50
|
+
* @private
|
|
51
|
+
*/
|
|
52
|
+
Blockly.Comment.prototype.text_ = '';
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Width of bubble.
|
|
56
|
+
* @private
|
|
57
|
+
*/
|
|
58
|
+
Blockly.Comment.prototype.width_ = 160;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Height of bubble.
|
|
62
|
+
* @private
|
|
63
|
+
*/
|
|
64
|
+
Blockly.Comment.prototype.height_ = 80;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Draw the comment icon.
|
|
68
|
+
* @param {!Element} group The icon group.
|
|
69
|
+
* @private
|
|
70
|
+
*/
|
|
71
|
+
Blockly.Comment.prototype.drawIcon_ = function(group) {
|
|
72
|
+
// Circle.
|
|
73
|
+
Blockly.utils.createSvgElement('circle',
|
|
74
|
+
{'class': 'blocklyIconShape', 'r': '8', 'cx': '8', 'cy': '8'},
|
|
75
|
+
group);
|
|
76
|
+
// Can't use a real '?' text character since different browsers and operating
|
|
77
|
+
// systems render it differently.
|
|
78
|
+
// Body of question mark.
|
|
79
|
+
Blockly.utils.createSvgElement('path',
|
|
80
|
+
{
|
|
81
|
+
'class': 'blocklyIconSymbol',
|
|
82
|
+
'd': 'm6.8,10h2c0.003,-0.617 0.271,-0.962 0.633,-1.266 2.875,-2.405' +
|
|
83
|
+
'0.607,-5.534 -3.765,-3.874v1.7c3.12,-1.657 3.698,0.118 2.336,1.25' +
|
|
84
|
+
'-1.201,0.998 -1.201,1.528 -1.204,2.19z'
|
|
85
|
+
},
|
|
86
|
+
group);
|
|
87
|
+
// Dot of question mark.
|
|
88
|
+
Blockly.utils.createSvgElement('rect',
|
|
89
|
+
{
|
|
90
|
+
'class': 'blocklyIconSymbol',
|
|
91
|
+
'x': '6.8',
|
|
92
|
+
'y': '10.78',
|
|
93
|
+
'height': '2',
|
|
94
|
+
'width': '2'
|
|
95
|
+
},
|
|
96
|
+
group);
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Create the editor for the comment's bubble.
|
|
101
|
+
* @return {!Element} The top-level node of the editor.
|
|
102
|
+
* @private
|
|
103
|
+
*/
|
|
104
|
+
Blockly.Comment.prototype.createEditor_ = function() {
|
|
105
|
+
/* Create the editor. Here's the markup that will be generated:
|
|
106
|
+
<foreignObject x="8" y="8" width="164" height="164">
|
|
107
|
+
<body xmlns="http://www.w3.org/1999/xhtml" class="blocklyMinimalBody">
|
|
108
|
+
<textarea xmlns="http://www.w3.org/1999/xhtml"
|
|
109
|
+
class="blocklyCommentTextarea"
|
|
110
|
+
style="height: 164px; width: 164px;"></textarea>
|
|
111
|
+
</body>
|
|
112
|
+
</foreignObject>
|
|
113
|
+
*/
|
|
114
|
+
this.foreignObject_ = Blockly.utils.createSvgElement('foreignObject',
|
|
115
|
+
{'x': Blockly.Bubble.BORDER_WIDTH, 'y': Blockly.Bubble.BORDER_WIDTH},
|
|
116
|
+
null);
|
|
117
|
+
var body = document.createElementNS(Blockly.HTML_NS, 'body');
|
|
118
|
+
body.setAttribute('xmlns', Blockly.HTML_NS);
|
|
119
|
+
body.className = 'blocklyMinimalBody';
|
|
120
|
+
var textarea = document.createElementNS(Blockly.HTML_NS, 'textarea');
|
|
121
|
+
textarea.className = 'blocklyCommentTextarea';
|
|
122
|
+
textarea.setAttribute('dir', this.block_.RTL ? 'RTL' : 'LTR');
|
|
123
|
+
body.appendChild(textarea);
|
|
124
|
+
this.textarea_ = textarea;
|
|
125
|
+
this.foreignObject_.appendChild(body);
|
|
126
|
+
Blockly.bindEventWithChecks_(textarea, 'mouseup', this, this.textareaFocus_);
|
|
127
|
+
// Don't zoom with mousewheel.
|
|
128
|
+
Blockly.bindEventWithChecks_(textarea, 'wheel', this, function(e) {
|
|
129
|
+
e.stopPropagation();
|
|
130
|
+
});
|
|
131
|
+
Blockly.bindEventWithChecks_(textarea, 'change', this, function(_e) {
|
|
132
|
+
if (this.text_ != textarea.value) {
|
|
133
|
+
Blockly.Events.fire(new Blockly.Events.BlockChange(
|
|
134
|
+
this.block_, 'comment', null, this.text_, textarea.value));
|
|
135
|
+
this.text_ = textarea.value;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
setTimeout(function() {
|
|
139
|
+
textarea.focus();
|
|
140
|
+
}, 0);
|
|
141
|
+
return this.foreignObject_;
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Add or remove editability of the comment.
|
|
146
|
+
* @override
|
|
147
|
+
*/
|
|
148
|
+
Blockly.Comment.prototype.updateEditable = function() {
|
|
149
|
+
if (this.isVisible()) {
|
|
150
|
+
// Toggling visibility will force a rerendering.
|
|
151
|
+
this.setVisible(false);
|
|
152
|
+
this.setVisible(true);
|
|
153
|
+
}
|
|
154
|
+
// Allow the icon to update.
|
|
155
|
+
Blockly.Icon.prototype.updateEditable.call(this);
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* Callback function triggered when the bubble has resized.
|
|
160
|
+
* Resize the text area accordingly.
|
|
161
|
+
* @private
|
|
162
|
+
*/
|
|
163
|
+
Blockly.Comment.prototype.resizeBubble_ = function() {
|
|
164
|
+
if (this.isVisible()) {
|
|
165
|
+
var size = this.bubble_.getBubbleSize();
|
|
166
|
+
var doubleBorderWidth = 2 * Blockly.Bubble.BORDER_WIDTH;
|
|
167
|
+
this.foreignObject_.setAttribute('width', size.width - doubleBorderWidth);
|
|
168
|
+
this.foreignObject_.setAttribute('height', size.height - doubleBorderWidth);
|
|
169
|
+
this.textarea_.style.width = (size.width - doubleBorderWidth - 4) + 'px';
|
|
170
|
+
this.textarea_.style.height = (size.height - doubleBorderWidth - 4) + 'px';
|
|
171
|
+
}
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Show or hide the comment bubble.
|
|
176
|
+
* @param {boolean} visible True if the bubble should be visible.
|
|
177
|
+
*/
|
|
178
|
+
Blockly.Comment.prototype.setVisible = function(visible) {
|
|
179
|
+
if (visible == this.isVisible()) {
|
|
180
|
+
// No change.
|
|
181
|
+
return;
|
|
182
|
+
}
|
|
183
|
+
Blockly.Events.fire(
|
|
184
|
+
new Blockly.Events.Ui(this.block_, 'commentOpen', !visible, visible));
|
|
185
|
+
if ((!this.block_.isEditable() && !this.textarea_) || goog.userAgent.IE) {
|
|
186
|
+
// Steal the code from warnings to make an uneditable text bubble.
|
|
187
|
+
// MSIE does not support foreignobject; textareas are impossible.
|
|
188
|
+
// http://msdn.microsoft.com/en-us/library/hh834675%28v=vs.85%29.aspx
|
|
189
|
+
// Always treat comments in IE as uneditable.
|
|
190
|
+
Blockly.Warning.prototype.setVisible.call(this, visible);
|
|
191
|
+
return;
|
|
192
|
+
}
|
|
193
|
+
// Save the bubble stats before the visibility switch.
|
|
194
|
+
var text = this.getText();
|
|
195
|
+
var size = this.getBubbleSize();
|
|
196
|
+
if (visible) {
|
|
197
|
+
// Create the bubble.
|
|
198
|
+
this.bubble_ = new Blockly.Bubble(
|
|
199
|
+
/** @type {!Blockly.WorkspaceSvg} */ (this.block_.workspace),
|
|
200
|
+
this.createEditor_(), this.block_.svgPath_,
|
|
201
|
+
this.iconXY_, this.width_, this.height_);
|
|
202
|
+
// Expose this comment's block's ID on its top-level SVG group.
|
|
203
|
+
this.bubble_.setSvgId(this.block_.id);
|
|
204
|
+
this.bubble_.registerResizeEvent(this.resizeBubble_.bind(this));
|
|
205
|
+
this.updateColour();
|
|
206
|
+
} else {
|
|
207
|
+
// Dispose of the bubble.
|
|
208
|
+
this.bubble_.dispose();
|
|
209
|
+
this.bubble_ = null;
|
|
210
|
+
this.textarea_ = null;
|
|
211
|
+
this.foreignObject_ = null;
|
|
212
|
+
}
|
|
213
|
+
// Restore the bubble stats after the visibility switch.
|
|
214
|
+
this.setText(text);
|
|
215
|
+
this.setBubbleSize(size.width, size.height);
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Bring the comment to the top of the stack when clicked on.
|
|
220
|
+
* @param {!Event} _e Mouse up event.
|
|
221
|
+
* @private
|
|
222
|
+
*/
|
|
223
|
+
Blockly.Comment.prototype.textareaFocus_ = function(_e) {
|
|
224
|
+
// Ideally this would be hooked to the focus event for the comment.
|
|
225
|
+
// This is tied to mousedown, however doing so in Firefox swallows the cursor
|
|
226
|
+
// for unknown reasons.
|
|
227
|
+
// See https://github.com/LLK/scratch-blocks/issues/1631 for more history.
|
|
228
|
+
if (this.bubble_.promote_()) {
|
|
229
|
+
// Since the act of moving this node within the DOM causes a loss of focus,
|
|
230
|
+
// we need to reapply the focus.
|
|
231
|
+
this.textarea_.focus();
|
|
232
|
+
}
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Get the dimensions of this comment's bubble.
|
|
237
|
+
* @return {!Object} Object with width and height properties.
|
|
238
|
+
*/
|
|
239
|
+
Blockly.Comment.prototype.getBubbleSize = function() {
|
|
240
|
+
if (this.isVisible()) {
|
|
241
|
+
return this.bubble_.getBubbleSize();
|
|
242
|
+
} else {
|
|
243
|
+
return {width: this.width_, height: this.height_};
|
|
244
|
+
}
|
|
245
|
+
};
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* Size this comment's bubble.
|
|
249
|
+
* @param {number} width Width of the bubble.
|
|
250
|
+
* @param {number} height Height of the bubble.
|
|
251
|
+
*/
|
|
252
|
+
Blockly.Comment.prototype.setBubbleSize = function(width, height) {
|
|
253
|
+
if (this.textarea_) {
|
|
254
|
+
this.bubble_.setBubbleSize(width, height);
|
|
255
|
+
} else {
|
|
256
|
+
this.width_ = width;
|
|
257
|
+
this.height_ = height;
|
|
258
|
+
}
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Returns this comment's text.
|
|
263
|
+
* @return {string} Comment text.
|
|
264
|
+
*/
|
|
265
|
+
Blockly.Comment.prototype.getText = function() {
|
|
266
|
+
return this.textarea_ ? this.textarea_.value : this.text_;
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Set this comment's text.
|
|
271
|
+
* @param {string} text Comment text.
|
|
272
|
+
*/
|
|
273
|
+
Blockly.Comment.prototype.setText = function(text) {
|
|
274
|
+
if (this.text_ != text) {
|
|
275
|
+
Blockly.Events.fire(new Blockly.Events.BlockChange(
|
|
276
|
+
this.block_, 'comment', null, this.text_, text));
|
|
277
|
+
this.text_ = text;
|
|
278
|
+
}
|
|
279
|
+
if (this.textarea_) {
|
|
280
|
+
this.textarea_.value = text;
|
|
281
|
+
}
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* Dispose of this comment.
|
|
286
|
+
*/
|
|
287
|
+
Blockly.Comment.prototype.dispose = function() {
|
|
288
|
+
if (Blockly.Events.isEnabled()) {
|
|
289
|
+
this.setText(''); // Fire event to delete comment.
|
|
290
|
+
}
|
|
291
|
+
this.block_.comment = null;
|
|
292
|
+
Blockly.Icon.prototype.dispose.call(this);
|
|
293
|
+
};
|