Files
blockly/core/renderers/geras/drawer.js
Aaron Dodson 6b07ccab96 chore: Remove declareLegacyNamespace from renderers (#5528)
* chore: Remove declareLegacyNamespace from Geras renderer

* chore: Remove declareLegacyNamespace from minimalist renderer

* chore: Remove declareLegacyNamespace from thrasos renderer

* chore: Remove declareLegacyNamespace from zelos renderer

* fix: Move debugger functionality out of Blockly.blockRendering to avoid dependency cycle when re-exporting submodules

* chore: Remove declareLegacyNamespace from Blockly.blockRendering.*
2021-09-24 08:33:35 -07:00

209 lines
5.3 KiB
JavaScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Renderer that preserves the look and feel of Blockly pre-2019.
* @author fenichel@google.com (Rachel Fenichel)
*/
'use strict';
goog.module('Blockly.geras.Drawer');
const BaseDrawer = goog.require('Blockly.blockRendering.Drawer');
const Highlighter = goog.require('Blockly.geras.Highlighter');
/* eslint-disable-next-line no-unused-vars */
const PathObject = goog.requireType('Blockly.geras.PathObject');
/* eslint-disable-next-line no-unused-vars */
const RenderInfo = goog.requireType('Blockly.geras.RenderInfo');
const debug = goog.require('Blockly.blockRendering.debug');
const object = goog.require('Blockly.utils.object');
const svgPaths = goog.require('Blockly.utils.svgPaths');
/* eslint-disable-next-line no-unused-vars */
const {BlockSvg} = goog.requireType('Blockly.BlockSvg');
/**
* An object that draws a block based on the given rendering information.
* @param {!BlockSvg} block The block to render.
* @param {!RenderInfo} info An object containing all
* information needed to render this block.
* @package
* @constructor
* @extends {BaseDrawer}
*/
const Drawer = function(block, info) {
Drawer.superClass_.constructor.call(this, block, info);
// Unlike Thrasos, Geras has highlights and drop shadows.
this.highlighter_ = new Highlighter(info);
};
object.inherits(Drawer, BaseDrawer);
/**
* @override
*/
Drawer.prototype.draw = function() {
this.hideHiddenIcons_();
this.drawOutline_();
this.drawInternals_();
const pathObject =
/** @type {!PathObject} */ (this.block_.pathObject);
pathObject.setPath(this.outlinePath_ + '\n' + this.inlinePath_);
pathObject.setHighlightPath(this.highlighter_.getPath());
if (this.info_.RTL) {
pathObject.flipRTL();
}
if (debug.isDebuggerEnabled()) {
this.block_.renderingDebugger.drawDebug(this.block_, this.info_);
}
this.recordSizeOnBlock_();
};
/**
* @override
*/
Drawer.prototype.drawTop_ = function() {
this.highlighter_.drawTopCorner(this.info_.topRow);
this.highlighter_.drawRightSideRow(this.info_.topRow);
Drawer.superClass_.drawTop_.call(this);
};
/**
* @override
*/
Drawer.prototype.drawJaggedEdge_ = function(row) {
this.highlighter_.drawJaggedEdge_(row);
Drawer.superClass_.drawJaggedEdge_.call(this, row);
};
/**
* @override
*/
Drawer.prototype.drawValueInput_ = function(row) {
this.highlighter_.drawValueInput(row);
Drawer.superClass_.drawValueInput_.call(this, row);
};
/**
* @override
*/
Drawer.prototype.drawStatementInput_ = function(row) {
this.highlighter_.drawStatementInput(row);
Drawer.superClass_.drawStatementInput_.call(this, row);
};
/**
* @override
*/
Drawer.prototype.drawRightSideRow_ = function(row) {
this.highlighter_.drawRightSideRow(row);
this.outlinePath_ += svgPaths.lineOnAxis('H', row.xPos + row.width) +
svgPaths.lineOnAxis('V', row.yPos + row.height);
};
/**
* @override
*/
Drawer.prototype.drawBottom_ = function() {
this.highlighter_.drawBottomRow(this.info_.bottomRow);
Drawer.superClass_.drawBottom_.call(this);
};
/**
* Add steps for the left side of the block, which may include an output
* connection
* @protected
* @override
*/
Drawer.prototype.drawLeft_ = function() {
this.highlighter_.drawLeft();
Drawer.superClass_.drawLeft_.call(this);
};
/**
* @override
*/
Drawer.prototype.drawInlineInput_ = function(input) {
this.highlighter_.drawInlineInput(input);
Drawer.superClass_.drawInlineInput_.call(this, input);
};
/**
* @override
*/
Drawer.prototype.positionInlineInputConnection_ = function(input) {
const yPos = input.centerline - input.height / 2;
// Move the connection.
if (input.connectionModel) {
// xPos already contains info about startX
let connX =
input.xPos + input.connectionWidth + this.constants_.DARK_PATH_OFFSET;
if (this.info_.RTL) {
connX *= -1;
}
input.connectionModel.setOffsetInBlock(
connX,
yPos + input.connectionOffsetY + this.constants_.DARK_PATH_OFFSET);
}
};
/**
* @override
*/
Drawer.prototype.positionStatementInputConnection_ = function(row) {
const input = row.getLastInput();
if (input.connectionModel) {
let connX = row.xPos + row.statementEdge + input.notchOffset;
if (this.info_.RTL) {
connX *= -1;
} else {
connX += this.constants_.DARK_PATH_OFFSET;
}
input.connectionModel.setOffsetInBlock(
connX, row.yPos + this.constants_.DARK_PATH_OFFSET);
}
};
/**
* @override
*/
Drawer.prototype.positionExternalValueConnection_ = function(row) {
const input = row.getLastInput();
if (input.connectionModel) {
let connX = row.xPos + row.width + this.constants_.DARK_PATH_OFFSET;
if (this.info_.RTL) {
connX *= -1;
}
input.connectionModel.setOffsetInBlock(connX, row.yPos);
}
};
/**
* @override
*/
Drawer.prototype.positionNextConnection_ = function() {
const bottomRow = this.info_.bottomRow;
if (bottomRow.connection) {
const connInfo = bottomRow.connection;
const x = connInfo.xPos; // Already contains info about startX.
const connX =
(this.info_.RTL ? -x : x) + (this.constants_.DARK_PATH_OFFSET / 2);
connInfo.connectionModel.setOffsetInBlock(
connX, bottomRow.baseline + this.constants_.DARK_PATH_OFFSET);
}
};
exports = Drawer;