Skip to content

Commit 715a158

Browse files
committed
fixes
1 parent 20bddd6 commit 715a158

File tree

8 files changed

+27
-212
lines changed

8 files changed

+27
-212
lines changed

packages/project-editor/flow/FlowStructureTab.tsx

-193
This file was deleted.

packages/project-editor/flow/flow.tsx

+16-16
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import {
1616
import { visitObjects } from "project-editor/core/search";
1717
import {
1818
getProjectStore,
19-
getAncestorOfType,
2019
ProjectStore,
2120
createObject,
2221
getClass,
@@ -419,22 +418,23 @@ export class FlowFragment extends EezObject {
419418
| ContainerWidget
420419
| SelectWidget
421420
| LVGLWidget
422-
| undefined = getAncestorOfType(
423-
getParent(getParent(object)),
424-
ContainerWidget.classInfo
425-
) as ContainerWidget | undefined;
426-
427-
if (!containerAncestor) {
428-
containerAncestor = getAncestorOfType(
429-
getParent(getParent(object)),
430-
SelectWidget.classInfo
431-
) as SelectWidget | undefined;
432-
if (!containerAncestor) {
433-
containerAncestor = getAncestorOfType(
434-
getParent(getParent(object)),
435-
ProjectEditor.LVGLWidgetClass.classInfo
436-
) as LVGLWidget | undefined;
421+
| undefined;
422+
423+
let testObject: IEezObject = object;
424+
while (testObject) {
425+
if (
426+
testObject instanceof
427+
ProjectEditor.ContainerWidgetClass ||
428+
testObject instanceof ProjectEditor.SelectWidgetClass ||
429+
testObject instanceof
430+
ProjectEditor.LVGLPanelWidgetClass ||
431+
testObject instanceof
432+
ProjectEditor.LVGLContainerWidgetClass
433+
) {
434+
containerAncestor = testObject;
435+
break;
437436
}
437+
testObject = getParent(testObject);
438438
}
439439

440440
if (containerAncestor) {

packages/project-editor/lvgl/widgets/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export {
9595
LVGLArcWidget,
9696
LVGLBarWidget,
9797
LVGLButtonMatrixWidget,
98+
LVGLContainerWidget,
9899
LVGLDropdownWidget,
99100
LVGLImageWidget,
100101
LVGLLabelWidget,

packages/project-editor/project-editor-create.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ import "project-editor/flow/components/widgets/eez-gui";
7777
import {
7878
LVGLWidget,
7979
LVGLScreenWidget,
80+
LVGLContainerWidget,
8081
LVGLPanelWidget,
8182
LVGLUserWidgetWidget,
8283
LVGLTabWidget,
@@ -195,6 +196,7 @@ export async function createProjectEditor(
195196
ColorClass: Color,
196197
LVGLWidgetClass: LVGLWidget,
197198
LVGLScreenWidgetClass: LVGLScreenWidget,
199+
LVGLContainerWidgetClass: LVGLContainerWidget,
198200
LVGLPanelWidgetClass: LVGLPanelWidget,
199201
LVGLUserWidgetWidgetClass: LVGLUserWidgetWidget,
200202
LVGLTabviewWidgetClass: LVGLTabviewWidget,

packages/project-editor/project-editor-interface.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ import type { EmbeddedPropertyGrid } from "project-editor/ui-components/Property
7979
import type {
8080
LVGLWidget,
8181
LVGLScreenWidget,
82+
LVGLContainerWidget,
8283
LVGLPanelWidget,
8384
LVGLUserWidgetWidget,
8485
LVGLTabWidget,
@@ -152,6 +153,7 @@ export interface IProjectEditor {
152153
ColorClass: typeof Color;
153154
LVGLWidgetClass: typeof LVGLWidget;
154155
LVGLScreenWidgetClass: typeof LVGLScreenWidget;
156+
LVGLContainerWidgetClass: typeof LVGLContainerWidget;
155157
LVGLPanelWidgetClass: typeof LVGLPanelWidget;
156158
LVGLUserWidgetWidgetClass: typeof LVGLUserWidgetWidget;
157159
LVGLTabviewWidgetClass: typeof LVGLTabviewWidget;

packages/project-editor/project/ui/ProjectEditor.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import { ActiveFlowsPanel } from "project-editor/flow/debugger/ActiveFlowsPanel"
3131
import { LogsPanel } from "project-editor/flow/debugger/LogsPanel";
3232
import { ListNavigation } from "project-editor/ui-components/ListNavigation";
3333
import { VariablesTab } from "project-editor/features/variable/VariablesNavigation";
34-
import { FlowStructureTab } from "project-editor/flow/FlowStructureTab";
3534
import { StylesTab } from "project-editor/features/style/StylesNavigation";
3635
import { FontsTab } from "project-editor/features/font/FontsNavigation";
3736
import { BitmapsTab } from "project-editor/features/bitmap/BitmapsNavigation";
@@ -48,6 +47,7 @@ import {
4847
} from "home/extensions-manager/extensions-manager";
4948
import { LVGLGroupsTab } from "project-editor/lvgl/groups";
5049
import { settingsController } from "home/settings";
50+
import { PageStructure } from "project-editor/features/page/PagesNavigation";
5151

5252
////////////////////////////////////////////////////////////////////////////////
5353

@@ -147,7 +147,7 @@ const Content = observer(
147147
}
148148

149149
if (component === "flow-structure") {
150-
return <FlowStructureTab />;
150+
return <PageStructure />;
151151
}
152152

153153
if (component === "variables") {

packages/project-editor/store/editor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export class EditorsStore {
325325
if (
326326
parentNode &&
327327
parentNode instanceof FlexLayout.TabSetNode &&
328-
parentNode.isActive() &&
328+
(parentNode.isActive() || !this.activeEditor) &&
329329
parentNode.getSelectedNode() == tab
330330
) {
331331
activeEditor = editor;

packages/project-editor/ui-components/PropertyGrid/Property.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,9 @@ export const Property = observer(
424424
!isNaN(newValue.value) &&
425425
newValue.value.toString() !== this._value.toString()
426426
) {
427+
runInAction(() => {
428+
this._value = newValue.value.toString();
429+
});
427430
this.props.updateObject({
428431
[this.props.propertyInfo.name]: newValue.value
429432
});

0 commit comments

Comments
 (0)