@@ -8,9 +8,13 @@ import { BoxelInput, FieldContainer } from '@cardstack/boxel-ui/components';
8
8
import { cn , eq , pick } from ' @cardstack/boxel-ui/helpers' ;
9
9
import { on } from ' @ember/modifier' ;
10
10
import { startCase } from ' lodash' ;
11
- import { getBoxComponent , type BoxComponent } from ' ./field-component' ;
11
+ import {
12
+ getBoxComponent ,
13
+ type BoxComponent ,
14
+ DefaultFormatConsumer ,
15
+ } from ' ./field-component' ;
12
16
import { getContainsManyComponent } from ' ./contains-many-component' ;
13
- import { getLinksToEditor } from ' ./links-to-editor' ;
17
+ import { LinksToEditor } from ' ./links-to-editor' ;
14
18
import { getLinksToManyComponent } from ' ./links-to-many-component' ;
15
19
import {
16
20
SupportedMimeType ,
@@ -284,7 +288,7 @@ export interface Field<
284
288
): Promise <any >;
285
289
emptyValue(instance : BaseDef ): any ;
286
290
validate(instance : BaseDef , value : any ): void ;
287
- component(model : Box <BaseDef >, defaultFormat : Format ): BoxComponent ;
291
+ component(model : Box <BaseDef >): BoxComponent ;
288
292
getter(instance : BaseDef ): BaseInstanceType <CardT >;
289
293
queryableValue(value : any , stack : BaseDef []): SearchT ;
290
294
queryMatcher(
@@ -578,27 +582,17 @@ class ContainsMany<FieldT extends FieldDefConstructor>
578
582
);
579
583
}
580
584
581
- component(model : Box <BaseDef >, format : Format ): BoxComponent {
585
+ component(model : Box <BaseDef >): BoxComponent {
582
586
let fieldName = this .name as keyof BaseDef ;
583
587
let arrayField = model .field (
584
588
fieldName ,
585
589
useIndexBasedKey in this .card ,
586
590
) as unknown as Box <BaseDef []>;
587
591
588
- let renderFormat: Format | undefined = undefined ;
589
- if (
590
- format === ' edit' &&
591
- ' isFieldDef' in model .value .constructor &&
592
- model .value .constructor .isFieldDef
593
- ) {
594
- renderFormat = ' atom' ;
595
- }
596
-
597
592
return getContainsManyComponent ({
598
593
model ,
599
594
arrayField ,
600
595
field: this ,
601
- format: renderFormat ?? format ,
602
596
cardTypeFor ,
603
597
});
604
598
}
@@ -750,8 +744,8 @@ class Contains<CardT extends FieldDefConstructor> implements Field<CardT, any> {
750
744
);
751
745
}
752
746
753
- component(model : Box <BaseDef >, format : Format ): BoxComponent {
754
- return fieldComponent (this , model , format );
747
+ component(model : Box <BaseDef >): BoxComponent {
748
+ return fieldComponent (this , model );
755
749
}
756
750
}
757
751
@@ -1042,14 +1036,40 @@ class LinksTo<CardT extends CardDefConstructor> implements Field<CardT> {
1042
1036
return fieldInstance ;
1043
1037
}
1044
1038
1045
- component(model : Box <CardDef >, format : Format ): BoxComponent {
1046
- if (format === ' edit' && ! this .computeVia ) {
1047
- let innerModel = model .field (
1048
- this .name as keyof BaseDef ,
1049
- ) as unknown as Box <CardDef | null >;
1050
- return getLinksToEditor (innerModel , this );
1051
- }
1052
- return fieldComponent (this , model , format );
1039
+ component(model : Box <CardDef >): BoxComponent {
1040
+ let isComputed = !! this .computeVia ;
1041
+ let fieldName = this .name as keyof CardDef ;
1042
+ let linksToField = this ;
1043
+ let getInnerModel = () => {
1044
+ let innerModel = model .field (fieldName );
1045
+ return innerModel as unknown as Box <CardDef | null >;
1046
+ };
1047
+ function shouldRenderEditor(
1048
+ format : Format | undefined ,
1049
+ defaultFormat : Format ,
1050
+ isComputed : boolean ,
1051
+ ) {
1052
+ return (format ?? defaultFormat ) === ' edit' && ! isComputed ;
1053
+ }
1054
+ return class LinksToComponent extends GlimmerComponent <{
1055
+ Args: { Named: { format? : Format ; displayContainer? : boolean } };
1056
+ Blocks: {};
1057
+ }> {
1058
+ <template >
1059
+ <DefaultFormatConsumer as | defaultFormat | >
1060
+ {{#if ( shouldRenderEditor @ format defaultFormat isComputed ) }}
1061
+ <LinksToEditor @ model ={{( getInnerModel ) }} @ field ={{linksToField }} />
1062
+ {{else }}
1063
+ {{#let ( fieldComponent linksToField model ) as | FieldComponent | }}
1064
+ <FieldComponent
1065
+ @ format ={{@ format }}
1066
+ @ displayContainer ={{@ displayContainer }}
1067
+ />
1068
+ {{/let }}
1069
+ {{/if }}
1070
+ </DefaultFormatConsumer >
1071
+ </template >
1072
+ };
1053
1073
}
1054
1074
}
1055
1075
@@ -1424,28 +1444,16 @@ class LinksToMany<FieldT extends CardDefConstructor>
1424
1444
return fieldInstances ;
1425
1445
}
1426
1446
1427
- component(model : Box <CardDef >, format : Format ): BoxComponent {
1447
+ component(model : Box <CardDef >): BoxComponent {
1428
1448
let fieldName = this .name as keyof BaseDef ;
1429
1449
let arrayField = model .field (
1430
1450
fieldName ,
1431
1451
useIndexBasedKey in this .card ,
1432
1452
) as unknown as Box <CardDef []>;
1433
- let renderFormat: Format | undefined = undefined ;
1434
- if (
1435
- format === ' edit' &&
1436
- ' isFieldDef' in model .value .constructor &&
1437
- model .value .constructor .isFieldDef
1438
- ) {
1439
- renderFormat = ' atom' ;
1440
- }
1441
- if (format === ' edit' && this .computeVia ) {
1442
- renderFormat = ' embedded' ;
1443
- }
1444
1453
return getLinksToManyComponent ({
1445
1454
model ,
1446
1455
arrayField ,
1447
1456
field: this ,
1448
- format: renderFormat ?? format ,
1449
1457
cardTypeFor ,
1450
1458
});
1451
1459
}
@@ -1454,7 +1462,6 @@ class LinksToMany<FieldT extends CardDefConstructor>
1454
1462
function fieldComponent(
1455
1463
field : Field <typeof BaseDef >,
1456
1464
model : Box <BaseDef >,
1457
- defaultFormat : Format ,
1458
1465
): BoxComponent {
1459
1466
let fieldName = field .name as keyof BaseDef ;
1460
1467
let card: typeof BaseDef ;
@@ -1465,7 +1472,7 @@ function fieldComponent(
1465
1472
(model .value [fieldName ]?.constructor as typeof BaseDef ) ?? field .card ;
1466
1473
}
1467
1474
let innerModel = model .field (fieldName ) as unknown as Box <BaseDef >;
1468
- return getBoxComponent (card , innerModel , field , defaultFormat );
1475
+ return getBoxComponent (card , innerModel , field );
1469
1476
}
1470
1477
1471
1478
// our decorators are implemented by Babel, not TypeScript, so they have a
@@ -1643,8 +1650,8 @@ export class BaseDef {
1643
1650
return _createFromSerialized (this , data , doc , relativeTo , identityContext );
1644
1651
}
1645
1652
1646
- static getComponent(card : BaseDef , format : Format , field ? : Field ) {
1647
- return getComponent (card , format , field );
1653
+ static getComponent(card : BaseDef , field ? : Field ) {
1654
+ return getComponent (card , field );
1648
1655
}
1649
1656
1650
1657
static assignInitialFieldValue(
@@ -1862,7 +1869,6 @@ export type BaseDefComponent = ComponentLike<{
1862
1869
cardOrField: typeof BaseDef ;
1863
1870
fields: any ;
1864
1871
format: Format ;
1865
- displayContainer? : boolean ;
1866
1872
model: any ;
1867
1873
set: Setter ;
1868
1874
fieldName: string | undefined ;
@@ -2712,17 +2718,12 @@ export type SignatureFor<CardT extends BaseDefConstructor> = {
2712
2718
};
2713
2719
};
2714
2720
2715
- export function getComponent(
2716
- model : BaseDef ,
2717
- format : Format ,
2718
- field ? : Field ,
2719
- ): BoxComponent {
2721
+ export function getComponent(model : BaseDef , field ? : Field ): BoxComponent {
2720
2722
let box = Box .create (model );
2721
2723
let boxComponent = getBoxComponent (
2722
2724
model .constructor as BaseDefConstructor ,
2723
2725
box ,
2724
2726
field ,
2725
- format ,
2726
2727
);
2727
2728
return boxComponent ;
2728
2729
}
0 commit comments