@@ -11,11 +11,7 @@ import type { Font } from "project-editor/features/font/font";
11
11
import { Page } from "project-editor/features/page/page" ;
12
12
import { ProjectEditor } from "project-editor/project-editor-interface" ;
13
13
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" ;
19
15
import type { LVGLWidget } from "./widgets" ;
20
16
import type { Assets } from "project-editor/build/assets" ;
21
17
import { isDev , writeTextFile } from "eez-studio-shared/util-electron" ;
@@ -484,7 +480,12 @@ export class LVGLBuild extends Build {
484
480
const pageIdentifiers =
485
481
this . lvglObjectIdentifiers . fromUserWidgets . get ( flow ) ;
486
482
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
+ ) ;
488
489
}
489
490
return pageIdentifiers ;
490
491
}
@@ -498,12 +499,19 @@ export class LVGLBuild extends Build {
498
499
}
499
500
500
501
const pageIdentifiers = this . getPageIdentifiers ( widget ) ;
502
+ if ( ! pageIdentifiers ) {
503
+ return "" ;
504
+ }
501
505
502
506
const identifier = pageIdentifiers . widgetToIdentifier . get ( widget ) ;
503
507
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` ,
505
512
widget
506
- ) } `;
513
+ ) ;
514
+ return "" ;
507
515
}
508
516
509
517
return identifier ;
@@ -516,10 +524,20 @@ export class LVGLBuild extends Build {
516
524
}
517
525
518
526
const pageIdentifiers = this . getPageIdentifiers ( widget ) ;
527
+ if ( ! pageIdentifiers ) {
528
+ return 0 ;
529
+ }
519
530
520
531
const index = pageIdentifiers . widgetToIndex . get ( widget ) ;
532
+
521
533
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 ;
523
541
}
524
542
525
543
return index ;
@@ -531,12 +549,20 @@ export class LVGLBuild extends Build {
531
549
}
532
550
533
551
const pageIdentifiers = this . getPageIdentifiers ( fromObject ) ;
534
-
552
+ if ( ! pageIdentifiers ) {
553
+ return 0 ;
554
+ }
535
555
const index = pageIdentifiers . identifiers . indexOf ( objectName ) ;
536
556
537
557
if ( index == - 1 ) {
538
558
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 ;
540
566
}
541
567
}
542
568
@@ -550,10 +576,19 @@ export class LVGLBuild extends Build {
550
576
}
551
577
552
578
const pageIdentifiers = this . getPageIdentifiers ( widget ) ;
579
+ if ( ! pageIdentifiers ) {
580
+ return 0 ;
581
+ }
553
582
554
583
const accessor = pageIdentifiers . widgetToAccessor . get ( widget ) ;
555
584
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 "" ;
557
592
}
558
593
559
594
return accessor ;
0 commit comments