Skip to content

Commit 457e308

Browse files
committed
fix build error
1 parent 56556a9 commit 457e308

File tree

2 files changed

+51
-15
lines changed

2 files changed

+51
-15
lines changed

packages/home/open-projects.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@ class OpenProjectsStore {
167167
mruItem =>
168168
mruItem.filePath
169169
.toLowerCase()
170-
.indexOf(openProjectsStore.searchText.toLowerCase()) !=
171-
-1
170+
.indexOf(
171+
openProjectsStore.searchText.trim().toLowerCase()
172+
) != -1
172173
)
173174
.map(mruItem => ({
174175
id: mruItem.filePath,
@@ -187,7 +188,7 @@ class OpenProjectsStore {
187188
};
188189

189190
onSearchChange = (event: any) => {
190-
this.searchText = ($(event.target).val() as string).trim();
191+
this.searchText = $(event.target).val() as string;
191192
if (this.allMruItems.length > 0) {
192193
this.selectedMruItem = this.allMruItems[0].data;
193194
}

packages/project-editor/lvgl/build.ts

+47-12
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ import type { Font } from "project-editor/features/font/font";
1111
import { Page } from "project-editor/features/page/page";
1212
import { ProjectEditor } from "project-editor/project-editor-interface";
1313
import { Project, findAction } from "project-editor/project/project";
14-
import {
15-
Section,
16-
getAncestorOfType,
17-
getObjectPathAsString
18-
} from "project-editor/store";
14+
import { Section, getAncestorOfType } from "project-editor/store";
1915
import type { LVGLWidget } from "./widgets";
2016
import type { Assets } from "project-editor/build/assets";
2117
import { isDev, writeTextFile } from "eez-studio-shared/util-electron";
@@ -484,7 +480,12 @@ export class LVGLBuild extends Build {
484480
const pageIdentifiers =
485481
this.lvglObjectIdentifiers.fromUserWidgets.get(flow);
486482
if (!pageIdentifiers) {
487-
throw "Page identifiers not found";
483+
this.assets.projectStore.outputSectionsStore.write(
484+
Section.OUTPUT,
485+
MessageType.ERROR,
486+
"Page identifiers not found",
487+
object
488+
);
488489
}
489490
return pageIdentifiers;
490491
}
@@ -498,12 +499,19 @@ export class LVGLBuild extends Build {
498499
}
499500

500501
const pageIdentifiers = this.getPageIdentifiers(widget);
502+
if (!pageIdentifiers) {
503+
return "";
504+
}
501505

502506
const identifier = pageIdentifiers.widgetToIdentifier.get(widget);
503507
if (identifier == undefined) {
504-
throw `Widget identifier not found: ${getObjectPathAsString(
508+
this.assets.projectStore.outputSectionsStore.write(
509+
Section.OUTPUT,
510+
MessageType.ERROR,
511+
`Widget identifier not found`,
505512
widget
506-
)}`;
513+
);
514+
return "";
507515
}
508516

509517
return identifier;
@@ -516,10 +524,20 @@ export class LVGLBuild extends Build {
516524
}
517525

518526
const pageIdentifiers = this.getPageIdentifiers(widget);
527+
if (!pageIdentifiers) {
528+
return 0;
529+
}
519530

520531
const index = pageIdentifiers.widgetToIndex.get(widget);
532+
521533
if (index == undefined) {
522-
throw `Widget index not found: ${getObjectPathAsString(widget)}`;
534+
this.assets.projectStore.outputSectionsStore.write(
535+
Section.OUTPUT,
536+
MessageType.ERROR,
537+
`Widget index not found`,
538+
widget
539+
);
540+
return 0;
523541
}
524542

525543
return index;
@@ -531,12 +549,20 @@ export class LVGLBuild extends Build {
531549
}
532550

533551
const pageIdentifiers = this.getPageIdentifiers(fromObject);
534-
552+
if (!pageIdentifiers) {
553+
return 0;
554+
}
535555
const index = pageIdentifiers.identifiers.indexOf(objectName);
536556

537557
if (index == -1) {
538558
if (!this.isFirstPass) {
539-
throw `Widget index not found for "${objectName}"`;
559+
this.assets.projectStore.outputSectionsStore.write(
560+
Section.OUTPUT,
561+
MessageType.ERROR,
562+
`Widget index not found for "${objectName}"`,
563+
fromObject
564+
);
565+
return 0;
540566
}
541567
}
542568

@@ -550,10 +576,19 @@ export class LVGLBuild extends Build {
550576
}
551577

552578
const pageIdentifiers = this.getPageIdentifiers(widget);
579+
if (!pageIdentifiers) {
580+
return 0;
581+
}
553582

554583
const accessor = pageIdentifiers.widgetToAccessor.get(widget);
555584
if (accessor == undefined) {
556-
throw `Widget accessor not found: ${getObjectPathAsString(widget)}`;
585+
this.assets.projectStore.outputSectionsStore.write(
586+
Section.OUTPUT,
587+
MessageType.ERROR,
588+
`Widget accessor not found`,
589+
widget
590+
);
591+
return "";
557592
}
558593

559594
return accessor;

0 commit comments

Comments
 (0)