Skip to content

Commit 27e4cf5

Browse files
author
lucas
committed
create: steps staging & activity status panel
1 parent ee5d953 commit 27e4cf5

6 files changed

+1560
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"data": {
3+
"type": "card",
4+
"attributes": {
5+
"name": {
6+
"salutation": "Mr.",
7+
"firstName": "Chow",
8+
"lastName": "Chow "
9+
},
10+
"company": "Chow Holding",
11+
"title": "Lead Form - Chow Chow",
12+
"website": "www.chow.com",
13+
"description": "Description Here",
14+
"leadStatus": "Qualified",
15+
"phone": "0109090000",
16+
"email": "chow@xxxx.com",
17+
"addressInfo": {
18+
"address": "14, Jalan Teknologi, Taman Sains",
19+
"zip": "47810",
20+
"city": "Petaling Jaya",
21+
"state": "Selangor",
22+
"country": "Malaysia",
23+
"countryCode": "MY",
24+
"stateCode": "10"
25+
},
26+
"noOfEmployees": 49.8,
27+
"annualRevenue": {
28+
"currency": "RM",
29+
"totalAmount": 12000000
30+
},
31+
"leadSource": "Employee Referral",
32+
"industry": "Banking",
33+
"thumbnailURL": null
34+
},
35+
"meta": {
36+
"adoptsFrom": {
37+
"module": "../lead-form",
38+
"name": "LeadForm"
39+
}
40+
}
41+
}
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"data": {
3+
"type": "card",
4+
"attributes": {
5+
"leadForm": {
6+
"name": {
7+
"salutation": "Mr.",
8+
"firstName": "Law",
9+
"lastName": "Bom Bom"
10+
},
11+
"company": "lawbombom",
12+
"title": "Lead Form - lawbombom",
13+
"website": "lawbom.com",
14+
"description": "this is lead-form",
15+
"leadStatus": "Unqualified",
16+
"phone": "010381997",
17+
"email": "lawbombom@gmail.com",
18+
"addressInfo": {
19+
"address": "14, Jalan Teknologi, Taman Sains",
20+
"zip": "47810",
21+
"city": "Petaling Jaya",
22+
"state": "Selangor",
23+
"country": "Malaysia",
24+
"countryCode": "MY",
25+
"stateCode": "10"
26+
},
27+
"noOfEmployees": 10,
28+
"annualRevenue": {
29+
"currency": "RM",
30+
"totalAmount": 125000
31+
},
32+
"leadSource": "Advertisement",
33+
"industry": "Agriculture"
34+
},
35+
"contactForm": {
36+
"name": {
37+
"salutation": "Mr.",
38+
"firstName": "Law",
39+
"lastName": "Bom Bom"
40+
},
41+
"company": null,
42+
"title": null,
43+
"website": null,
44+
"description": null,
45+
"leadStatus": null,
46+
"phone": null,
47+
"email": null,
48+
"addressInfo": {
49+
"address": null,
50+
"zip": null,
51+
"city": null,
52+
"state": null,
53+
"country": null,
54+
"countryCode": null,
55+
"stateCode": null
56+
},
57+
"noOfEmployees": null,
58+
"annualRevenue": {
59+
"currency": null,
60+
"totalAmount": null
61+
},
62+
"leadSource": null,
63+
"industry": null
64+
},
65+
"scheduledTask": [],
66+
"title": null,
67+
"description": null,
68+
"thumbnailURL": null
69+
},
70+
"meta": {
71+
"adoptsFrom": {
72+
"module": "../sale-hub",
73+
"name": "SaleHub"
74+
}
75+
}
76+
}
77+
}

packages/drafts-realm/contact-form.gts

