mirror of
https://github.com/google/blockly.git
synced 2026-01-07 09:00:11 +01:00
* chore(deps): Bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Reformat using Prettier v3.0 defaults The main change is to add trailing commas to the last line of block-formatted function calls. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christopher Allen <cpcallen+git@google.com>
52 lines
1.2 KiB
TypeScript
52 lines
1.2 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.Field');
|
|
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
import type {Field as BlocklyField} from '../../field.js';
|
|
import type {Input} from '../../inputs/input.js';
|
|
import type {ConstantProvider} from '../common/constants.js';
|
|
|
|
import {Measurable} from './base.js';
|
|
import {Types} from './types.js';
|
|
|
|
/**
|
|
* An object containing information about the space a field takes up during
|
|
* rendering
|
|
*/
|
|
export class Field extends Measurable {
|
|
isEditable: boolean;
|
|
flipRtl: boolean;
|
|
override height: number;
|
|
override width: number;
|
|
|
|
/**
|
|
* @param constants The rendering constants provider.
|
|
* @param field The field to measure and store information for.
|
|
* @param parentInput The parent input for the field.
|
|
*/
|
|
constructor(
|
|
constants: ConstantProvider,
|
|
public field: BlocklyField,
|
|
public parentInput: Input,
|
|
) {
|
|
super(constants);
|
|
|
|
this.isEditable = field.EDITABLE;
|
|
|
|
this.flipRtl = field.getFlipRtl();
|
|
this.type |= Types.FIELD;
|
|
|
|
const size = this.field.getSize();
|
|
|
|
this.height = size.height;
|
|
|
|
this.width = size.width;
|
|
}
|
|
}
|