Files
blockly/core/renderers/measurables/base.ts
Maribeth Bottorff 88ff901a72 chore: use prettier instead of clang-format (#7014)
* chore: add and configure prettier

* chore: remove clang-format

* chore: remove clang-format config

* chore: lint additional ts files

* chore: fix lint errors in blocks

* chore: add prettier-ignore where needed

* chore: ignore js blocks when formatting

* chore: fix playground html syntax

* chore: fix yaml spacing from merge

* chore: convert text blocks to use arrow functions

* chore: format everything with prettier

* chore: fix lint unused imports in blocks
2023-05-10 16:01:39 -07:00

43 lines
980 B
TypeScript

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as goog from '../../../closure/goog/goog.js';
goog.declareModuleId('Blockly.blockRendering.Measurable');
import type {ConstantProvider} from '../common/constants.js';
import {Types} from './types.js';
/**
* The base class to represent a part of a block that takes up space during
* rendering. The constructor for each non-spacer Measurable records the size
* of the block element (e.g. field, statement input).
*/
export class Measurable {
width = 0;
height = 0;
type: number;
xPos = 0;
centerline = 0;
notchOffset: number;
/** The renderer's constant provider. */
protected readonly constants_: ConstantProvider;
/**
* @param constants The rendering constants provider.
*/
constructor(constants: ConstantProvider) {
this.constants_ = constants;
this.type = Types.NONE;
this.notchOffset = this.constants_.NOTCH_OFFSET_LEFT;
}
}