@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,253 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2012 Google Inc.
6
+ * https://developers.google.com/blockly/
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ /**
22
+ * @fileoverview Colour input field.
23
+ * @author fraser@google.com (Neil Fraser)
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.FieldColour');
28
+
29
+ goog.require('Blockly.Field');
30
+ goog.require('Blockly.utils');
31
+
32
+ goog.require('goog.dom');
33
+ goog.require('goog.events');
34
+ goog.require('goog.style');
35
+ goog.require('goog.ui.ColorPicker');
36
+
37
+
38
+ /**
39
+ * Class for a colour input field.
40
+ * @param {string} colour The initial colour in '#rrggbb' format.
41
+ * @param {Function=} opt_validator A function that is executed when a new
42
+ * colour is selected. Its sole argument is the new colour value. Its
43
+ * return value becomes the selected colour, unless it is undefined, in
44
+ * which case the new colour stands, or it is null, in which case the change
45
+ * is aborted.
46
+ * @extends {Blockly.Field}
47
+ * @constructor
48
+ */
49
+ Blockly.FieldColour = function(colour, opt_validator) {
50
+ Blockly.FieldColour.superClass_.constructor.call(this, colour, opt_validator);
51
+ this.addArgType('colour');
52
+ };
53
+ goog.inherits(Blockly.FieldColour, Blockly.Field);
54
+
55
+ /**
56
+ * Construct a FieldColour from a JSON arg object.
57
+ * @param {!Object} options A JSON object with options (colour).
58
+ * @returns {!Blockly.FieldColour} The new field instance.
59
+ * @package
60
+ * @nocollapse
61
+ */
62
+ Blockly.FieldColour.fromJson = function(options) {
63
+ return new Blockly.FieldColour(options['colour']);
64
+ };
65
+
66
+ /**
67
+ * By default use the global constants for colours.
68
+ * @type {Array.<string>}
69
+ * @private
70
+ */
71
+ Blockly.FieldColour.prototype.colours_ = null;
72
+
73
+ /**
74
+ * By default use the global constants for columns.
75
+ * @type {number}
76
+ * @private
77
+ */
78
+ Blockly.FieldColour.prototype.columns_ = 0;
79
+
80
+ /**
81
+ * Install this field on a block.
82
+ * @param {!Blockly.Block} block The block containing this field.
83
+ */
84
+ Blockly.FieldColour.prototype.init = function(block) {
85
+ if (this.fieldGroup_) {
86
+ // Colour field has already been initialized once.
87
+ return;
88
+ }
89
+ Blockly.FieldColour.superClass_.init.call(this, block);
90
+ this.setValue(this.getValue());
91
+ };
92
+
93
+ /**
94
+ * Mouse cursor style when over the hotspot that initiates the editor.
95
+ */
96
+ Blockly.FieldColour.prototype.CURSOR = 'default';
97
+
98
+ /**
99
+ * Close the colour picker if this input is being deleted.
100
+ */
101
+ Blockly.FieldColour.prototype.dispose = function() {
102
+ Blockly.WidgetDiv.hideIfOwner(this);
103
+ Blockly.FieldColour.superClass_.dispose.call(this);
104
+ };
105
+
106
+ /**
107
+ * Return the current colour.
108
+ * @return {string} Current colour in '#rrggbb' format.
109
+ */
110
+ Blockly.FieldColour.prototype.getValue = function() {
111
+ return this.colour_;
112
+ };
113
+
114
+ /**
115
+ * Set the colour.
116
+ * @param {string} colour The new colour in '#rrggbb' format.
117
+ */
118
+ Blockly.FieldColour.prototype.setValue = function(colour) {
119
+ if (this.sourceBlock_ && Blockly.Events.isEnabled() &&
120
+ this.colour_ != colour) {
121
+ Blockly.Events.fire(new Blockly.Events.BlockChange(
122
+ this.sourceBlock_, 'field', this.name, this.colour_, colour));
123
+ }
124
+ this.colour_ = colour;
125
+ if (this.sourceBlock_) {
126
+ // Set the primary, secondary, tertiary, and quaternary colour to this value.
127
+ // The renderer expects to be able to use the secondary color as the fill for a shadow.
128
+ this.sourceBlock_.setColour(colour, colour, colour, colour);
129
+ }
130
+ };
131
+
132
+ /**
133
+ * Get the text from this field. Used when the block is collapsed.
134
+ * @return {string} Current text.
135
+ */
136
+ Blockly.FieldColour.prototype.getText = function() {
137
+ var colour = this.colour_;
138
+ // Try to use #rgb format if possible, rather than #rrggbb.
139
+ var m = colour.match(/^#(.)\1(.)\2(.)\3$/);
140
+ if (m) {
141
+ colour = '#' + m[1] + m[2] + m[3];
142
+ }
143
+ return colour;
144
+ };
145
+
146
+ /**
147
+ * Returns the fixed height and width.
148
+ * @return {!goog.math.Size} Height and width.
149
+ */
150
+ Blockly.FieldColour.prototype.getSize = function() {
151
+ return new goog.math.Size(Blockly.BlockSvg.FIELD_WIDTH, Blockly.BlockSvg.FIELD_HEIGHT);
152
+ };
153
+
154
+ /**
155
+ * An array of colour strings for the palette.
156
+ * See bottom of this page for the default:
157
+ * http://docs.closure-library.googlecode.com/git/closure_goog_ui_colorpicker.js.source.html
158
+ * @type {!Array.<string>}
159
+ */
160
+ Blockly.FieldColour.COLOURS = goog.ui.ColorPicker.SIMPLE_GRID_COLORS;
161
+
162
+ /**
163
+ * Number of columns in the palette.
164
+ */
165
+ Blockly.FieldColour.COLUMNS = 7;
166
+
167
+ /**
168
+ * Set a custom colour grid for this field.
169
+ * @param {Array.<string>} colours Array of colours for this block,
170
+ * or null to use default (Blockly.FieldColour.COLOURS).
171
+ * @return {!Blockly.FieldColour} Returns itself (for method chaining).
172
+ */
173
+ Blockly.FieldColour.prototype.setColours = function(colours) {
174
+ this.colours_ = colours;
175
+ return this;
176
+ };
177
+
178
+ /**
179
+ * Set a custom grid size for this field.
180
+ * @param {number} columns Number of columns for this block,
181
+ * or 0 to use default (Blockly.FieldColour.COLUMNS).
182
+ * @return {!Blockly.FieldColour} Returns itself (for method chaining).
183
+ */
184
+ Blockly.FieldColour.prototype.setColumns = function(columns) {
185
+ this.columns_ = columns;
186
+ return this;
187
+ };
188
+
189
+ /**
190
+ * Create a palette under the colour field.
191
+ * @private
192
+ */
193
+ Blockly.FieldColour.prototype.showEditor_ = function() {
194
+ Blockly.WidgetDiv.show(this, this.sourceBlock_.RTL,
195
+ Blockly.FieldColour.widgetDispose_);
196
+
197
+ // Record viewport dimensions before adding the widget.
198
+ var viewportBBox = Blockly.utils.getViewportBBox();
199
+ var anchorBBox = this.getScaledBBox_();
200
+
201
+ // Create and add the colour picker, then record the size.
202
+ var picker = this.createWidget_();
203
+ var paletteSize = goog.style.getSize(picker.getElement());
204
+
205
+ // Position the picker to line up with the field.
206
+ Blockly.WidgetDiv.positionWithAnchor(viewportBBox, anchorBBox, paletteSize,
207
+ this.sourceBlock_.RTL);
208
+
209
+ // Configure event handler.
210
+ var thisField = this;
211
+ Blockly.FieldColour.changeEventKey_ = goog.events.listen(picker,
212
+ goog.ui.ColorPicker.EventType.CHANGE,
213
+ function(event) {
214
+ var colour = event.target.getSelectedColor() || '#000000';
215
+ Blockly.WidgetDiv.hide();
216
+ if (thisField.sourceBlock_) {
217
+ // Call any validation function, and allow it to override.
218
+ colour = thisField.callValidator(colour);
219
+ }
220
+ if (colour !== null) {
221
+ thisField.setValue(colour);
222
+ }
223
+ });
224
+ };
225
+
226
+ /**
227
+ * Create a color picker widget and render it inside the widget div.
228
+ * @return {!goog.ui.ColorPicker} The newly created color picker.
229
+ * @private
230
+ */
231
+ Blockly.FieldColour.prototype.createWidget_ = function() {
232
+ // Create the palette using Closure.
233
+ var picker = new goog.ui.ColorPicker();
234
+ picker.setSize(this.columns_ || Blockly.FieldColour.COLUMNS);
235
+ picker.setColors(this.colours_ || Blockly.FieldColour.COLOURS);
236
+ var div = Blockly.WidgetDiv.DIV;
237
+ picker.render(div);
238
+ picker.setSelectedColor(this.getValue());
239
+ return picker;
240
+ };
241
+
242
+ /**
243
+ * Hide the colour palette.
244
+ * @private
245
+ */
246
+ Blockly.FieldColour.widgetDispose_ = function() {
247
+ if (Blockly.FieldColour.changeEventKey_) {
248
+ goog.events.unlistenByKey(Blockly.FieldColour.changeEventKey_);
249
+ }
250
+ Blockly.Events.setGroup(false);
251
+ };
252
+
253
+ Blockly.Field.register('field_colour', Blockly.FieldColour);
@@ -0,0 +1,387 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2012 Google Inc.
6
+ * https://developers.google.com/blockly/
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ /**
22
+ * @fileoverview Colour input field.
23
+ * @author fraser@google.com (Neil Fraser)
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.FieldColourSlider');
28
+
29
+ goog.require('Blockly.Field');
30
+ goog.require('Blockly.DropDownDiv');
31
+ goog.require('goog.dom');
32
+ goog.require('goog.events');
33
+ goog.require('goog.style');
34
+ goog.require('goog.color');
35
+ goog.require('goog.ui.Slider');
36
+
37
+ /**
38
+ * Class for a slider-based colour input field.
39
+ * @param {string} colour The initial colour in '#rrggbb' format.
40
+ * @param {Function=} opt_validator A function that is executed when a new
41
+ * colour is selected. Its sole argument is the new colour value. Its
42
+ * return value becomes the selected colour, unless it is undefined, in
43
+ * which case the new colour stands, or it is null, in which case the change
44
+ * is aborted.
45
+ * @extends {Blockly.Field}
46
+ * @constructor
47
+ */
48
+ Blockly.FieldColourSlider = function(colour, opt_validator) {
49
+ Blockly.FieldColourSlider.superClass_.constructor.call(this, colour, opt_validator);
50
+ this.addArgType('colour');
51
+
52
+ // Flag to track whether or not the slider callbacks should execute
53
+ this.sliderCallbacksEnabled_ = false;
54
+ };
55
+ goog.inherits(Blockly.FieldColourSlider, Blockly.Field);
56
+
57
+ /**
58
+ * Construct a FieldColourSlider from a JSON arg object.
59
+ * @param {!Object} options A JSON object with options (colour).
60
+ * @returns {!Blockly.FieldColourSlider} The new field instance.
61
+ * @package
62
+ * @nocollapse
63
+ */
64
+ Blockly.FieldColourSlider.fromJson = function(options) {
65
+ return new Blockly.FieldColourSlider(options['colour']);
66
+ };
67
+
68
+ /**
69
+ * Function to be called if eyedropper can be activated.
70
+ * If defined, an eyedropper button will be added to the color picker.
71
+ * The button calls this function with a callback to update the field value.
72
+ * BEWARE: This is not a stable API, so it is being marked as private. It may change.
73
+ * @private
74
+ */
75
+ Blockly.FieldColourSlider.activateEyedropper_ = null;
76
+
77
+ /**
78
+ * Path to the eyedropper svg icon.
79
+ */
80
+ Blockly.FieldColourSlider.EYEDROPPER_PATH = 'eyedropper.svg';
81
+
82
+ /**
83
+ * Install this field on a block.
84
+ * @param {!Blockly.Block} block The block containing this field.
85
+ */
86
+ Blockly.FieldColourSlider.prototype.init = function(block) {
87
+ if (this.fieldGroup_) {
88
+ // Colour slider has already been initialized once.
89
+ return;
90
+ }
91
+ Blockly.FieldColourSlider.superClass_.init.call(this, block);
92
+ this.setValue(this.getValue());
93
+ };
94
+
95
+ /**
96
+ * Return the current colour.
97
+ * @return {string} Current colour in '#rrggbb' format.
98
+ */
99
+ Blockly.FieldColourSlider.prototype.getValue = function() {
100
+ return this.colour_;
101
+ };
102
+
103
+ /**
104
+ * Set the colour.
105
+ * @param {string} colour The new colour in '#rrggbb' format.
106
+ */
107
+ Blockly.FieldColourSlider.prototype.setValue = function(colour) {
108
+ if (this.sourceBlock_ && Blockly.Events.isEnabled() &&
109
+ this.colour_ != colour) {
110
+ Blockly.Events.fire(new Blockly.Events.BlockChange(
111
+ this.sourceBlock_, 'field', this.name, this.colour_, colour));
112
+ }
113
+ this.colour_ = colour;
114
+ if (this.sourceBlock_) {
115
+ // Set the colours to this value.
116
+ // The renderer expects to be able to use the secondary colour as the fill for a shadow.
117
+ this.sourceBlock_.setColour(colour, colour, this.sourceBlock_.getColourTertiary(),
118
+ this.sourceBlock_.getColourQuaternary());
119
+ }
120
+ this.updateSliderHandles_();
121
+ this.updateDom_();
122
+ };
123
+
124
+ /**
125
+ * Create the hue, saturation or value CSS gradient for the slide backgrounds.
126
+ * @param {string} channel – Either "hue", "saturation" or "value".
127
+ * @return {string} Array colour hex colour stops for the given channel
128
+ * @private
129
+ */
130
+ Blockly.FieldColourSlider.prototype.createColourStops_ = function(channel) {
131
+ var stops = [];
132
+ for(var n = 0; n <= 360; n += 20) {
133
+ switch (channel) {
134
+ case 'hue':
135
+ stops.push(goog.color.hsvToHex(n, this.saturation_, this.brightness_));
136
+ break;
137
+ case 'saturation':
138
+ stops.push(goog.color.hsvToHex(this.hue_, n / 360, this.brightness_));
139
+ break;
140
+ case 'brightness':
141
+ stops.push(goog.color.hsvToHex(this.hue_, this.saturation_, 255 * n / 360));
142
+ break;
143
+ default:
144
+ throw new Error("Unknown channel for colour sliders: " + channel);
145
+ }
146
+ }
147
+ return stops;
148
+ };
149
+
150
+ /**
151
+ * Set the gradient CSS properties for the given node and channel
152
+ * @param {Node} node - The DOM node the gradient will be set on.
153
+ * @param {string} channel – Either "hue", "saturation" or "value".
154
+ * @private
155
+ */
156
+ Blockly.FieldColourSlider.prototype.setGradient_ = function(node, channel) {
157
+ var gradient = this.createColourStops_(channel).join(',');
158
+ goog.style.setStyle(node, 'background',
159
+ '-moz-linear-gradient(left, ' + gradient + ')');
160
+ goog.style.setStyle(node, 'background',
161
+ '-webkit-linear-gradient(left, ' + gradient + ')');
162
+ goog.style.setStyle(node, 'background',
163
+ '-o-linear-gradient(left, ' + gradient + ')');
164
+ goog.style.setStyle(node, 'background',
165
+ '-ms-linear-gradient(left, ' + gradient + ')');
166
+ goog.style.setStyle(node, 'background',
167
+ 'linear-gradient(left, ' + gradient + ')');
168
+ };
169
+
170
+ /**
171
+ * Update the readouts and slider backgrounds after value has changed.
172
+ * @private
173
+ */
174
+ Blockly.FieldColourSlider.prototype.updateDom_ = function() {
175
+ if (this.hueSlider_) {
176
+ // Update the slider backgrounds
177
+ this.setGradient_(this.hueSlider_.getElement(), 'hue');
178
+ this.setGradient_(this.saturationSlider_.getElement(), 'saturation');
179
+ this.setGradient_(this.brightnessSlider_.getElement(), 'brightness');
180
+
181
+ // Update the readouts
182
+ this.hueReadout_.textContent = Math.floor(100 * this.hue_ / 360).toFixed(0);
183
+ this.saturationReadout_.textContent = Math.floor(100 * this.saturation_).toFixed(0);
184
+ this.brightnessReadout_.textContent = Math.floor(100 * this.brightness_ / 255).toFixed(0);
185
+ }
186
+ };
187
+
188
+ /**
189
+ * Update the slider handle positions from the current field value.
190
+ * @private
191
+ */
192
+ Blockly.FieldColourSlider.prototype.updateSliderHandles_ = function() {
193
+ if (this.hueSlider_) {
194
+ // Don't let the following calls to setValue for each of the sliders
195
+ // trigger the slider callbacks (which then call setValue on this field again
196
+ // unnecessarily)
197
+ this.sliderCallbacksEnabled_ = false;
198
+ this.hueSlider_.setValue(this.hue_);
199
+ this.saturationSlider_.setValue(this.saturation_);
200
+ this.brightnessSlider_.setValue(this.brightness_);
201
+ this.sliderCallbacksEnabled_ = true;
202
+ }
203
+ };
204
+
205
+ /**
206
+ * Get the text from this field. Used when the block is collapsed.
207
+ * @return {string} Current text.
208
+ */
209
+ Blockly.FieldColourSlider.prototype.getText = function() {
210
+ var colour = this.colour_;
211
+ // Try to use #rgb format if possible, rather than #rrggbb.
212
+ var m = colour.match(/^#(.)\1(.)\2(.)\3$/);
213
+ if (m) {
214
+ colour = '#' + m[1] + m[2] + m[3];
215
+ }
216
+ return colour;
217
+ };
218
+
219
+ /**
220
+ * Create label and readout DOM elements, returning the readout
221
+ * @param {string} labelText - Text for the label
222
+ * @return {Array} The container node and the readout node.
223
+ * @private
224
+ */
225
+ Blockly.FieldColourSlider.prototype.createLabelDom_ = function(labelText) {
226
+ var labelContainer = document.createElement('div');
227
+ labelContainer.setAttribute('class', 'scratchColourPickerLabel');
228
+ var readout = document.createElement('span');
229
+ readout.setAttribute('class', 'scratchColourPickerReadout');
230
+ var label = document.createElement('span');
231
+ label.setAttribute('class', 'scratchColourPickerLabelText');
232
+ label.textContent = labelText;
233
+ labelContainer.appendChild(label);
234
+ labelContainer.appendChild(readout);
235
+ return [labelContainer, readout];
236
+ };
237
+
238
+ /**
239
+ * Factory for creating the different slider callbacks
240
+ * @param {string} channel - One of "hue", "saturation" or "brightness"
241
+ * @return {function} the callback for slider update
242
+ * @private
243
+ */
244
+ Blockly.FieldColourSlider.prototype.sliderCallbackFactory_ = function(channel) {
245
+ var thisField = this;
246
+ return function(event) {
247
+ if (!thisField.sliderCallbacksEnabled_) return;
248
+ var channelValue = event.target.getValue();
249
+ switch (channel) {
250
+ case 'hue':
251
+ thisField.hue_ = channelValue;
252
+ break;
253
+ case 'saturation':
254
+ thisField.saturation_ = channelValue;
255
+ break;
256
+ case 'brightness':
257
+ thisField.brightness_ = channelValue;
258
+ break;
259
+ }
260
+ var colour = goog.color.hsvToHex(thisField.hue_, thisField.saturation_, thisField.brightness_);
261
+ if (thisField.sourceBlock_) {
262
+ // Call any validation function, and allow it to override.
263
+ colour = thisField.callValidator(colour);
264
+ }
265
+ if (colour !== null) {
266
+ thisField.setValue(colour, true);
267
+ }
268
+ };
269
+ };
270
+
271
+ /**
272
+ * Activate the eyedropper, passing in a callback for setting the field value.
273
+ * @private
274
+ */
275
+ Blockly.FieldColourSlider.prototype.activateEyedropperInternal_ = function() {
276
+ var thisField = this;
277
+ Blockly.FieldColourSlider.activateEyedropper_(function(value) {
278
+ // Update the internal hue/saturation/brightness values so sliders update.
279
+ var hsv = goog.color.hexToHsv(value);
280
+ thisField.hue_ = hsv[0];
281
+ thisField.saturation_ = hsv[1];
282
+ thisField.brightness_ = hsv[2];
283
+ thisField.setValue(value);
284
+ });
285
+ };
286
+
287
+ /**
288
+ * Create hue, saturation and brightness sliders under the colour field.
289
+ * @private
290
+ */
291
+ Blockly.FieldColourSlider.prototype.showEditor_ = function() {
292
+ Blockly.DropDownDiv.hideWithoutAnimation();
293
+ Blockly.DropDownDiv.clearContent();
294
+ var div = Blockly.DropDownDiv.getContentDiv();
295
+
296
+ // Init color component values that are used while the editor is open
297
+ // in order to keep the slider values stable.
298
+ var hsv = goog.color.hexToHsv(this.getValue());
299
+ this.hue_ = hsv[0];
300
+ this.saturation_ = hsv[1];
301
+ this.brightness_ = hsv[2];
302
+
303
+ var hueElements = this.createLabelDom_(Blockly.Msg.COLOUR_HUE_LABEL);
304
+ div.appendChild(hueElements[0]);
305
+ this.hueReadout_ = hueElements[1];
306
+ this.hueSlider_ = new goog.ui.Slider();
307
+ this.hueSlider_.setUnitIncrement(5);
308
+ this.hueSlider_.setMinimum(0);
309
+ this.hueSlider_.setMaximum(360);
310
+ this.hueSlider_.setMoveToPointEnabled(true);
311
+ this.hueSlider_.render(div);
312
+
313
+ var saturationElements =
314
+ this.createLabelDom_(Blockly.Msg.COLOUR_SATURATION_LABEL);
315
+ div.appendChild(saturationElements[0]);
316
+ this.saturationReadout_ = saturationElements[1];
317
+ this.saturationSlider_ = new goog.ui.Slider();
318
+ this.saturationSlider_.setMoveToPointEnabled(true);
319
+ this.saturationSlider_.setUnitIncrement(0.01);
320
+ this.saturationSlider_.setStep(0.001);
321
+ this.saturationSlider_.setMinimum(0);
322
+ this.saturationSlider_.setMaximum(1.0);
323
+ this.saturationSlider_.render(div);
324
+
325
+ var brightnessElements =
326
+ this.createLabelDom_(Blockly.Msg.COLOUR_BRIGHTNESS_LABEL);
327
+ div.appendChild(brightnessElements[0]);
328
+ this.brightnessReadout_ = brightnessElements[1];
329
+ this.brightnessSlider_ = new goog.ui.Slider();
330
+ this.brightnessSlider_.setUnitIncrement(2);
331
+ this.brightnessSlider_.setMinimum(0);
332
+ this.brightnessSlider_.setMaximum(255);
333
+ this.brightnessSlider_.setMoveToPointEnabled(true);
334
+ this.brightnessSlider_.render(div);
335
+
336
+ if (Blockly.FieldColourSlider.activateEyedropper_) {
337
+ var button = document.createElement('button');
338
+ button.setAttribute('class', 'scratchEyedropper');
339
+ var image = document.createElement('img');
340
+ image.src = Blockly.mainWorkspace.options.pathToMedia + Blockly.FieldColourSlider.EYEDROPPER_PATH;
341
+ button.appendChild(image);
342
+ div.appendChild(button);
343
+ Blockly.FieldColourSlider.eyedropperEventData_ =
344
+ Blockly.bindEventWithChecks_(button, 'click', this,
345
+ this.activateEyedropperInternal_);
346
+ }
347
+
348
+ Blockly.DropDownDiv.setColour(Blockly.Colours.valueReportBackground, Blockly.Colours.valueReportBorder);
349
+ Blockly.DropDownDiv.setCategory(this.sourceBlock_.parentBlock_.getCategory());
350
+ Blockly.DropDownDiv.showPositionedByBlock(this, this.sourceBlock_);
351
+
352
+ // Set value updates the slider positions
353
+ // Do this before attaching callbacks to avoid extra events from initial set
354
+ this.setValue(this.getValue());
355
+
356
+ // Enable callbacks for the sliders
357
+ this.sliderCallbacksEnabled_ = true;
358
+
359
+ Blockly.FieldColourSlider.hueChangeEventKey_ = goog.events.listen(this.hueSlider_,
360
+ goog.ui.Component.EventType.CHANGE,
361
+ this.sliderCallbackFactory_('hue'));
362
+ Blockly.FieldColourSlider.saturationChangeEventKey_ = goog.events.listen(this.saturationSlider_,
363
+ goog.ui.Component.EventType.CHANGE,
364
+ this.sliderCallbackFactory_('saturation'));
365
+ Blockly.FieldColourSlider.brightnessChangeEventKey_ = goog.events.listen(this.brightnessSlider_,
366
+ goog.ui.Component.EventType.CHANGE,
367
+ this.sliderCallbackFactory_('brightness'));
368
+ };
369
+
370
+ Blockly.FieldColourSlider.prototype.dispose = function() {
371
+ if (Blockly.FieldColourSlider.hueChangeEventKey_) {
372
+ goog.events.unlistenByKey(Blockly.FieldColourSlider.hueChangeEventKey_);
373
+ }
374
+ if (Blockly.FieldColourSlider.saturationChangeEventKey_) {
375
+ goog.events.unlistenByKey(Blockly.FieldColourSlider.saturationChangeEventKey_);
376
+ }
377
+ if (Blockly.FieldColourSlider.brightnessChangeEventKey_) {
378
+ goog.events.unlistenByKey(Blockly.FieldColourSlider.brightnessChangeEventKey_);
379
+ }
380
+ if (Blockly.FieldColourSlider.eyedropperEventData_) {
381
+ Blockly.unbindEvent_(Blockly.FieldColourSlider.eyedropperEventData_);
382
+ }
383
+ Blockly.Events.setGroup(false);
384
+ Blockly.FieldColourSlider.superClass_.dispose.call(this);
385
+ };
386
+
387
+ Blockly.Field.register('field_colour_slider', Blockly.FieldColourSlider);