@@ -93,6 +93,13 @@ type FeatureLibraryEntry = {
93
93
* @class ComponentAPI
94
94
*/
95
95
export class ComponentAPI {
96
+
97
+ // The blackbox entry
98
+ static blackboxEntryFlow : LibraryEntry = { object : new BlackBox ( ) , key : "FLOW" } ;
99
+ static blackboxEntryControl : LibraryEntry = { object : new BlackBox ( ) , key : "CONTROL" } ;
100
+ static blackboxEntryIntegration : LibraryEntry = { object : new BlackBox ( ) , key : "INTEGRATION" } ;
101
+
102
+ // The library of components
96
103
static library : { [ key : string ] : LibraryEntry } = {
97
104
Template : { object : new Template ( ) , key : "FLOW" } ,
98
105
Text : { object : new Text ( ) , key : "FLOW" } ,
@@ -541,4 +548,32 @@ export class ComponentAPI {
541
548
}
542
549
return ret ;
543
550
}
551
+
552
+
553
+ /**
554
+ * Rertuns the definition of the blackbox entry
555
+ *
556
+ * @static
557
+ * @param {* } entity
558
+ * @memberof ComponentAPI
559
+ */
560
+ static getBlackBoxDefinition ( xspan : number , yspan : number , ports : Array < any > ) : LibraryEntryDefinition {
561
+ // TODO: Deal with the ports later
562
+ // Create a fake definition for the blackbox
563
+
564
+ // TODO: How to pass xspan, yspan, ports to the blackbox?
565
+ let definition = ComponentAPI . blackboxEntryFlow . object ;
566
+ let ret = {
567
+ unique : definition . unique ,
568
+ heritable : definition . heritable ,
569
+ units : definition . units ,
570
+ defaults : definition . defaults ,
571
+ minimum : definition . minimum ,
572
+ maximum : definition . maximum ,
573
+ mint : definition . mint
574
+ } ;
575
+ return ret ;
576
+ }
544
577
}
578
+
579
+
0 commit comments