Skip to content

Commit 461cc16

Browse files
committed
fix for LVGL widget identifiers
1 parent 64db4da commit 461cc16

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

packages/project-editor/lvgl/identifiers.ts

+16-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ import type { Flow } from "project-editor/flow/flow";
77
import { Page } from "project-editor/features/page/page";
88

99
import type { LVGLWidget } from "project-editor/lvgl/widgets";
10-
import { USER_WIDGET_IDENTIFIER_SEPARATOR } from "project-editor/build/helper";
10+
import {
11+
getName,
12+
NamingConvention,
13+
USER_WIDGET_IDENTIFIER_SEPARATOR
14+
} from "project-editor/build/helper";
1115

1216
export const GENERATED_NAME_PREFIX = "obj";
1317

@@ -96,7 +100,17 @@ export class LVGLIdentifiers {
96100
if (widget instanceof ProjectEditor.LVGLScreenWidgetClass) {
97101
identifierName = page.name;
98102
} else {
99-
identifierName = prefix + widget.identifier;
103+
if (!widget.identifier) {
104+
return;
105+
}
106+
107+
identifierName =
108+
prefix +
109+
getName(
110+
"",
111+
widget.identifier,
112+
NamingConvention.UnderscoreLowerCase
113+
);
100114
}
101115

102116
if (!identifierName) {

0 commit comments

Comments
 (0)