mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
* feat: Parse message newlines as endOfRow dummies. * Fix the multilineinput field test. * Addressing PR feedback. * Addressing PR feedback. * Newline parsing now uses a new custom input. * npm run format * Added input_end_row to block factory. * Addres feedback, fix endrow after external value.
193 lines
4.3 KiB
TypeScript
193 lines
4.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as goog from '../../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.blockRendering.Row');
|
|
|
|
import type {ConstantProvider} from '../common/constants.js';
|
|
|
|
import type {Measurable} from './base.js';
|
|
import type {InRowSpacer} from './in_row_spacer.js';
|
|
import type {InputConnection} from './input_connection.js';
|
|
import {Types} from './types.js';
|
|
|
|
/**
|
|
* An object representing a single row on a rendered block and all of its
|
|
* subcomponents.
|
|
*/
|
|
export class Row {
|
|
type: number;
|
|
|
|
/**
|
|
* An array of elements contained in this row.
|
|
*/
|
|
elements: Measurable[] = [];
|
|
|
|
/**
|
|
* The height of the row.
|
|
*/
|
|
height = 0;
|
|
|
|
/**
|
|
* The width of the row, from the left edge of the block to the right.
|
|
* Does not include child blocks unless they are inline.
|
|
*/
|
|
width = 0;
|
|
|
|
/**
|
|
* The minimum height of the row.
|
|
*/
|
|
minHeight = 0;
|
|
|
|
/**
|
|
* The minimum width of the row, from the left edge of the block to the
|
|
* right. Does not include child blocks unless they are inline.
|
|
*/
|
|
minWidth = 0;
|
|
|
|
/**
|
|
* The width of the row, from the left edge of the block to the edge of the
|
|
* block or any connected child blocks.
|
|
*/
|
|
widthWithConnectedBlocks = 0;
|
|
|
|
/**
|
|
* The Y position of the row relative to the origin of the block's svg
|
|
* group.
|
|
*/
|
|
yPos = 0;
|
|
|
|
/**
|
|
* The X position of the row relative to the origin of the block's svg
|
|
* group.
|
|
*/
|
|
xPos = 0;
|
|
|
|
/**
|
|
* Whether the row has any external inputs.
|
|
*/
|
|
hasExternalInput = false;
|
|
|
|
/**
|
|
* Whether the row has any statement inputs.
|
|
*/
|
|
hasStatement = false;
|
|
|
|
/**
|
|
* Where the left edge of all of the statement inputs on the block should
|
|
* be. This makes sure that statement inputs which are proceded by fields
|
|
* of varius widths are all aligned.
|
|
*/
|
|
statementEdge = 0;
|
|
|
|
/**
|
|
* Whether the row has any inline inputs.
|
|
*/
|
|
hasInlineInput = false;
|
|
|
|
/**
|
|
* Whether the row has any dummy inputs or end-row inputs.
|
|
*/
|
|
hasDummyInput = false;
|
|
|
|
/**
|
|
* Whether the row has a jagged edge.
|
|
*/
|
|
hasJaggedEdge = false;
|
|
notchOffset: number;
|
|
|
|
/**
|
|
* Alignment of the row.
|
|
*/
|
|
align: number | null = null;
|
|
|
|
protected readonly constants_: ConstantProvider;
|
|
|
|
/**
|
|
* @param constants The rendering constants provider.
|
|
*/
|
|
constructor(constants: ConstantProvider) {
|
|
/** The renderer's constant provider. */
|
|
this.constants_ = constants;
|
|
|
|
/** The type of this rendering object. */
|
|
this.type = Types.ROW;
|
|
|
|
this.notchOffset = this.constants_.NOTCH_OFFSET_LEFT;
|
|
}
|
|
|
|
/**
|
|
* Get the last input on this row, if it has one.
|
|
*
|
|
* @returns The last input on the row, or null.
|
|
*/
|
|
getLastInput(): InputConnection | null {
|
|
// TODO: Consider moving this to InputRow, if possible.
|
|
for (let i = this.elements.length - 1; i >= 0; i--) {
|
|
const elem = this.elements[i];
|
|
if (Types.isInput(elem)) {
|
|
return elem as InputConnection;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Inspect all subcomponents and populate all size properties on the row.
|
|
*/
|
|
measure() {
|
|
throw Error('Unexpected attempt to measure a base Row.');
|
|
}
|
|
|
|
/**
|
|
* Determines whether this row should start with an element spacer.
|
|
*
|
|
* @returns Whether the row should start with a spacer.
|
|
*/
|
|
startsWithElemSpacer(): boolean {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determines whether this row should end with an element spacer.
|
|
*
|
|
* @returns Whether the row should end with a spacer.
|
|
*/
|
|
endsWithElemSpacer(): boolean {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Convenience method to get the first spacer element on this row.
|
|
*
|
|
* @returns The first spacer element on this row.
|
|
*/
|
|
getFirstSpacer(): InRowSpacer | null {
|
|
for (let i = 0; i < this.elements.length; i++) {
|
|
const elem = this.elements[i];
|
|
if (Types.isSpacer(elem)) {
|
|
return elem as InRowSpacer;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Convenience method to get the last spacer element on this row.
|
|
*
|
|
* @returns The last spacer element on this row.
|
|
*/
|
|
getLastSpacer(): InRowSpacer | null {
|
|
for (let i = this.elements.length - 1; i >= 0; i--) {
|
|
const elem = this.elements[i];
|
|
if (Types.isSpacer(elem)) {
|
|
return elem as InRowSpacer;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|