mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +01:00
* Use goog.requireType when importing I* interfaces Interfaces have no code, so should never be referred to outside of (JSDoc) comments, and so the modules that define only interfaces never need to be goog.require'd - goog.requireType is always sufficient. This commit fixes imports of all modules whose name matches /(.*\.)?I[A-Z]*/ - i.e., the hungarian-notation named ones in core/interfaces/. * Use goog.requireType when only using import for type specifications Where a module is imported only to used in JSDoc comments it can (and should) be goog.requireType'd instead of goog.require'd. * Remove spurious eslint-disable no-unused-vars There were a few cases where modules were being imported with goog.require (because they are referred to in code, not just JSDoc comments) but were prefaced by a spurious eslint suppress. Remove these, restoring the invariant that an import gets an eslint if and only if it is a requireType. * Remove obsolete Closure Compiler error group stricterMissingRequire has been superceded by missingRequire, and now causes a Java null pointer exception if supplied.
1137 lines
32 KiB
JavaScript
1137 lines
32 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2012 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Field. Used for editable titles, variables, etc.
|
|
* This is an abstract class that defines the UI on the block. Actual
|
|
* instances would be FieldTextInput, FieldDropdown, etc.
|
|
* @author fraser@google.com (Neil Fraser)
|
|
*/
|
|
'use strict';
|
|
|
|
goog.module('Blockly.Field');
|
|
goog.module.declareLegacyNamespace();
|
|
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const Block = goog.requireType('Blockly.Block');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const BlockSvg = goog.requireType('Blockly.BlockSvg');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const ConstantProvider = goog.requireType('Blockly.blockRendering.ConstantProvider');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const Coordinate = goog.requireType('Blockly.utils.Coordinate');
|
|
const DropDownDiv = goog.require('Blockly.DropDownDiv');
|
|
const Events = goog.require('Blockly.Events');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const IASTNodeLocationSvg = goog.requireType('Blockly.IASTNodeLocationSvg');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const IASTNodeLocationWithBlock = goog.requireType('Blockly.IASTNodeLocationWithBlock');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const IKeyboardAccessible = goog.requireType('Blockly.IKeyboardAccessible');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const Input = goog.requireType('Blockly.Input');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const IRegistrable = goog.requireType('Blockly.IRegistrable');
|
|
const MarkerManager = goog.require('Blockly.MarkerManager');
|
|
const Rect = goog.require('Blockly.utils.Rect');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const ShortcutRegistry = goog.requireType('Blockly.ShortcutRegistry');
|
|
const Size = goog.require('Blockly.utils.Size');
|
|
const Svg = goog.require('Blockly.utils.Svg');
|
|
const Tooltip = goog.require('Blockly.Tooltip');
|
|
const WidgetDiv = goog.require('Blockly.WidgetDiv');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const WorkspaceSvg = goog.requireType('Blockly.WorkspaceSvg');
|
|
const dom = goog.require('Blockly.utils.dom');
|
|
const browserEvents = goog.require('Blockly.browserEvents');
|
|
const style = goog.require('Blockly.utils.style');
|
|
const userAgent = goog.require('Blockly.utils.userAgent');
|
|
const utils = goog.require('Blockly.utils');
|
|
/** @suppress {extraRequire} */
|
|
goog.require('Blockly.Events.BlockChange');
|
|
/** @suppress {extraRequire} */
|
|
goog.require('Blockly.Gesture');
|
|
|
|
|
|
/**
|
|
* Abstract class for an editable field.
|
|
* @param {*} value The initial value of the field.
|
|
* @param {?Function=} opt_validator A function that is called to validate
|
|
* changes to the field's value. Takes in a value & returns a validated
|
|
* value, or null to abort the change.
|
|
* @param {Object=} opt_config A map of options used to configure the field. See
|
|
* the individual field's documentation for a list of properties this
|
|
* parameter supports.
|
|
* @constructor
|
|
* @abstract
|
|
* @implements {IASTNodeLocationSvg}
|
|
* @implements {IASTNodeLocationWithBlock}
|
|
* @implements {IKeyboardAccessible}
|
|
* @implements {IRegistrable}
|
|
*/
|
|
const Field = function(value, opt_validator, opt_config) {
|
|
/**
|
|
* A generic value possessed by the field.
|
|
* Should generally be non-null, only null when the field is created.
|
|
* @type {*}
|
|
* @protected
|
|
*/
|
|
this.value_ = this.DEFAULT_VALUE;
|
|
|
|
/**
|
|
* Validation function called when user edits an editable field.
|
|
* @type {Function}
|
|
* @protected
|
|
*/
|
|
this.validator_ = null;
|
|
|
|
/**
|
|
* Used to cache the field's tooltip value if setTooltip is called when the
|
|
* field is not yet initialized. Is *not* guaranteed to be accurate.
|
|
* @type {?Tooltip.TipInfo}
|
|
* @private
|
|
*/
|
|
this.tooltip_ = null;
|
|
|
|
/**
|
|
* The size of the area rendered by the field.
|
|
* @type {!Size}
|
|
* @protected
|
|
*/
|
|
this.size_ = new Size(0, 0);
|
|
|
|
/**
|
|
* Holds the cursors svg element when the cursor is attached to the field.
|
|
* This is null if there is no cursor on the field.
|
|
* @type {SVGElement}
|
|
* @private
|
|
*/
|
|
this.cursorSvg_ = null;
|
|
|
|
/**
|
|
* Holds the markers svg element when the marker is attached to the field.
|
|
* This is null if there is no marker on the field.
|
|
* @type {SVGElement}
|
|
* @private
|
|
*/
|
|
this.markerSvg_ = null;
|
|
|
|
/**
|
|
* The rendered field's SVG group element.
|
|
* @type {SVGGElement}
|
|
* @protected
|
|
*/
|
|
this.fieldGroup_ = null;
|
|
|
|
/**
|
|
* The rendered field's SVG border element.
|
|
* @type {SVGRectElement}
|
|
* @protected
|
|
*/
|
|
this.borderRect_ = null;
|
|
|
|
/**
|
|
* The rendered field's SVG text element.
|
|
* @type {SVGTextElement}
|
|
* @protected
|
|
*/
|
|
this.textElement_ = null;
|
|
|
|
/**
|
|
* The rendered field's text content element.
|
|
* @type {Text}
|
|
* @protected
|
|
*/
|
|
this.textContent_ = null;
|
|
|
|
/**
|
|
* Mouse down event listener data.
|
|
* @type {?browserEvents.Data}
|
|
* @private
|
|
*/
|
|
this.mouseDownWrapper_ = null;
|
|
|
|
/**
|
|
* Constants associated with the source block's renderer.
|
|
* @type {ConstantProvider}
|
|
* @protected
|
|
*/
|
|
this.constants_ = null;
|
|
|
|
opt_config && this.configure_(opt_config);
|
|
this.setValue(value);
|
|
opt_validator && this.setValidator(opt_validator);
|
|
};
|
|
|
|
/**
|
|
* The default value for this field.
|
|
* @type {*}
|
|
* @protected
|
|
*/
|
|
Field.prototype.DEFAULT_VALUE = null;
|
|
|
|
/**
|
|
* Name of field. Unique within each block.
|
|
* Static labels are usually unnamed.
|
|
* @type {string|undefined}
|
|
*/
|
|
Field.prototype.name = undefined;
|
|
|
|
/**
|
|
* Has this field been disposed of?
|
|
* @type {boolean}
|
|
* @package
|
|
*/
|
|
Field.prototype.disposed = false;
|
|
|
|
/**
|
|
* Maximum characters of text to display before adding an ellipsis.
|
|
* @type {number}
|
|
*/
|
|
Field.prototype.maxDisplayLength = 50;
|
|
|
|
/**
|
|
* Block this field is attached to. Starts as null, then set in init.
|
|
* @type {Block}
|
|
* @protected
|
|
*/
|
|
Field.prototype.sourceBlock_ = null;
|
|
|
|
/**
|
|
* Does this block need to be re-rendered?
|
|
* @type {boolean}
|
|
* @protected
|
|
*/
|
|
Field.prototype.isDirty_ = true;
|
|
|
|
/**
|
|
* Is the field visible, or hidden due to the block being collapsed?
|
|
* @type {boolean}
|
|
* @protected
|
|
*/
|
|
Field.prototype.visible_ = true;
|
|
|
|
/**
|
|
* Can the field value be changed using the editor on an editable block?
|
|
* @type {boolean}
|
|
* @protected
|
|
*/
|
|
Field.prototype.enabled_ = true;
|
|
|
|
/**
|
|
* The element the click handler is bound to.
|
|
* @type {Element}
|
|
* @protected
|
|
*/
|
|
Field.prototype.clickTarget_ = null;
|
|
|
|
/**
|
|
* A developer hook to override the returned text of this field.
|
|
* Override if the text representation of the value of this field
|
|
* is not just a string cast of its value.
|
|
* Return null to resort to a string cast.
|
|
* @return {?string} Current text. Return null to resort to a string cast.
|
|
* @protected
|
|
*/
|
|
Field.prototype.getText_;
|
|
|
|
/**
|
|
* An optional method that can be defined to show an editor when the field is
|
|
* clicked. Blockly will automatically set the field as clickable if this
|
|
* method is defined.
|
|
* @param {Event=} opt_e Optional mouse event that triggered the field to open,
|
|
* or undefined if triggered programmatically.
|
|
* @return {void}
|
|
* @protected
|
|
*/
|
|
Field.prototype.showEditor_;
|
|
|
|
/**
|
|
* Non-breaking space.
|
|
* @const
|
|
*/
|
|
Field.NBSP = '\u00A0';
|
|
|
|
/**
|
|
* Editable fields usually show some sort of UI indicating they are editable.
|
|
* They will also be saved by the XML renderer.
|
|
* @type {boolean}
|
|
*/
|
|
Field.prototype.EDITABLE = true;
|
|
|
|
/**
|
|
* Serializable fields are saved by the XML renderer, non-serializable fields
|
|
* are not. Editable fields should also be serializable. This is not the
|
|
* case by default so that SERIALIZABLE is backwards compatible.
|
|
* @type {boolean}
|
|
*/
|
|
Field.prototype.SERIALIZABLE = false;
|
|
|
|
/**
|
|
* Process the configuration map passed to the field.
|
|
* @param {!Object} config A map of options used to configure the field. See
|
|
* the individual field's documentation for a list of properties this
|
|
* parameter supports.
|
|
* @protected
|
|
*/
|
|
Field.prototype.configure_ = function(config) {
|
|
let tooltip = config['tooltip'];
|
|
if (typeof tooltip == 'string') {
|
|
tooltip = utils.replaceMessageReferences(config['tooltip']);
|
|
}
|
|
tooltip && this.setTooltip(tooltip);
|
|
|
|
// TODO (#2884): Possibly add CSS class config option.
|
|
// TODO (#2885): Possibly add cursor config option.
|
|
};
|
|
|
|
/**
|
|
* Attach this field to a block.
|
|
* @param {!Block} block The block containing this field.
|
|
*/
|
|
Field.prototype.setSourceBlock = function(block) {
|
|
if (this.sourceBlock_) {
|
|
throw Error('Field already bound to a block');
|
|
}
|
|
this.sourceBlock_ = block;
|
|
};
|
|
|
|
/**
|
|
* Get the renderer constant provider.
|
|
* @return {?ConstantProvider} The renderer constant
|
|
* provider.
|
|
*/
|
|
Field.prototype.getConstants = function() {
|
|
if (!this.constants_ && this.sourceBlock_ && this.sourceBlock_.workspace &&
|
|
this.sourceBlock_.workspace.rendered) {
|
|
this.constants_ = this.sourceBlock_.workspace.getRenderer().getConstants();
|
|
}
|
|
return this.constants_;
|
|
};
|
|
|
|
/**
|
|
* Get the block this field is attached to.
|
|
* @return {Block} The block containing this field.
|
|
*/
|
|
Field.prototype.getSourceBlock = function() {
|
|
return this.sourceBlock_;
|
|
};
|
|
|
|
/**
|
|
* Initialize everything to render this field. Override
|
|
* methods initModel and initView rather than this method.
|
|
* @package
|
|
*/
|
|
Field.prototype.init = function() {
|
|
if (this.fieldGroup_) {
|
|
// Field has already been initialized once.
|
|
return;
|
|
}
|
|
this.fieldGroup_ = dom.createSvgElement(Svg.G, {}, null);
|
|
if (!this.isVisible()) {
|
|
this.fieldGroup_.style.display = 'none';
|
|
}
|
|
const sourceBlockSvg = /** @type {!BlockSvg} **/ (this.sourceBlock_);
|
|
sourceBlockSvg.getSvgRoot().appendChild(this.fieldGroup_);
|
|
this.initView();
|
|
this.updateEditable();
|
|
this.setTooltip(this.tooltip_);
|
|
this.bindEvents_();
|
|
this.initModel();
|
|
};
|
|
|
|
/**
|
|
* Create the block UI for this field.
|
|
* @package
|
|
*/
|
|
Field.prototype.initView = function() {
|
|
this.createBorderRect_();
|
|
this.createTextElement_();
|
|
};
|
|
|
|
/**
|
|
* Initializes the model of the field after it has been installed on a block.
|
|
* No-op by default.
|
|
* @package
|
|
*/
|
|
Field.prototype.initModel = function() {};
|
|
|
|
/**
|
|
* Create a field border rect element. Not to be overridden by subclasses.
|
|
* Instead modify the result of the function inside initView, or create a
|
|
* separate function to call.
|
|
* @protected
|
|
*/
|
|
Field.prototype.createBorderRect_ = function() {
|
|
this.borderRect_ = dom.createSvgElement(
|
|
Svg.RECT, {
|
|
'rx': this.getConstants().FIELD_BORDER_RECT_RADIUS,
|
|
'ry': this.getConstants().FIELD_BORDER_RECT_RADIUS,
|
|
'x': 0,
|
|
'y': 0,
|
|
'height': this.size_.height,
|
|
'width': this.size_.width,
|
|
'class': 'blocklyFieldRect'
|
|
},
|
|
this.fieldGroup_);
|
|
};
|
|
|
|
/**
|
|
* Create a field text element. Not to be overridden by subclasses. Instead
|
|
* modify the result of the function inside initView, or create a separate
|
|
* function to call.
|
|
* @protected
|
|
*/
|
|
Field.prototype.createTextElement_ = function() {
|
|
this.textElement_ = dom.createSvgElement(
|
|
Svg.TEXT, {
|
|
'class': 'blocklyText',
|
|
},
|
|
this.fieldGroup_);
|
|
if (this.getConstants().FIELD_TEXT_BASELINE_CENTER) {
|
|
this.textElement_.setAttribute('dominant-baseline', 'central');
|
|
}
|
|
this.textContent_ = document.createTextNode('');
|
|
this.textElement_.appendChild(this.textContent_);
|
|
};
|
|
|
|
/**
|
|
* Bind events to the field. Can be overridden by subclasses if they need to do
|
|
* custom input handling.
|
|
* @protected
|
|
*/
|
|
Field.prototype.bindEvents_ = function() {
|
|
Tooltip.bindMouseEvents(this.getClickTarget_());
|
|
this.mouseDownWrapper_ = browserEvents.conditionalBind(
|
|
this.getClickTarget_(), 'mousedown', this, this.onMouseDown_);
|
|
};
|
|
|
|
/**
|
|
* Sets the field's value based on the given XML element. Should only be called
|
|
* by Blockly.Xml.
|
|
* @param {!Element} fieldElement The element containing info about the
|
|
* field's state.
|
|
* @package
|
|
*/
|
|
Field.prototype.fromXml = function(fieldElement) {
|
|
this.setValue(fieldElement.textContent);
|
|
};
|
|
|
|
/**
|
|
* Serializes this field's value to XML. Should only be called by Blockly.Xml.
|
|
* @param {!Element} fieldElement The element to populate with info about the
|
|
* field's state.
|
|
* @return {!Element} The element containing info about the field's state.
|
|
* @package
|
|
*/
|
|
Field.prototype.toXml = function(fieldElement) {
|
|
fieldElement.textContent = this.getValue();
|
|
return fieldElement;
|
|
};
|
|
|
|
/**
|
|
* Dispose of all DOM objects and events belonging to this editable field.
|
|
* @package
|
|
*/
|
|
Field.prototype.dispose = function() {
|
|
DropDownDiv.hideIfOwner(this);
|
|
WidgetDiv.hideIfOwner(this);
|
|
Tooltip.unbindMouseEvents(this.getClickTarget_());
|
|
|
|
if (this.mouseDownWrapper_) {
|
|
browserEvents.unbind(this.mouseDownWrapper_);
|
|
}
|
|
|
|
dom.removeNode(this.fieldGroup_);
|
|
|
|
this.disposed = true;
|
|
};
|
|
|
|
/**
|
|
* Add or remove the UI indicating if this field is editable or not.
|
|
*/
|
|
Field.prototype.updateEditable = function() {
|
|
const group = this.fieldGroup_;
|
|
if (!this.EDITABLE || !group) {
|
|
return;
|
|
}
|
|
if (this.enabled_ && this.sourceBlock_.isEditable()) {
|
|
dom.addClass(group, 'blocklyEditableText');
|
|
dom.removeClass(group, 'blocklyNonEditableText');
|
|
group.style.cursor = this.CURSOR;
|
|
} else {
|
|
dom.addClass(group, 'blocklyNonEditableText');
|
|
dom.removeClass(group, 'blocklyEditableText');
|
|
group.style.cursor = '';
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Set whether this field's value can be changed using the editor when the
|
|
* source block is editable.
|
|
* @param {boolean} enabled True if enabled.
|
|
*/
|
|
Field.prototype.setEnabled = function(enabled) {
|
|
this.enabled_ = enabled;
|
|
this.updateEditable();
|
|
};
|
|
|
|
/**
|
|
* Check whether this field's value can be changed using the editor when the
|
|
* source block is editable.
|
|
* @return {boolean} Whether this field is enabled.
|
|
*/
|
|
Field.prototype.isEnabled = function() {
|
|
return this.enabled_;
|
|
};
|
|
|
|
/**
|
|
* Check whether this field defines the showEditor_ function.
|
|
* @return {boolean} Whether this field is clickable.
|
|
*/
|
|
Field.prototype.isClickable = function() {
|
|
return this.enabled_ && !!this.sourceBlock_ &&
|
|
this.sourceBlock_.isEditable() && !!this.showEditor_ &&
|
|
(typeof this.showEditor_ === 'function');
|
|
};
|
|
|
|
/**
|
|
* Check whether this field is currently editable. Some fields are never
|
|
* EDITABLE (e.g. text labels). Other fields may be EDITABLE but may exist on
|
|
* non-editable blocks or be currently disabled.
|
|
* @return {boolean} Whether this field is currently enabled, editable and on
|
|
* an editable block.
|
|
*/
|
|
Field.prototype.isCurrentlyEditable = function() {
|
|
return this.enabled_ && this.EDITABLE && !!this.sourceBlock_ &&
|
|
this.sourceBlock_.isEditable();
|
|
};
|
|
|
|
/**
|
|
* Check whether this field should be serialized by the XML renderer.
|
|
* Handles the logic for backwards compatibility and incongruous states.
|
|
* @return {boolean} Whether this field should be serialized or not.
|
|
*/
|
|
Field.prototype.isSerializable = function() {
|
|
let isSerializable = false;
|
|
if (this.name) {
|
|
if (this.SERIALIZABLE) {
|
|
isSerializable = true;
|
|
} else if (this.EDITABLE) {
|
|
console.warn(
|
|
'Detected an editable field that was not serializable.' +
|
|
' Please define SERIALIZABLE property as true on all editable custom' +
|
|
' fields. Proceeding with serialization.');
|
|
isSerializable = true;
|
|
}
|
|
}
|
|
return isSerializable;
|
|
};
|
|
|
|
/**
|
|
* Gets whether this editable field is visible or not.
|
|
* @return {boolean} True if visible.
|
|
*/
|
|
Field.prototype.isVisible = function() {
|
|
return this.visible_;
|
|
};
|
|
|
|
/**
|
|
* Sets whether this editable field is visible or not. Should only be called
|
|
* by input.setVisible.
|
|
* @param {boolean} visible True if visible.
|
|
* @package
|
|
*/
|
|
Field.prototype.setVisible = function(visible) {
|
|
if (this.visible_ == visible) {
|
|
return;
|
|
}
|
|
this.visible_ = visible;
|
|
const root = this.getSvgRoot();
|
|
if (root) {
|
|
root.style.display = visible ? 'block' : 'none';
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Sets a new validation function for editable fields, or clears a previously
|
|
* set validator.
|
|
*
|
|
* The validator function takes in the new field value, and returns
|
|
* validated value. The validated value could be the input value, a modified
|
|
* version of the input value, or null to abort the change.
|
|
*
|
|
* If the function does not return anything (or returns undefined) the new
|
|
* value is accepted as valid. This is to allow for fields using the
|
|
* validated function as a field-level change event notification.
|
|
*
|
|
* @param {Function} handler The validator function
|
|
* or null to clear a previous validator.
|
|
*/
|
|
Field.prototype.setValidator = function(handler) {
|
|
this.validator_ = handler;
|
|
};
|
|
|
|
/**
|
|
* Gets the validation function for editable fields, or null if not set.
|
|
* @return {?Function} Validation function, or null.
|
|
*/
|
|
Field.prototype.getValidator = function() {
|
|
return this.validator_;
|
|
};
|
|
|
|
/**
|
|
* Gets the group element for this editable field.
|
|
* Used for measuring the size and for positioning.
|
|
* @return {!SVGGElement} The group element.
|
|
*/
|
|
Field.prototype.getSvgRoot = function() {
|
|
return /** @type {!SVGGElement} */ (this.fieldGroup_);
|
|
};
|
|
|
|
/**
|
|
* Updates the field to match the colour/style of the block. Should only be
|
|
* called by BlockSvg.applyColour().
|
|
* @package
|
|
*/
|
|
Field.prototype.applyColour = function() {
|
|
// Non-abstract sub-classes may wish to implement this. See FieldDropdown.
|
|
};
|
|
|
|
/**
|
|
* Used by getSize() to move/resize any DOM elements, and get the new size.
|
|
*
|
|
* All rendering that has an effect on the size/shape of the block should be
|
|
* done here, and should be triggered by getSize().
|
|
* @protected
|
|
*/
|
|
Field.prototype.render_ = function() {
|
|
if (this.textContent_) {
|
|
this.textContent_.nodeValue = this.getDisplayText_();
|
|
}
|
|
this.updateSize_();
|
|
};
|
|
|
|
/**
|
|
* Show an editor when the field is clicked only if the field is clickable.
|
|
* @param {Event=} opt_e Optional mouse event that triggered the field to open,
|
|
* or undefined if triggered programmatically.
|
|
* @package
|
|
*/
|
|
Field.prototype.showEditor = function(opt_e) {
|
|
if (this.isClickable()) {
|
|
this.showEditor_(opt_e);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Updates the size of the field based on the text.
|
|
* @param {number=} opt_margin margin to use when positioning the text element.
|
|
* @protected
|
|
*/
|
|
Field.prototype.updateSize_ = function(opt_margin) {
|
|
const constants = this.getConstants();
|
|
const xOffset = opt_margin != undefined ?
|
|
opt_margin :
|
|
(this.borderRect_ ? this.getConstants().FIELD_BORDER_RECT_X_PADDING : 0);
|
|
let totalWidth = xOffset * 2;
|
|
let totalHeight = constants.FIELD_TEXT_HEIGHT;
|
|
|
|
let contentWidth = 0;
|
|
if (this.textElement_) {
|
|
contentWidth = dom.getFastTextWidth(
|
|
this.textElement_, constants.FIELD_TEXT_FONTSIZE,
|
|
constants.FIELD_TEXT_FONTWEIGHT, constants.FIELD_TEXT_FONTFAMILY);
|
|
totalWidth += contentWidth;
|
|
}
|
|
if (this.borderRect_) {
|
|
totalHeight = Math.max(totalHeight, constants.FIELD_BORDER_RECT_HEIGHT);
|
|
}
|
|
|
|
this.size_.height = totalHeight;
|
|
this.size_.width = totalWidth;
|
|
|
|
this.positionTextElement_(xOffset, contentWidth);
|
|
this.positionBorderRect_();
|
|
};
|
|
|
|
/**
|
|
* Position a field's text element after a size change. This handles both LTR
|
|
* and RTL positioning.
|
|
* @param {number} xOffset x offset to use when positioning the text element.
|
|
* @param {number} contentWidth The content width.
|
|
* @protected
|
|
*/
|
|
Field.prototype.positionTextElement_ = function(xOffset, contentWidth) {
|
|
if (!this.textElement_) {
|
|
return;
|
|
}
|
|
const constants = this.getConstants();
|
|
const halfHeight = this.size_.height / 2;
|
|
|
|
this.textElement_.setAttribute(
|
|
'x',
|
|
this.sourceBlock_.RTL ? this.size_.width - contentWidth - xOffset :
|
|
xOffset);
|
|
this.textElement_.setAttribute(
|
|
'y',
|
|
constants.FIELD_TEXT_BASELINE_CENTER ? halfHeight :
|
|
halfHeight -
|
|
constants.FIELD_TEXT_HEIGHT / 2 + constants.FIELD_TEXT_BASELINE);
|
|
};
|
|
|
|
/**
|
|
* Position a field's border rect after a size change.
|
|
* @protected
|
|
*/
|
|
Field.prototype.positionBorderRect_ = function() {
|
|
if (!this.borderRect_) {
|
|
return;
|
|
}
|
|
this.borderRect_.setAttribute('width', this.size_.width);
|
|
this.borderRect_.setAttribute('height', this.size_.height);
|
|
this.borderRect_.setAttribute(
|
|
'rx', this.getConstants().FIELD_BORDER_RECT_RADIUS);
|
|
this.borderRect_.setAttribute(
|
|
'ry', this.getConstants().FIELD_BORDER_RECT_RADIUS);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns the height and width of the field.
|
|
*
|
|
* This should *in general* be the only place render_ gets called from.
|
|
* @return {!Size} Height and width.
|
|
*/
|
|
Field.prototype.getSize = function() {
|
|
if (!this.isVisible()) {
|
|
return new Size(0, 0);
|
|
}
|
|
|
|
if (this.isDirty_) {
|
|
this.render_();
|
|
this.isDirty_ = false;
|
|
} else if (this.visible_ && this.size_.width == 0) {
|
|
// If the field is not visible the width will be 0 as well, one of the
|
|
// problems with the old system.
|
|
console.warn(
|
|
'Deprecated use of setting size_.width to 0 to rerender a' +
|
|
' field. Set field.isDirty_ to true instead.');
|
|
this.render_();
|
|
}
|
|
return this.size_;
|
|
};
|
|
|
|
/**
|
|
* Returns the bounding box of the rendered field, accounting for workspace
|
|
* scaling.
|
|
* @return {!Rect} An object with top, bottom, left, and right in
|
|
* pixels relative to the top left corner of the page (window coordinates).
|
|
* @package
|
|
*/
|
|
Field.prototype.getScaledBBox = function() {
|
|
let scaledWidth, scaledHeight, xy;
|
|
if (!this.borderRect_) {
|
|
// Browsers are inconsistent in what they return for a bounding box.
|
|
// - Webkit / Blink: fill-box / object bounding box
|
|
// - Gecko / Triden / EdgeHTML: stroke-box
|
|
const bBox = this.sourceBlock_.getHeightWidth();
|
|
const scale = this.sourceBlock_.workspace.scale;
|
|
xy = this.getAbsoluteXY_();
|
|
scaledWidth = bBox.width * scale;
|
|
scaledHeight = bBox.height * scale;
|
|
|
|
if (userAgent.GECKO) {
|
|
xy.x += 1.5 * scale;
|
|
xy.y += 1.5 * scale;
|
|
scaledWidth += 1 * scale;
|
|
scaledHeight += 1 * scale;
|
|
} else {
|
|
if (!userAgent.EDGE && !userAgent.IE) {
|
|
xy.x -= 0.5 * scale;
|
|
xy.y -= 0.5 * scale;
|
|
}
|
|
scaledWidth += 1 * scale;
|
|
scaledHeight += 1 * scale;
|
|
}
|
|
} else {
|
|
const bBox = this.borderRect_.getBoundingClientRect();
|
|
xy = style.getPageOffset(this.borderRect_);
|
|
scaledWidth = bBox.width;
|
|
scaledHeight = bBox.height;
|
|
}
|
|
return new Rect(xy.y, xy.y + scaledHeight, xy.x, xy.x + scaledWidth);
|
|
};
|
|
|
|
/**
|
|
* Get the text from this field to display on the block. May differ from
|
|
* ``getText`` due to ellipsis, and other formatting.
|
|
* @return {string} Text to display.
|
|
* @protected
|
|
*/
|
|
Field.prototype.getDisplayText_ = function() {
|
|
let text = this.getText();
|
|
if (!text) {
|
|
// Prevent the field from disappearing if empty.
|
|
return Field.NBSP;
|
|
}
|
|
if (text.length > this.maxDisplayLength) {
|
|
// Truncate displayed string and add an ellipsis ('...').
|
|
text = text.substring(0, this.maxDisplayLength - 2) + '\u2026';
|
|
}
|
|
// Replace whitespace with non-breaking spaces so the text doesn't collapse.
|
|
text = text.replace(/\s/g, Field.NBSP);
|
|
if (this.sourceBlock_ && this.sourceBlock_.RTL) {
|
|
// The SVG is LTR, force text to be RTL.
|
|
text += '\u200F';
|
|
}
|
|
return text;
|
|
};
|
|
|
|
/**
|
|
* Get the text from this field.
|
|
* @return {string} Current text.
|
|
*/
|
|
Field.prototype.getText = function() {
|
|
if (this.getText_) {
|
|
const text = this.getText_.call(this);
|
|
if (text !== null) {
|
|
return String(text);
|
|
}
|
|
}
|
|
return String(this.getValue());
|
|
};
|
|
|
|
/**
|
|
* Force a rerender of the block that this field is installed on, which will
|
|
* rerender this field and adjust for any sizing changes.
|
|
* Other fields on the same block will not rerender, because their sizes have
|
|
* already been recorded.
|
|
* @package
|
|
*/
|
|
Field.prototype.markDirty = function() {
|
|
this.isDirty_ = true;
|
|
this.constants_ = null;
|
|
};
|
|
|
|
/**
|
|
* Force a rerender of the block that this field is installed on, which will
|
|
* rerender this field and adjust for any sizing changes.
|
|
* Other fields on the same block will not rerender, because their sizes have
|
|
* already been recorded.
|
|
* @package
|
|
*/
|
|
Field.prototype.forceRerender = function() {
|
|
this.isDirty_ = true;
|
|
if (this.sourceBlock_ && this.sourceBlock_.rendered) {
|
|
this.sourceBlock_.render();
|
|
this.sourceBlock_.bumpNeighbours();
|
|
this.updateMarkers_();
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Used to change the value of the field. Handles validation and events.
|
|
* Subclasses should override doClassValidation_ and doValueUpdate_ rather
|
|
* than this method.
|
|
* @param {*} newValue New value.
|
|
*/
|
|
Field.prototype.setValue = function(newValue) {
|
|
const doLogging = false;
|
|
if (newValue === null) {
|
|
doLogging && console.log('null, return');
|
|
// Not a valid value to check.
|
|
return;
|
|
}
|
|
|
|
let validatedValue = this.doClassValidation_(newValue);
|
|
// Class validators might accidentally forget to return, we'll ignore that.
|
|
newValue = this.processValidation_(newValue, validatedValue);
|
|
if (newValue instanceof Error) {
|
|
doLogging && console.log('invalid class validation, return');
|
|
return;
|
|
}
|
|
|
|
const localValidator = this.getValidator();
|
|
if (localValidator) {
|
|
validatedValue = localValidator.call(this, newValue);
|
|
// Local validators might accidentally forget to return, we'll ignore that.
|
|
newValue = this.processValidation_(newValue, validatedValue);
|
|
if (newValue instanceof Error) {
|
|
doLogging && console.log('invalid local validation, return');
|
|
return;
|
|
}
|
|
}
|
|
const source = this.sourceBlock_;
|
|
if (source && source.disposed) {
|
|
doLogging && console.log('source disposed, return');
|
|
return;
|
|
}
|
|
const oldValue = this.getValue();
|
|
if (oldValue === newValue) {
|
|
doLogging && console.log('same, doValueUpdate_, return');
|
|
this.doValueUpdate_(newValue);
|
|
return;
|
|
}
|
|
|
|
if (source && Events.isEnabled()) {
|
|
Events.fire(new (Events.get(Events.BLOCK_CHANGE))(
|
|
source, 'field', this.name || null, oldValue, newValue));
|
|
}
|
|
this.doValueUpdate_(newValue);
|
|
if (this.isDirty_) {
|
|
this.forceRerender();
|
|
}
|
|
doLogging && console.log(this.value_);
|
|
};
|
|
|
|
/**
|
|
* Process the result of validation.
|
|
* @param {*} newValue New value.
|
|
* @param {*} validatedValue Validated value.
|
|
* @return {*} New value, or an Error object.
|
|
* @private
|
|
*/
|
|
Field.prototype.processValidation_ = function(newValue, validatedValue) {
|
|
if (validatedValue === null) {
|
|
this.doValueInvalid_(newValue);
|
|
if (this.isDirty_) {
|
|
this.forceRerender();
|
|
}
|
|
return Error();
|
|
}
|
|
if (validatedValue !== undefined) {
|
|
newValue = validatedValue;
|
|
}
|
|
return newValue;
|
|
};
|
|
|
|
/**
|
|
* Get the current value of the field.
|
|
* @return {*} Current value.
|
|
*/
|
|
Field.prototype.getValue = function() {
|
|
return this.value_;
|
|
};
|
|
|
|
/**
|
|
* Used to validate a value. Returns input by default. Can be overridden by
|
|
* subclasses, see FieldDropdown.
|
|
* @param {*=} opt_newValue The value to be validated.
|
|
* @return {*} The validated value, same as input by default.
|
|
* @protected
|
|
*/
|
|
Field.prototype.doClassValidation_ = function(opt_newValue) {
|
|
if (opt_newValue === null || opt_newValue === undefined) {
|
|
return null;
|
|
}
|
|
return opt_newValue;
|
|
};
|
|
|
|
/**
|
|
* Used to update the value of a field. Can be overridden by subclasses to do
|
|
* custom storage of values/updating of external things.
|
|
* @param {*} newValue The value to be saved.
|
|
* @protected
|
|
*/
|
|
Field.prototype.doValueUpdate_ = function(newValue) {
|
|
this.value_ = newValue;
|
|
this.isDirty_ = true;
|
|
};
|
|
|
|
/**
|
|
* Used to notify the field an invalid value was input. Can be overridden by
|
|
* subclasses, see FieldTextInput.
|
|
* No-op by default.
|
|
* @param {*} _invalidValue The input value that was determined to be invalid.
|
|
* @protected
|
|
*/
|
|
Field.prototype.doValueInvalid_ = function(_invalidValue) {
|
|
// NOP
|
|
};
|
|
|
|
/**
|
|
* Handle a mouse down event on a field.
|
|
* @param {!Event} e Mouse down event.
|
|
* @protected
|
|
*/
|
|
Field.prototype.onMouseDown_ = function(e) {
|
|
if (!this.sourceBlock_ || !this.sourceBlock_.workspace) {
|
|
return;
|
|
}
|
|
const gesture = this.sourceBlock_.workspace.getGesture(e);
|
|
if (gesture) {
|
|
gesture.setStartField(this);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Sets the tooltip for this field.
|
|
* @param {?Tooltip.TipInfo} newTip The
|
|
* text for the tooltip, a function that returns the text for the tooltip, a
|
|
* parent object whose tooltip will be used, or null to display the tooltip
|
|
* of the parent block. To not display a tooltip pass the empty string.
|
|
*/
|
|
Field.prototype.setTooltip = function(newTip) {
|
|
if (!newTip && newTip !== '') { // If null or undefined.
|
|
newTip = this.sourceBlock_;
|
|
}
|
|
const clickTarget = this.getClickTarget_();
|
|
if (clickTarget) {
|
|
clickTarget.tooltip = newTip;
|
|
} else {
|
|
// Field has not been initialized yet.
|
|
this.tooltip_ = newTip;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Returns the tooltip text for this field.
|
|
* @return {string} The tooltip text for this field.
|
|
*/
|
|
Field.prototype.getTooltip = function() {
|
|
const clickTarget = this.getClickTarget_();
|
|
if (clickTarget) {
|
|
return Tooltip.getTooltipOfObject(clickTarget);
|
|
}
|
|
// Field has not been initialized yet. Return stashed this.tooltip_ value.
|
|
return Tooltip.getTooltipOfObject({tooltip: this.tooltip_});
|
|
};
|
|
|
|
/**
|
|
* The element to bind the click handler to. If not set explicitly, defaults
|
|
* to the SVG root of the field. When this element is
|
|
* clicked on an editable field, the editor will open.
|
|
* @return {!Element} Element to bind click handler to.
|
|
* @protected
|
|
*/
|
|
Field.prototype.getClickTarget_ = function() {
|
|
return this.clickTarget_ || this.getSvgRoot();
|
|
};
|
|
|
|
/**
|
|
* Return the absolute coordinates of the top-left corner of this field.
|
|
* The origin (0,0) is the top-left corner of the page body.
|
|
* @return {!Coordinate} Object with .x and .y properties.
|
|
* @protected
|
|
*/
|
|
Field.prototype.getAbsoluteXY_ = function() {
|
|
return style.getPageOffset(
|
|
/** @type {!SVGRectElement} */ (this.getClickTarget_()));
|
|
};
|
|
|
|
/**
|
|
* Whether this field references any Blockly variables. If true it may need to
|
|
* be handled differently during serialization and deserialization. Subclasses
|
|
* may override this.
|
|
* @return {boolean} True if this field has any variable references.
|
|
* @package
|
|
*/
|
|
Field.prototype.referencesVariables = function() {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Search through the list of inputs and their fields in order to find the
|
|
* parent input of a field.
|
|
* @return {Input} The input that the field belongs to.
|
|
* @package
|
|
*/
|
|
Field.prototype.getParentInput = function() {
|
|
let parentInput = null;
|
|
const block = this.sourceBlock_;
|
|
const inputs = block.inputList;
|
|
|
|
for (let idx = 0; idx < block.inputList.length; idx++) {
|
|
const input = inputs[idx];
|
|
const fieldRows = input.fieldRow;
|
|
for (let j = 0; j < fieldRows.length; j++) {
|
|
if (fieldRows[j] === this) {
|
|
parentInput = input;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return parentInput;
|
|
};
|
|
|
|
/**
|
|
* Returns whether or not we should flip the field in RTL.
|
|
* @return {boolean} True if we should flip in RTL.
|
|
*/
|
|
Field.prototype.getFlipRtl = function() {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Returns whether or not the field is tab navigable.
|
|
* @return {boolean} True if the field is tab navigable.
|
|
*/
|
|
Field.prototype.isTabNavigable = function() {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Handles the given keyboard shortcut.
|
|
* @param {!ShortcutRegistry.KeyboardShortcut} _shortcut The shortcut to be
|
|
* handled.
|
|
* @return {boolean} True if the shortcut has been handled, false otherwise.
|
|
* @public
|
|
*/
|
|
Field.prototype.onShortcut = function(_shortcut) {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Add the cursor SVG to this fields SVG group.
|
|
* @param {SVGElement} cursorSvg The SVG root of the cursor to be added to the
|
|
* field group.
|
|
* @package
|
|
*/
|
|
Field.prototype.setCursorSvg = function(cursorSvg) {
|
|
if (!cursorSvg) {
|
|
this.cursorSvg_ = null;
|
|
return;
|
|
}
|
|
|
|
this.fieldGroup_.appendChild(cursorSvg);
|
|
this.cursorSvg_ = cursorSvg;
|
|
};
|
|
|
|
/**
|
|
* Add the marker SVG to this fields SVG group.
|
|
* @param {SVGElement} markerSvg The SVG root of the marker to be added to the
|
|
* field group.
|
|
* @package
|
|
*/
|
|
Field.prototype.setMarkerSvg = function(markerSvg) {
|
|
if (!markerSvg) {
|
|
this.markerSvg_ = null;
|
|
return;
|
|
}
|
|
|
|
this.fieldGroup_.appendChild(markerSvg);
|
|
this.markerSvg_ = markerSvg;
|
|
};
|
|
|
|
/**
|
|
* Redraw any attached marker or cursor svgs if needed.
|
|
* @protected
|
|
*/
|
|
Field.prototype.updateMarkers_ = function() {
|
|
const workspace =
|
|
/** @type {!WorkspaceSvg} */ (this.sourceBlock_.workspace);
|
|
if (workspace.keyboardAccessibilityMode && this.cursorSvg_) {
|
|
workspace.getCursor().draw();
|
|
}
|
|
if (workspace.keyboardAccessibilityMode && this.markerSvg_) {
|
|
// TODO(#4592): Update all markers on the field.
|
|
workspace.getMarker(MarkerManager.LOCAL_MARKER).draw();
|
|
}
|
|
};
|
|
|
|
exports = Field;
|