forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvendor.gts
223 lines (215 loc) · 6.26 KB
/
vendor.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import {
contains,
field,
CardDef,
FieldDef,
relativeTo,
Component,
containsMany,
} 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 { Address } from './address';
import { FieldContainer } from '@cardstack/boxel-ui/components';
import { startCase } from 'lodash';
import { eq } from '@cardstack/boxel-ui/helpers';
import { PaymentMethod } from './payment-method';
import GlimmerComponent from '@glimmer/component';
class VendorDetails extends FieldDef {
static displayName = 'Vendor';
@field name = contains(StringCard); // required
@field description = contains(TextAreaCard);
@field logoURL = contains(StringCard); // url format
@field email = contains(StringCard); // email format
@field cardXYZ = contains(StringCard);
@field logoHref = contains(StringCard, {
computeVia: function (this: VendorDetails) {
if (!this.logoURL) {
return null;
}
return new URL(this.logoURL, this[relativeTo]).href;
},
});
@field title = contains(StringCard, {
computeVia: function (this: VendorDetails) {
return this.name;
},
});
static embedded = class Embedded extends Component<typeof this> {
<template>
<VendorContainer>
{{#each-in @fields as |key value|}}
{{#unless (eq key 'id')}}
<FieldContainer
{{! @glint-ignore }}
@label={{startCase key}}
@vertical={{true}}
>
{{value}}
</FieldContainer>
{{/unless}}
{{/each-in}}
</VendorContainer>
</template>
};
}
class Contact extends FieldDef {
static displayName = 'Contact';
@field fullName = contains(StringCard);
@field preferredName = contains(StringCard);
@field jobTitle = contains(StringCard);
@field email = contains(StringCard); // email format
@field phone = contains(StringCard); // phone number format
@field cardXYZ = contains(StringCard);
@field notes = contains(TextAreaCard);
@field imageURL = contains(StringCard);
static embedded = class Embedded extends Component<typeof this> {
<template>
<VendorContainer>
{{#each-in @fields as |key value|}}
{{#unless (eq key 'id')}}
<FieldContainer
{{! @glint-ignore }}
@label={{startCase key}}
@vertical={{true}}
>
{{value}}
</FieldContainer>
{{/unless}}
{{/each-in}}
</VendorContainer>
</template>
};
}
class ContactMethod extends FieldDef {
static displayName = 'ContactMethod';
@field platform = contains(StringCard); // Dropdown (Telegram, Discord, Facebook, LinkedIn, Twitter)
@field username = contains(StringCard);
static embedded = class Embedded extends Component<typeof this> {
<template>
<@fields.platform />: <@fields.username />
</template>
};
}
export class Vendor extends CardDef {
static displayName = 'Vendor';
@field vendor = contains(VendorDetails); // required
@field contact = contains(Contact); // required
@field contactMethod = containsMany(ContactMethod);
@field mailingAddress = contains(Address); // required
@field preferredPaymentMethod = contains(PaymentMethod); // required
@field alternatePaymentMethod = containsMany(PaymentMethod);
static embedded = class Embedded extends Component<typeof this> {
<template>
<div class='vendor-card--embedded'>
<div>
<@fields.vendor.name />
<@fields.mailingAddress />
<@fields.vendor.email />
</div>
<img src={{@model.vendor.logoHref}} />
</div>
<style>
.vendor-card--embedded {
display: grid;
grid-template-columns: 1fr auto;
}
</style>
</template>
};
static isolated = class Isolated extends Component<typeof this> {
<template>
<VendorContainer class='container'>
<section>
<h2>Title</h2>
<@fields.title />
</section>
<section>
<h2>Vendor</h2>
<@fields.vendor />
</section>
<section>
<h2>Contact</h2>
<@fields.contact />
</section>
{{#if @model.contactMethod.length}}
<section>
<h2>Contact Method</h2>
<@fields.contactMethod />
</section>
{{/if}}
<section>
<h2>Mailing Address</h2>
<@fields.mailingAddress />
</section>
<section>
<h2>Preferred Payment Method</h2>
<@fields.preferredPaymentMethod />
{{#if @model.alternatePaymentMethod.length}}
<h2>Alternate Payment Method</h2>
<@fields.alternatePaymentMethod />
{{/if}}
</section>
</VendorContainer>
<style>
.container {
padding: var(--boxel-sp-xl);
}
</style>
</template>
};
static edit = class Edit extends Component<typeof this> {
<template>
<VendorContainer class='container'>
<section>
<h2>Vendor</h2>
<@fields.vendor />
</section>
<section>
<h2>Contact</h2>
<@fields.contact />
</section>
{{#if @model.contactMethod.length}}
<section>
<h2>Contact Method</h2>
<@fields.contactMethod />
</section>
{{/if}}
<section>
<h2>Mailing Address</h2>
<@fields.mailingAddress />
</section>
<section>
<h2>Preferred Payment Method</h2>
<@fields.preferredPaymentMethod />
<h2>Alternate Payment Method</h2>
<@fields.alternatePaymentMethod />
</section>
</VendorContainer>
<style>
.container {
padding: var(--boxel-sp-xl) var(--boxel-sp-xxl) var(--boxel-sp-xl)
var(--boxel-sp-xl);
}
</style>
</template>
};
}
interface Signature {
Element: HTMLElement;
Blocks: {
default: [];
};
}
class VendorContainer extends GlimmerComponent<Signature> {
<template>
<div class='vendor' ...attributes>
{{yield}}
</div>
<style>
.vendor :deep(.boxel-field + .boxel-field) {
margin-top: var(--boxel-sp);
}
</style>
</template>
}