Skip to content

Commit 10c9660

Browse files
committed
Merge branch 'main' into glimmer-scoped-css-0.7.0
2 parents 7e07937 + 006d4f6 commit 10c9660

File tree

4 files changed

+61
-39
lines changed

4 files changed

+61
-39
lines changed
+13-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import GlimmerComponent from '@glimmer/component';
2-
import type { CardDef } from '../card-api';
2+
import { type CardDef, isCompoundField } from '../card-api';
3+
import { cn, not } from '@cardstack/boxel-ui/helpers';
34

45
export default class DefaultAtomViewTemplate extends GlimmerComponent<{
56
Args: {
@@ -8,26 +9,20 @@ export default class DefaultAtomViewTemplate extends GlimmerComponent<{
89
};
910
}> {
1011
get text() {
11-
let title =
12-
typeof this.args.model.title === 'string'
13-
? this.args.model.title.trim()
14-
: null;
15-
16-
return title
17-
? title
18-
: `Untitled ${this.args.model.constructor.displayName}`;
12+
if (!this.args.model) {
13+
return;
14+
}
15+
if (typeof this.args.model.title === 'string') {
16+
return this.args.model.title.trim();
17+
}
18+
if (isCompoundField(this.args.model)) {
19+
return;
20+
}
21+
return `Untitled ${this.args.model.constructor.displayName}`;
1922
}
2023
<template>
21-
<span class='atom-default-template'>
24+
<span class={{cn 'atom-default-template' empty-field=(not @model)}}>
2225
{{this.text}}
2326
</span>
24-
<style scoped>
25-
@layer {
26-
.atom-default-template {
27-
font: 600 var(--boxel-font-sm);
28-
letter-spacing: var(--boxel-lsp-xs);
29-
}
30-
}
31-
</style>
3227
</template>
3328
}

packages/experiments-realm/AtomExamples/d7aa387b-6514-47c0-ace2-7de011453e51.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
},
194194
"contacts.0": {
195195
"links": {
196-
"self": "../Customer/0e5aec99-798b-4417-9426-a338432e0ee5"
196+
"self": "../Customer/1274acf3-5b66-4373-89a2-fe8106c3d586"
197197
}
198198
},
199199
"contacts.1": {
@@ -203,7 +203,7 @@
203203
},
204204
"contacts.2": {
205205
"links": {
206-
"self": "../Customer/67e87a6c-00d0-4c48-9318-f0c96daa4cae"
206+
"self": "../Customer/0c71bda7-f4d8-451a-97cb-567a8fa31763"
207207
}
208208
}
209209
},

packages/experiments-realm/atom-examples.gts

+4-16
Original file line numberDiff line numberDiff line change
@@ -74,32 +74,20 @@ class Isolated extends Component<typeof AtomExamples> {
7474
<h4>Using default atom template for Pet card:</h4>
7575
<div>
7676
Pet:
77-
{{#if @model.pet}}
78-
<@fields.pet @format='atom' />
79-
{{else}}
80-
(Bug: CS-7734)
81-
{{/if}}
77+
<@fields.pet @format='atom' />
8278
</div>
8379
<div>
8480
Pets:
85-
{{#if @model.pets}}
86-
<@fields.pets @format='atom' />
87-
{{else}}
88-
(Bug: CS-7734)
89-
{{/if}}
81+
<@fields.pets @format='atom' />
9082
</div>
9183
<h4>Default atom template without container:</h4>
9284
<div>
9385
Pet:
94-
{{#if @model.pet}}
95-
<@fields.pet @format='atom' @displayContainer={{false}} />
96-
{{/if}}
86+
<@fields.pet @format='atom' @displayContainer={{false}} />
9787
</div>
9888
<div>
9989
Pets:
100-
{{#if @model.pets}}
101-
<@fields.pets @format='atom' @displayContainer={{false}} />
102-
{{/if}}
90+
<@fields.pets @format='atom' @displayContainer={{false}} />
10391
</div>
10492
</section>
10593
<section>

packages/host/tests/integration/components/card-basics-test.gts

+42-3
Original file line numberDiff line numberDiff line change
@@ -1421,9 +1421,7 @@ module('Integration | card-basics', function (hooks) {
14211421
person.firstName = '';
14221422
person.lastName = '';
14231423
await renderCard(loader, person, 'atom');
1424-
assert
1425-
.dom('[data-test-compound-field-component]')
1426-
.hasText('Untitled Person');
1424+
assert.dom('[data-test-compound-field-component]').hasNoText();
14271425
});
14281426

14291427
test('render user-provided atom view template', async function (assert) {
@@ -1501,6 +1499,47 @@ module('Integration | card-basics', function (hooks) {
15011499
);
15021500
});
15031501

1502+
test('can render empty linksTo and linksToMany fields in default atom format', async function (assert) {
1503+
class Pet extends CardDef {
1504+
@field firstName = contains(StringField);
1505+
@field title = contains(StringField, {
1506+
computeVia: function (this: Pet) {
1507+
return this.firstName;
1508+
},
1509+
});
1510+
}
1511+
class Person extends CardDef {
1512+
@field firstName = contains(StringField);
1513+
@field pet = linksTo(Pet);
1514+
@field pets = linksToMany(Pet);
1515+
static isolated = class Isolated extends Component<typeof this> {
1516+
<template>
1517+
<h3 data-test-person><@fields.firstName /></h3>
1518+
<div data-test-pet>
1519+
Pet:
1520+
<@fields.pet @format='atom' />
1521+
</div>
1522+
<div data-test-pets>
1523+
Pets:
1524+
<@fields.pets @format='atom' />
1525+
</div>
1526+
</template>
1527+
};
1528+
}
1529+
let hassan = new Person({ firstName: 'Hassan' });
1530+
await renderCard(loader, hassan, 'isolated');
1531+
1532+
assert.dom('[data-test-person]').hasText('Hassan');
1533+
assert.dom('[data-test-pet]').hasText('Pet:');
1534+
assert.dom('[data-test-pet] span').hasClass('empty-field');
1535+
assert.dom('[data-test-pets]').hasText('Pets:');
1536+
assert
1537+
.dom(
1538+
'[data-test-pets] > [data-test-plural-view="linksToMany"][data-test-plural-view-format="atom"]',
1539+
)
1540+
.hasClass('empty');
1541+
});
1542+
15041543
test('render a containsMany composite field', async function (this: RenderingTestContext, assert) {
15051544
class Person extends FieldDef {
15061545
@field firstName = contains(StringField);

0 commit comments

Comments
 (0)