| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { createBox } from '../../projection/geometry/models.mjs';
- import { VisualElement } from '../VisualElement.mjs';
- function isObjectKey(key, object) {
- return key in object;
- }
- class ObjectVisualElement extends VisualElement {
- constructor() {
- super(...arguments);
- this.type = "object";
- }
- readValueFromInstance(instance, key) {
- if (isObjectKey(key, instance)) {
- const value = instance[key];
- if (typeof value === "string" || typeof value === "number") {
- return value;
- }
- }
- return undefined;
- }
- getBaseTargetFromProps() {
- return undefined;
- }
- removeValueFromRenderState(key, renderState) {
- delete renderState.output[key];
- }
- measureInstanceViewportBox() {
- return createBox();
- }
- build(renderState, latestValues) {
- Object.assign(renderState.output, latestValues);
- }
- renderInstance(instance, { output }) {
- Object.assign(instance, output);
- }
- sortInstanceNodePosition() {
- return 0;
- }
- }
- export { ObjectVisualElement };
|