forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccount.gts
97 lines (89 loc) · 2.8 KB
/
account.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
import {
contains,
field,
CardDef,
linksTo,
Component,
FieldDef,
} from 'https://cardstack.com/base/card-api';
import NumberField from 'https://cardstack.com/base/number';
import StringField from 'https://cardstack.com/base/string';
import { Address } from '../address';
import { Contact } from './contact';
import { MatrixUser } from '../matrix-user';
import { GridContainer } from '@cardstack/boxel-ui/components';
export class Company extends CardDef {
static displayName = 'Company';
@field name = contains(StringField);
@field regstrationNumber = contains(StringField);
@field address = contains(Address);
@field contactPerson = contains(Contact);
@field title = contains(StringField, {
computeVia: function (this: Company) {
return `${this.name} Company`;
},
});
static embedded = class Embedded extends Component<typeof this> {
<template>
<h3><@fields.name /></h3>
</template>
};
}
export class CrmAccountField extends FieldDef {
static displayName = 'Crm Account';
@field owner = linksTo(MatrixUser);
@field accountName = contains(StringField);
@field accountAlias = contains(StringField);
@field description = contains(StringField);
@field contactInformation = contains(Contact);
@field billingAddress = contains(Address);
@field shippingAddress = contains(Address, {
computeVia: function (this: CrmAccount) {
return this.billingAddress;
},
});
@field numberOfEmployees = contains(NumberField);
@field parentAccount = linksTo(() => CrmAccount);
@field company = linksTo(Company);
@field title = contains(StringField, {
computeVia: function (this: CrmAccount) {
return this.accountName;
},
});
static embedded = class Embedded extends Component<typeof this> {
<template>
<GridContainer>
<h3><@fields.accountName /></h3>
</GridContainer>
</template>
};
}
export class CrmAccount extends CardDef {
static displayName = 'Crm Account';
@field owner = linksTo(MatrixUser);
@field accountName = contains(StringField);
@field accountAlias = contains(StringField);
@field description = contains(StringField);
@field contactInformation = contains(Contact);
@field billingAddress = contains(Address);
@field shippingAddress = contains(Address, {
computeVia: function (this: CrmAccount) {
return this.billingAddress;
},
});
@field numberOfEmployees = contains(NumberField);
@field parentAccount = linksTo(() => CrmAccount);
@field company = linksTo(Company);
@field title = contains(StringField, {
computeVia: function (this: CrmAccount) {
return this.accountName;
},
});
static embedded = class Embedded extends Component<typeof this> {
<template>
<GridContainer>
<h3><@fields.accountName /></h3>
</GridContainer>
</template>
};
}