Skip to content

Commit 254425d

Browse files
committed
Make defaultFormat the last argument of getBoxComponent
1 parent 930eede commit 254425d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

packages/base/card-api.gts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ function fieldComponent(
14651465
(model.value[fieldName]?.constructor as typeof BaseDef) ?? field.card;
14661466
}
14671467
let innerModel = model.field(fieldName) as unknown as Box<BaseDef>;
1468-
return getBoxComponent(card, defaultFormat, innerModel, field);
1468+
return getBoxComponent(card, innerModel, field, defaultFormat);
14691469
}
14701470

14711471
// our decorators are implemented by Babel, not TypeScript, so they have a
@@ -2720,9 +2720,9 @@ export function getComponent(
27202720
let box = Box.create(model);
27212721
let boxComponent = getBoxComponent(
27222722
model.constructor as BaseDefConstructor,
2723-
format,
27242723
box,
27252724
field,
2725+
format,
27262726
);
27272727
return boxComponent;
27282728
}

packages/base/field-component.gts

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ const componentCache = initSharedState(
6262

6363
export function getBoxComponent(
6464
card: typeof BaseDef,
65-
defaultFormat: Format,
6665
model: Box<BaseDef>,
6766
field: Field | undefined,
67+
defaultFormat: Format,
6868
): BoxComponent {
6969
let stable = componentCache.get(model);
7070
if (stable) {
@@ -320,7 +320,7 @@ export function getPluralViewComponent(
320320
): BoxComponent {
321321
let getComponents = () =>
322322
model.children.map((child) =>
323-
getBoxComponent(cardTypeFor(field, child), format, child, field),
323+
getBoxComponent(cardTypeFor(field, child), child, field, format),
324324
); // Wrap the the components in a function so that the template is reactive to changes in the model (this is essentially a helper)
325325
let pluralViewComponent: TemplateOnlyComponent<BoxComponentSignature> =
326326
<template>

packages/base/links-to-editor.gts

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ class LinksToEditor extends GlimmerComponent<Signature> {
111111
.constructor as typeof BaseDef;
112112
return getBoxComponent(
113113
card,
114-
'embedded',
115114
this.args.model as Box<BaseDef>,
116115
this.args.field,
116+
'embedded',
117117
);
118118
}
119119

packages/base/links-to-many-component.gts

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ class LinksToManyEditor extends GlimmerComponent<Signature> {
5353
{{#let
5454
(getBoxComponent
5555
(this.args.cardTypeFor @field boxedElement)
56-
'embedded'
5756
boxedElement
5857
@field
58+
'embedded'
5959
)
6060
as |Item|
6161
}}
@@ -93,9 +93,9 @@ class LinksToManyEditor extends GlimmerComponent<Signature> {
9393
{{#let
9494
(getBoxComponent
9595
(this.args.cardTypeFor @field boxedElement)
96-
'atom'
9796
boxedElement
9897
@field
98+
'atom'
9999
)
100100
as |Item|
101101
}}

0 commit comments

Comments
 (0)