+38-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
import { UserName } from './user-name';
22
import { UserEmail } from './user-email';
33
import { AddressInfo } from './address-info';
4-
import { CardDef, field, contains } from 'https://cardstack.com/base/card-api';
4+
import {
5+
CardDef,
6+
field,
7+
contains,
8+
FieldDef,
9+
} from 'https://cardstack.com/base/card-api';
510
import { Component } from 'https://cardstack.com/base/card-api';
611
import StringField from 'https://cardstack.com/base/string';
712
import { FieldContainer, CardContainer } from '@cardstack/boxel-ui/components';
@@ -134,19 +139,17 @@ class Isolated extends Component<typeof ContactForm> {
134139

135140
class View extends Component<typeof ContactForm> {
136141
<template>
137-
<CardContainer @displayBoundaries={{true}} class='container'>
142+
<div class='container'>
138143
<div class='content'>
139144
<label>User</label>
140145
<h2><@fields.name /></h2>
141146
</div>
142-
</CardContainer>
147+
</div>
143148

144149
<style>
145150
.container {
146-
padding: var(--boxel-sp-lg);
147151
display: grid;
148152
gap: var(--boxel-sp);
149-
background-color: #eeeeee50;
150153
}
151154
.content {
152155
color: var(--boxel-700);
@@ -210,6 +213,36 @@ class Edit extends Component<typeof ContactForm> {
210213
</template>
211214
}
212215

216+
export class ContactFormField extends FieldDef {
217+
@field title = contains(StringField, {
218+
description: `Contact Form Title`,
219+
});
220+
@field name = contains(UserName, {
221+
description: `User's Full Name`,
222+
});
223+
@field email = contains(UserEmail, {
224+
description: `User's Email`,
225+
});
226+
@field phone = contains(StringField, {
227+
description: `User's phone number`,
228+
});
229+
@field fax = contains(StringField, {
230+
description: `User's Fax Number`,
231+
});
232+
@field department = contains(StringField, {
233+
description: `User's Department`,
234+
});
235+
@field addressInfo = contains(AddressInfo, {
236+
description: `User's AddressInfo`,
237+
});
238+
239+
static displayName = 'Contact Form';
240+
static isolated = Isolated;
241+
static embedded = View;
242+
static atom = View;
243+
static edit = Edit;
244+
}
245+
213246
export class ContactForm extends CardDef {
214247
@field title = contains(StringField, {
215248
description: `Contact Form Title`,

packages/drafts-realm/lead-form.gts

+55-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import MarkdownField from 'https://cardstack.com/base/markdown';
2-
import { CardDef, contains, field } from 'https://cardstack.com/base/card-api';
2+
import {
3+
CardDef,
4+
FieldDef,
5+
contains,
6+
field,
7+
} from 'https://cardstack.com/base/card-api';
38
import StringField from 'https://cardstack.com/base/string';
49
import NumberField from 'https://cardstack.com/base/number';
510
import { UserName } from './user-name';
@@ -447,6 +452,55 @@ class EditSecFoLeadForm extends Component<typeof LeadForm> {
447452
</template>
448453
}
449454

455+
export class LeadFormField extends FieldDef {
456+
static displayName = 'Lead Form';
457+
458+
@field name = contains(UserName, {
459+
description: `User's Full Name`,
460+
});
461+
@field company = contains(StringField, {
462+
description: `User's Company Name`,
463+
});
464+
@field title = contains(StringField, {
465+
description: `User's Title`,
466+
});
467+
@field website = contains(StringField, {
468+
description: `User's Website`,
469+
});
470+
@field description = contains(MarkdownField, {
471+
description: `User's Description`,
472+
});
473+
@field leadStatus = contains(StringField, {
474+
description: `Lead Status`,
475+
});
476+
@field phone = contains(StringField, {
477+
description: `User's phone number`,
478+
});
479+
@field email = contains(UserEmail, {
480+
description: `User's Email`,
481+
});
482+
@field addressInfo = contains(AddressInfo, {
483+
description: `User's AddressInfo`,
484+
});
485+
@field noOfEmployees = contains(NumberField, {
486+
description: `No Of Employees`,
487+
});
488+
@field annualRevenue = contains(CurrencyAmount, {
489+
description: `Annual Revenue`,
490+
});
491+
@field leadSource = contains(StringField, {
492+
description: `Lead Source`,
493+
});
494+
@field industry = contains(StringField, {
495+
description: `Industry`,
496+
});
497+
498+
static isolated = IsolatedSecForLeadForm;
499+
static atom = ViewSecForLeadForm;
500+
static embedded = ViewSecForLeadForm;
501+
static edit = EditSecFoLeadForm;
502+
}
503+
450504
export class LeadForm extends CardDef {
451505
static displayName = 'Lead Form';
452506

packages/drafts-realm/opportunity-form.gts

+35-2
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,12 @@ class IsolatedSecForOpportunityForm extends Component<typeof OpportunityForm> {
191191
<div class='field-input'>
192192
<label>Percentage: </label>
193193
{{this.getFormattedPercentage}}
194-
195194
</div>
196195
<div class='field-input'>
197196
<label>Forecast Category: </label>
198197
{{this.getForestCategory}}
199198
</div>
199+
200200
</div>
201201
</div>
202202

@@ -329,7 +329,7 @@ class EditSecForOpportunityForm extends Component<typeof OpportunityForm> {
329329
}
330330

331331
<template>
332-
<CardContainer @displayBoundaries={{false}} class='container'>
332+
<CardContainer @displayBoundaries={{true}} class='container'>
333333
<FieldContainer @tag='label' @label='Opportunity Name' @vertical={{true}}>
334334
<@fields.opportunityName />
335335
</FieldContainer>
@@ -424,6 +424,39 @@ class ViewSecForOpportunityForm extends Component<typeof OpportunityForm> {
424424
</template>
425425
}
426426

427+
export class OpportunityFormField extends FieldDef {
428+
static displayName = 'Opportunity Form';
429+
@field opportunityName = contains(StringField, {
430+
description: `Opportunity Name`,
431+
});
432+
@field accountName = linksTo(CrmAccount, {
433+
description: `Account Name`,
434+
});
435+
@field closeDate = contains(DateCard, {
436+
description: `Close Date`,
437+
});
438+
@field amount = contains(AmountField, {
439+
description: `Amount`,
440+
});
441+
@field description = contains(MarkdownField, {
442+
description: `Description`,
443+
});
444+
@field stage = contains(StringField, {
445+
description: `Stage`,
446+
});
447+
@field percentage = contains(NumberField, {
448+
description: `Percentage`,
449+
});
450+
@field forecastCategory = contains(StringField, {
451+
description: `Forecast Category`,
452+
});
453+
454+
static isolated = IsolatedSecForOpportunityForm;
455+
static edit = EditSecForOpportunityForm;
456+
static embedded = ViewSecForOpportunityForm;
457+
static atom = ViewSecForOpportunityForm;
458+
}
459+
427460
export class OpportunityForm extends CardDef {
428461
static displayName = 'Opportunity Form';
429462
@field opportunityName = contains(StringField, {

0 commit comments

Comments
 (0)