forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpost.gts
66 lines (62 loc) · 1.73 KB
/
post.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import {
contains,
linksTo,
field,
Component,
CardDef,
FieldDef,
} from 'https://cardstack.com/base/card-api';
import StringCard from 'https://cardstack.com/base/string';
import TextAreaCard from 'https://cardstack.com/base/text-area';
import { Person } from './person';
let imageURL = new URL('./logo.png', import.meta.url).href;
class BasicCard extends FieldDef {
static displayName = 'Basic Card';
@field title = contains(StringCard);
static embedded = class Embedded extends Component<typeof this> {
<template>
Title: <@fields.title />
</template>
};
}
class VeryBasicCard extends BasicCard {
static displayName = 'Very Basic Card';
@field description = contains(StringCard);
static embedded = class Embedded extends Component<typeof this> {
<template>
Title:
<@fields.title />
Description:
<@fields.description />
</template>
};
}
export class Post extends CardDef {
static displayName = 'Post';
@field author = linksTo(Person);
@field title = contains(StringCard);
@field body = contains(TextAreaCard);
@field titleRef = contains(VeryBasicCard);
static isolated = class Isolated extends Component<typeof this> {
<template>
<div class='container'>
<h1><@fields.title /><img src='{{imageURL}}' /></h1>
<h3>by <@fields.author.firstName /> <@fields.author.lastName /></h3>
<p><@fields.body /></p>
</div>
<style>
.container {
padding: var(--boxel-sp-xl);
}
</style>
</template>
};
static embedded = class Embedded extends Component<typeof this> {
<template>
<em><@fields.title /></em>
by
<@fields.author.firstName />
<@fields.author.lastName />
</template>
};
}