forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfriend.gts
41 lines (39 loc) · 1.06 KB
/
friend.gts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import {
contains,
linksTo,
field,
CardDef,
Component,
} from 'https://cardstack.com/base/card-api';
import NumberCard from 'https://cardstack.com/base/number';
import StringCard from 'https://cardstack.com/base/string';
import { GridContainer } from '@cardstack/boxel-ui/components';
export class Friend extends CardDef {
static displayName = 'Friend';
@field firstName = contains(StringCard);
@field friend = linksTo(() => Friend);
@field test = contains(NumberCard, {
computeVia: function () {
// make sure we don't blow up when '/' appears
return 10 / 2;
},
});
@field title = contains(StringCard, {
computeVia: function (this: Friend) {
return this.firstName;
},
});
@field description = contains(StringCard, {
computeVia: function (this: Friend) {
return `Friend`;
},
});
@field thumbnailURL = contains(StringCard);
static embedded = class Embedded extends Component<typeof this> {
<template>
<GridContainer>
<@fields.firstName />
</GridContainer>
</template>
};
}