mirror of
https://github.com/google/blockly.git
synced 2026-01-07 00:50:27 +01:00
* Fix toolbox changing size * Fix flyout changing size * Fix mutator bumping blocks * Fix accessing .flyout_
389 lines
12 KiB
JavaScript
389 lines
12 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2017 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Horizontal flyout tray containing blocks which may be created.
|
|
* @author fenichel@google.com (Rachel Fenichel)
|
|
*/
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.HorizontalFlyout');
|
|
|
|
goog.require('Blockly.Block');
|
|
goog.require('Blockly.Flyout');
|
|
goog.require('Blockly.registry');
|
|
goog.require('Blockly.Scrollbar');
|
|
goog.require('Blockly.utils');
|
|
goog.require('Blockly.utils.object');
|
|
goog.require('Blockly.utils.Rect');
|
|
goog.require('Blockly.WidgetDiv');
|
|
|
|
goog.requireType('Blockly.utils.Metrics');
|
|
|
|
|
|
/**
|
|
* Class for a flyout.
|
|
* @param {!Blockly.Options} workspaceOptions Dictionary of options for the
|
|
* workspace.
|
|
* @extends {Blockly.Flyout}
|
|
* @constructor
|
|
*/
|
|
Blockly.HorizontalFlyout = function(workspaceOptions) {
|
|
Blockly.HorizontalFlyout.superClass_.constructor.call(this, workspaceOptions);
|
|
this.horizontalLayout = true;
|
|
};
|
|
Blockly.utils.object.inherits(Blockly.HorizontalFlyout, Blockly.Flyout);
|
|
|
|
/**
|
|
* Return an object with all the metrics required to size scrollbars for the
|
|
* flyout. The following properties are computed:
|
|
* .viewHeight: Height of the visible rectangle,
|
|
* .viewWidth: Width of the visible rectangle,
|
|
* .contentHeight: Height of the contents,
|
|
* .contentWidth: Width of the contents,
|
|
* .viewTop: Offset of top edge of visible rectangle from parent,
|
|
* .contentTop: Offset of the top-most content from the y=0 coordinate,
|
|
* .absoluteTop: Top-edge of view.
|
|
* .viewLeft: Offset of the left edge of visible rectangle from parent,
|
|
* .contentLeft: Offset of the left-most content from the x=0 coordinate,
|
|
* .absoluteLeft: Left-edge of view.
|
|
* @return {Blockly.utils.Metrics} Contains size and position metrics of the
|
|
* flyout.
|
|
* @protected
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.getMetrics_ = function() {
|
|
if (!this.isVisible()) {
|
|
// Flyout is hidden.
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
var optionBox = this.workspace_.getCanvas().getBBox();
|
|
} catch (e) {
|
|
// Firefox has trouble with hidden elements (Bug 528969).
|
|
var optionBox = {height: 0, y: 0, width: 0, x: 0};
|
|
}
|
|
|
|
var absoluteTop = this.SCROLLBAR_PADDING;
|
|
var absoluteLeft = this.SCROLLBAR_PADDING;
|
|
if (this.toolboxPosition_ == Blockly.TOOLBOX_AT_BOTTOM) {
|
|
absoluteTop = 0;
|
|
}
|
|
var viewHeight = this.height_;
|
|
if (this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP) {
|
|
viewHeight -= this.SCROLLBAR_PADDING;
|
|
}
|
|
var viewWidth = this.width_ - 2 * this.SCROLLBAR_PADDING;
|
|
|
|
var metrics = {
|
|
contentHeight: (optionBox.height + 2 * this.MARGIN) * this.workspace_.scale,
|
|
contentWidth: (optionBox.width + 2 * this.MARGIN) * this.workspace_.scale,
|
|
contentTop: 0,
|
|
contentLeft: 0,
|
|
|
|
viewHeight: viewHeight,
|
|
viewWidth: viewWidth,
|
|
viewTop: -this.workspace_.scrollY,
|
|
viewLeft: -this.workspace_.scrollX,
|
|
|
|
absoluteTop: absoluteTop,
|
|
absoluteLeft: absoluteLeft
|
|
};
|
|
return metrics;
|
|
};
|
|
|
|
/**
|
|
* Sets the translation of the flyout to match the scrollbars.
|
|
* @param {!{x:number,y:number}} xyRatio Contains a y property which is a float
|
|
* between 0 and 1 specifying the degree of scrolling and a
|
|
* similar x property.
|
|
* @protected
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.setMetrics_ = function(xyRatio) {
|
|
var metrics = this.getMetrics_();
|
|
// This is a fix to an apparent race condition.
|
|
if (!metrics) {
|
|
return;
|
|
}
|
|
|
|
if (typeof xyRatio.x == 'number') {
|
|
this.workspace_.scrollX = -metrics.contentWidth * xyRatio.x;
|
|
}
|
|
|
|
this.workspace_.translate(this.workspace_.scrollX + metrics.absoluteLeft,
|
|
this.workspace_.scrollY + metrics.absoluteTop);
|
|
};
|
|
|
|
/**
|
|
* Move the flyout to the edge of the workspace.
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.position = function() {
|
|
if (!this.isVisible()) {
|
|
return;
|
|
}
|
|
var targetWorkspaceMetrics = this.targetWorkspace.getMetrics();
|
|
if (!targetWorkspaceMetrics) {
|
|
// Hidden components will return null.
|
|
return;
|
|
}
|
|
// Record the width for Blockly.Flyout.getMetrics_.
|
|
this.width_ = targetWorkspaceMetrics.viewWidth;
|
|
|
|
var edgeWidth = targetWorkspaceMetrics.viewWidth - 2 * this.CORNER_RADIUS;
|
|
var edgeHeight = this.height_ - this.CORNER_RADIUS;
|
|
this.setBackgroundPath_(edgeWidth, edgeHeight);
|
|
|
|
// X is always 0 since this is a horizontal flyout.
|
|
var x = 0;
|
|
// If this flyout is the toolbox flyout.
|
|
if (this.targetWorkspace.toolboxPosition == this.toolboxPosition_) {
|
|
// If there is a toolbox.
|
|
if (targetWorkspaceMetrics.toolboxHeight) {
|
|
if (this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP) {
|
|
var y = targetWorkspaceMetrics.toolboxHeight;
|
|
} else {
|
|
var y = targetWorkspaceMetrics.viewHeight - this.height_;
|
|
}
|
|
} else {
|
|
if (this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP) {
|
|
var y = 0;
|
|
} else {
|
|
var y = targetWorkspaceMetrics.viewHeight;
|
|
}
|
|
}
|
|
} else {
|
|
if (this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP) {
|
|
var y = 0;
|
|
} else {
|
|
// Because the anchor point of the flyout is on the top, but we want
|
|
// to align the bottom edge of the flyout with the bottom edge of the
|
|
// blocklyDiv, we calculate the full height of the div minus the height
|
|
// of the flyout.
|
|
var y = targetWorkspaceMetrics.viewHeight +
|
|
targetWorkspaceMetrics.absoluteTop - this.height_;
|
|
}
|
|
}
|
|
this.positionAt_(this.width_, this.height_, x, y);
|
|
};
|
|
|
|
/**
|
|
* Create and set the path for the visible boundaries of the flyout.
|
|
* @param {number} width The width of the flyout, not including the
|
|
* rounded corners.
|
|
* @param {number} height The height of the flyout, not including
|
|
* rounded corners.
|
|
* @private
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.setBackgroundPath_ = function(width,
|
|
height) {
|
|
var atTop = this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP;
|
|
// Start at top left.
|
|
var path = ['M 0,' + (atTop ? 0 : this.CORNER_RADIUS)];
|
|
|
|
if (atTop) {
|
|
// Top.
|
|
path.push('h', width + 2 * this.CORNER_RADIUS);
|
|
// Right.
|
|
path.push('v', height);
|
|
// Bottom.
|
|
path.push('a', this.CORNER_RADIUS, this.CORNER_RADIUS, 0, 0, 1,
|
|
-this.CORNER_RADIUS, this.CORNER_RADIUS);
|
|
path.push('h', -width);
|
|
// Left.
|
|
path.push('a', this.CORNER_RADIUS, this.CORNER_RADIUS, 0, 0, 1,
|
|
-this.CORNER_RADIUS, -this.CORNER_RADIUS);
|
|
path.push('z');
|
|
} else {
|
|
// Top.
|
|
path.push('a', this.CORNER_RADIUS, this.CORNER_RADIUS, 0, 0, 1,
|
|
this.CORNER_RADIUS, -this.CORNER_RADIUS);
|
|
path.push('h', width);
|
|
// Right.
|
|
path.push('a', this.CORNER_RADIUS, this.CORNER_RADIUS, 0, 0, 1,
|
|
this.CORNER_RADIUS, this.CORNER_RADIUS);
|
|
path.push('v', height);
|
|
// Bottom.
|
|
path.push('h', -width - 2 * this.CORNER_RADIUS);
|
|
// Left.
|
|
path.push('z');
|
|
}
|
|
this.svgBackground_.setAttribute('d', path.join(' '));
|
|
};
|
|
|
|
/**
|
|
* Scroll the flyout to the top.
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.scrollToStart = function() {
|
|
this.scrollbar.set(this.RTL ? Infinity : 0);
|
|
};
|
|
|
|
/**
|
|
* Scroll the flyout.
|
|
* @param {!Event} e Mouse wheel scroll event.
|
|
* @protected
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.wheel_ = function(e) {
|
|
var scrollDelta = Blockly.utils.getScrollDeltaPixels(e);
|
|
var delta = scrollDelta.x || scrollDelta.y;
|
|
|
|
if (delta) {
|
|
var metrics = this.getMetrics_();
|
|
var pos = metrics.viewLeft + delta;
|
|
var limit = metrics.contentWidth - metrics.viewWidth;
|
|
pos = Math.min(pos, limit);
|
|
pos = Math.max(pos, 0);
|
|
this.scrollbar.set(pos);
|
|
// When the flyout moves from a wheel event, hide WidgetDiv and DropDownDiv.
|
|
Blockly.WidgetDiv.hide();
|
|
Blockly.DropDownDiv.hideWithoutAnimation();
|
|
}
|
|
|
|
// Don't scroll the page.
|
|
e.preventDefault();
|
|
// Don't propagate mousewheel event (zooming).
|
|
e.stopPropagation();
|
|
};
|
|
|
|
/**
|
|
* Lay out the blocks in the flyout.
|
|
* @param {!Array.<!Object>} contents The blocks and buttons to lay out.
|
|
* @param {!Array.<number>} gaps The visible gaps between blocks.
|
|
* @protected
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.layout_ = function(contents, gaps) {
|
|
this.workspace_.scale = this.targetWorkspace.scale;
|
|
var margin = this.MARGIN;
|
|
var cursorX = margin + this.tabWidth_;
|
|
var cursorY = margin;
|
|
if (this.RTL) {
|
|
contents = contents.reverse();
|
|
}
|
|
|
|
for (var i = 0, item; (item = contents[i]); i++) {
|
|
if (item.type == 'block') {
|
|
var block = item.block;
|
|
var allBlocks = block.getDescendants(false);
|
|
for (var j = 0, child; (child = allBlocks[j]); j++) {
|
|
// Mark blocks as being inside a flyout. This is used to detect and
|
|
// prevent the closure of the flyout if the user right-clicks on such a
|
|
// block.
|
|
child.isInFlyout = true;
|
|
}
|
|
block.render();
|
|
var root = block.getSvgRoot();
|
|
var blockHW = block.getHeightWidth();
|
|
|
|
// Figure out where to place the block.
|
|
var tab = block.outputConnection ? this.tabWidth_ : 0;
|
|
if (this.RTL) {
|
|
var moveX = cursorX + blockHW.width;
|
|
} else {
|
|
var moveX = cursorX - tab;
|
|
}
|
|
block.moveBy(moveX, cursorY);
|
|
|
|
var rect = this.createRect_(block, moveX, cursorY, blockHW, i);
|
|
cursorX += (blockHW.width + gaps[i]);
|
|
|
|
this.addBlockListeners_(root, block, rect);
|
|
} else if (item.type == 'button') {
|
|
this.initFlyoutButton_(item.button, cursorX, cursorY);
|
|
cursorX += (item.button.width + gaps[i]);
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Determine if a drag delta is toward the workspace, based on the position
|
|
* and orientation of the flyout. This is used in determineDragIntention_ to
|
|
* determine if a new block should be created or if the flyout should scroll.
|
|
* @param {!Blockly.utils.Coordinate} currentDragDeltaXY How far the pointer has
|
|
* moved from the position at mouse down, in pixel units.
|
|
* @return {boolean} True if the drag is toward the workspace.
|
|
* @package
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.isDragTowardWorkspace = function(
|
|
currentDragDeltaXY) {
|
|
var dx = currentDragDeltaXY.x;
|
|
var dy = currentDragDeltaXY.y;
|
|
// Direction goes from -180 to 180, with 0 toward the right and 90 on top.
|
|
var dragDirection = Math.atan2(dy, dx) / Math.PI * 180;
|
|
|
|
var range = this.dragAngleRange_;
|
|
// Check for up or down dragging.
|
|
if ((dragDirection < 90 + range && dragDirection > 90 - range) ||
|
|
(dragDirection > -90 - range && dragDirection < -90 + range)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Return the deletion rectangle for this flyout in viewport coordinates.
|
|
* @return {Blockly.utils.Rect} Rectangle in which to delete.
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.getClientRect = function() {
|
|
if (!this.svgGroup_) {
|
|
return null;
|
|
}
|
|
|
|
var flyoutRect = this.svgGroup_.getBoundingClientRect();
|
|
// BIG_NUM is offscreen padding so that blocks dragged beyond the shown flyout
|
|
// area are still deleted. Must be larger than the largest screen size,
|
|
// but be smaller than half Number.MAX_SAFE_INTEGER (not available on IE).
|
|
var BIG_NUM = 1000000000;
|
|
var top = flyoutRect.top;
|
|
|
|
if (this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP) {
|
|
var height = flyoutRect.height;
|
|
return new Blockly.utils.Rect(-BIG_NUM, top + height, -BIG_NUM, BIG_NUM);
|
|
} else { // Bottom.
|
|
return new Blockly.utils.Rect(top, BIG_NUM, -BIG_NUM, BIG_NUM);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Compute height of flyout. Position mat under each block.
|
|
* For RTL: Lay out the blocks right-aligned.
|
|
* @protected
|
|
*/
|
|
Blockly.HorizontalFlyout.prototype.reflowInternal_ = function() {
|
|
this.workspace_.scale = this.targetWorkspace.scale;
|
|
var flyoutHeight = 0;
|
|
var blocks = this.workspace_.getTopBlocks(false);
|
|
for (var i = 0, block; (block = blocks[i]); i++) {
|
|
flyoutHeight = Math.max(flyoutHeight, block.getHeightWidth().height);
|
|
}
|
|
flyoutHeight += this.MARGIN * 1.5;
|
|
flyoutHeight *= this.workspace_.scale;
|
|
flyoutHeight += Blockly.Scrollbar.scrollbarThickness;
|
|
|
|
if (this.height_ != flyoutHeight) {
|
|
for (var i = 0, block; (block = blocks[i]); i++) {
|
|
if (block.flyoutRect_) {
|
|
this.moveRectToBlock_(block.flyoutRect_, block);
|
|
}
|
|
}
|
|
|
|
if (this.targetWorkspace.toolboxPosition == this.toolboxPosition_ &&
|
|
this.toolboxPosition_ == Blockly.TOOLBOX_AT_TOP &&
|
|
!this.targetWorkspace.getToolbox()) {
|
|
// This flyout is a simple toolbox. Reposition the workspace so that (0,0)
|
|
// is in the correct position relative to the new absolute edge (ie
|
|
// toolbox edge).
|
|
this.targetWorkspace.translate(
|
|
0, this.targetWorkspace.scrollY + flyoutHeight);
|
|
}
|
|
|
|
// Record the height for .getMetrics_ and .position.
|
|
this.height_ = flyoutHeight;
|
|
this.position();
|
|
}
|
|
};
|
|
|
|
Blockly.registry.register(Blockly.registry.Type.FLYOUTS_HORIZONTAL_TOOLBOX,
|
|
Blockly.registry.DEFAULT, Blockly.HorizontalFlyout);
|