Skip to content

Commit df8909b

Browse files
authored
Merge pull request #8 from tintinthong/opportunity-contact-form-enhancement
Opportunity contact form enhancement
2 parents ed8bf4c + 5d0166a commit df8909b

File tree

6 files changed

+47
-103
lines changed

6 files changed

+47
-103
lines changed

packages/drafts-realm/OpportunityForm/37f6334a-02be-48db-a675-20409f8d5507.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"totalAmount": 123131
1010
},
1111
"description": "This opportunity involves a partnership with Cardstack Malaysia to provide our Cloud Storage solution, which addresses their need for scalable, secure, and cost-effective data storage. This deal has the potential to significantly enhance their data management and accessibility.",
12-
"stage": "Closed Won",
13-
"percentage": 100.7,
12+
"stage": "Negotiation",
13+
"percentage": 75,
1414
"forecastCategory": "Best Case",
1515
"title": null,
1616
"thumbnailURL": null

packages/drafts-realm/address-info.gts

-8
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ class Edit extends Component<typeof AddressInfo> {
206206

207207
@action
208208
updateCity(type: CitySignature) {
209-
console.log(type);
210209
this.selectedCityType = type;
211210
this.args.model.city = type.name;
212211
}
@@ -363,7 +362,6 @@ class Edit extends Component<typeof AddressInfo> {
363362
padding: 2rem 1rem;
364363
display: grid;
365364
gap: var(--boxel-sp-sm);
366-
grid-template-columns: 1fr;
367365
background-color: #eeeeee50;
368366
}
369367
.select {
@@ -439,12 +437,6 @@ class Edit extends Component<typeof AddressInfo> {
439437
.option-item:hover {
440438
background-color: #e5e7eb;
441439
}
442-
443-
@media (min-width: 768px) {
444-
.card-container {
445-
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
446-
}
447-
}
448440
</style>
449441
</template>
450442
}

packages/drafts-realm/contact-form.gts

+10-42
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,7 @@ import { AddressInfo } from './address-info';
44
import { CardDef, field, contains } from 'https://cardstack.com/base/card-api';
55
import { Component } from 'https://cardstack.com/base/card-api';
66
import StringField from 'https://cardstack.com/base/string';
7-
import {
8-
FieldContainer,
9-
CardContainer,
10-
IconButton,
11-
} from '@cardstack/boxel-ui/components';
12-
import { Sparkle } from '@cardstack/boxel-ui/icons';
7+
import { FieldContainer, CardContainer } from '@cardstack/boxel-ui/components';
138

149
class Isolated extends Component<typeof ContactForm> {
1510
get hasTitleField() {
@@ -19,21 +14,12 @@ class Isolated extends Component<typeof ContactForm> {
1914
<template>
2015
<div class='decorative-header'></div>
2116

22-
<CardContainer @displayBoundaries={{false}} class='card-container'>
17+
<CardContainer @displayBoundaries={{false}} class='container'>
2318
{{#if this.hasTitleField}}
2419
<h2><@fields.title /></h2>
2520
{{/if}}
2621

2722
<div class='card-form-display'>
28-
<IconButton
29-
@icon={{Sparkle}}
30-
@width='22px'
31-
@height='22px'
32-
@variant='undefined'
33-
class='icon-profile'
34-
aria-label='Profile'
35-
/>
36-
3723
<div class='contact-form-details'>
3824

3925
<div class='field-input'>
@@ -77,26 +63,23 @@ class Isolated extends Component<typeof ContactForm> {
7763
font-size: 2.2rem;
7864
margin: 0;
7965
}
80-
.card-container {
66+
.container {
8167
width: 100%;
8268
padding: 1rem;
8369
display: grid;
8470
margin: auto;
8571
gap: var(--boxel-sp-lg);
8672
}
87-
8873
.card-form-display {
8974
position: relative;
9075
}
91-
9276
.icon-profile {
9377
position: absolute;
9478
top: 1px;
9579
right: 1px;
9680
width: 50px;
9781
height: 50px;
9882
}
99-
10083
.contact-form-details {
10184
border: 1px solid var(--boxel-300);
10285
border-radius: var(--boxel-border-radius-xl);
@@ -118,11 +101,9 @@ class Isolated extends Component<typeof ContactForm> {
118101
flex-wrap: wrap;
119102
min-width: 280px;
120103
}
121-
122104
.field-input > label {
123105
font-weight: 700;
124106
}
125-
126107
.decorative-header {
127108
background-image: url(https://i.imgur.com/PQuDAEo.jpg);
128109
height: var(--boxel-sp-xl);
@@ -135,12 +116,10 @@ class Isolated extends Component<typeof ContactForm> {
135116
margin: 0px;
136117
text-align: center;
137118
}
138-
139119
@media (min-width: 767px) {
140120
.contact-form-details {
141121
gap: var(--boxel-sp-lg);
142122
}
143-
144123
.field-input {
145124
display: flex;
146125
gap: var(--boxel-sp);
@@ -155,23 +134,15 @@ class Isolated extends Component<typeof ContactForm> {
155134

156135
class View extends Component<typeof ContactForm> {
157136
<template>
158-
<CardContainer @displayBoundaries={{true}} class='card-container'>
159-
<IconButton
160-
@icon={{Sparkle}}
161-
@width='22px'
162-
@height='22px'
163-
@variant='undefined'
164-
class='icon-profile'
165-
aria-label='Profile'
166-
/>
137+
<CardContainer @displayBoundaries={{true}} class='container'>
167138
<div class='content'>
168139
<label>User</label>
169140
<h2><@fields.name /></h2>
170141
</div>
171142
</CardContainer>
172143

173144
<style>
174-
.card-container {
145+
.container {
175146
padding: var(--boxel-sp-lg);
176147
display: grid;
177148
gap: var(--boxel-sp);
@@ -196,7 +167,7 @@ class View extends Component<typeof ContactForm> {
196167

197168
class Edit extends Component<typeof ContactForm> {
198169
<template>
199-
<CardContainer @displayBoundaries={{true}} class='card-container'>
170+
<CardContainer @displayBoundaries={{true}} class='container'>
200171
<FieldContainer
201172
@tag='label'
202173
@label='Title'
@@ -207,7 +178,9 @@ class Edit extends Component<typeof ContactForm> {
207178
<@fields.name />
208179
</FieldContainer>
209180

210-
<@fields.email />
181+
<FieldContainer @tag='label' @label='Email' @vertical={{true}}>
182+
<@fields.email />
183+
</FieldContainer>
211184

212185
<FieldContainer @tag='label' @label='Phone' @vertical={{true}}>
213186
<@fields.phone />
@@ -228,7 +201,7 @@ class Edit extends Component<typeof ContactForm> {
228201
</CardContainer>
229202

230203
<style>
231-
.card-container {
204+
.container {
232205
padding: var(--boxel-sp-lg);
233206
display: grid;
234207
gap: var(--boxel-sp);
@@ -241,26 +214,21 @@ export class ContactForm extends CardDef {
241214
@field title = contains(StringField, {
242215
description: `Contact Form Title`,
243216
});
244-
245217
@field name = contains(UserName, {
246218
description: `User's Full Name`,
247219
});
248-
249220
@field email = contains(UserEmail, {
250221
description: `User's Email`,
251222
});
252-
253223
@field phone = contains(StringField, {
254224
description: `User's phone number`,
255225
});
256-
257226
@field fax = contains(StringField, {
258227
description: `User's Fax Number`,
259228
});
260229
@field department = contains(StringField, {
261230
description: `User's Department`,
262231
});
263-
264232
@field addressInfo = contains(AddressInfo, {
265233
description: `User's AddressInfo`,
266234
});

packages/drafts-realm/opportunity-form.gts

+13-11
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import NumberField from '../base/number';
2222

2323
interface CategorySignature {
2424
name: string;
25+
percentage?: number;
2526
}
2627

2728
const formatNumber = (val: number) => {
@@ -34,7 +35,7 @@ const formatNumber = (val: number) => {
3435

3536
/* Amount */
3637
class EditSecForAmount extends Component<typeof AmountField> {
37-
@tracked currencyOptions = ['Select', 'RM', 'USD'];
38+
@tracked currencyOptions = ['Select', 'RM'];
3839
get selectedCurrency() {
3940
return this.args.model.currency || this.currencyOptions[0] || 'Select';
4041
}
@@ -276,17 +277,18 @@ class EditSecForOpportunityForm extends Component<typeof OpportunityForm> {
276277
}
277278

278279
@tracked stageCategoryOptions = [
279-
{ name: 'None' },
280-
{ name: 'Qualification' },
281-
{ name: 'Needs Analysis' },
282-
{ name: 'Proposal' },
283-
{ name: 'Negotiation' },
284-
{ name: 'Closed Won' },
285-
{ name: 'Closed Lost' },
286-
] as Array<CategorySignature>;
287-
288-
@action updateStageCategory(type: { name: string }) {
280+
{ name: 'None', percentage: 0 },
281+
{ name: 'Qualification', percentage: 10 },
282+
{ name: 'Needs Analysis', percentage: 25 },
283+
{ name: 'Proposal', percentage: 50 },
284+
{ name: 'Negotiation', percentage: 75 },
285+
{ name: 'Closed Won', percentage: 100 },
286+
{ name: 'Closed Lost', percentage: 100 },
287+
] as unknown as Array<CategorySignature>;
288+
289+
@action updateStageCategory(type: { name: string; percentage: number }) {
289290
this.args.model.stage = type.name;
291+
this.args.model.percentage = type.percentage;
290292
}
291293

292294
/* Percentage */

packages/drafts-realm/user-email.gts

+7-19
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
StringField,
1212
} from 'https://cardstack.com/base/card-api';
1313
import { Component } from 'https://cardstack.com/base/card-api';
14-
import { BoxelInput, FieldContainer } from '@cardstack/boxel-ui/components';
14+
import { BoxelInput } from '@cardstack/boxel-ui/components';
1515
import { TextInputValidator } from '../base/text-input-validator';
1616

1717
function isValidEmail(email: string): boolean {
@@ -74,24 +74,12 @@ class View extends Component<typeof UserEmail> {
7474

7575
class Edit extends Component<typeof UserEmail> {
7676
<template>
77-
<FieldContainer @tag='label' @label='Email' @vertical={{true}}>
78-
<BoxelInput
79-
@value={{this.textInputValidator.asString}}
80-
@onInput={{this.textInputValidator.onInput}}
81-
@errorMessage={{this.textInputValidator.errorMessage}}
82-
@state={{if this.textInputValidator.isInvalid 'invalid' 'none'}}
83-
/>
84-
</FieldContainer>
85-
86-
<style>
87-
.card-container {
88-
padding: 2rem 1rem;
89-
display: grid;
90-
gap: var(--boxel-sp-sm);
91-
grid-template-columns: 1fr;
92-
background-color: #eeeeee50;
93-
}
94-
</style>
77+
<BoxelInput
78+
@value={{this.textInputValidator.asString}}
79+
@onInput={{this.textInputValidator.onInput}}
80+
@errorMessage={{this.textInputValidator.errorMessage}}
81+
@state={{if this.textInputValidator.isInvalid 'invalid' 'none'}}
82+
/>
9583
</template>
9684

9785
textInputValidator: TextInputValidator<string> = new TextInputValidator(

packages/drafts-realm/user-name.gts

+15-21
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,16 @@ class View extends Component<typeof UserName> {
3434
}
3535

3636
class Edit extends Component<typeof UserName> {
37-
@tracked selectedSalutationType = {
38-
name: this.args.model.salutation || 'Select',
39-
};
40-
41-
@tracked placeholder = this.args.model.salutation || 'Select';
37+
get selectedSalutationCategory() {
38+
return {
39+
name:
40+
this.args.model.salutation ||
41+
this.salutationCategory[0].name ||
42+
'Select',
43+
};
44+
}
4245

43-
@tracked salutationType = [
46+
@tracked salutationCategory = [
4447
{ name: 'None' },
4548
{ name: 'Mr.' },
4649
{ name: 'Ms.' },
@@ -50,19 +53,17 @@ class Edit extends Component<typeof UserName> {
5053
{ name: 'Mx.' },
5154
] as Array<Salutation>;
5255

53-
@action updateSalutationType(type: { name: string }) {
54-
this.selectedSalutationType = type;
56+
@action updateSalutationCategory(type: { name: string }) {
5557
this.args.model.salutation = type.name;
5658
}
5759

5860
<template>
59-
<CardContainer @displayBoundaries={{true}} class='card-container'>
61+
<CardContainer @displayBoundaries={{true}} class='container'>
6062
<FieldContainer @tag='label' @label='Salutation' @vertical={{true}}>
6163
<BoxelSelect
62-
@placeholder={{this.placeholder}}
63-
@selected={{this.selectedSalutationType}}
64-
@onChange={{this.updateSalutationType}}
65-
@options={{this.salutationType}}
64+
@selected={{this.selectedSalutationCategory}}
65+
@onChange={{this.updateSalutationCategory}}
66+
@options={{this.salutationCategory}}
6667
class='select'
6768
as |item|
6869
>
@@ -82,23 +83,16 @@ class Edit extends Component<typeof UserName> {
8283
</CardContainer>
8384

8485
<style>
85-
.card-container {
86+
.container {
8687
padding: 2rem 1rem;
8788
display: grid;
8889
gap: var(--boxel-sp-sm);
89-
grid-template-columns: 1fr;
9090
background-color: #eeeeee50;
9191
}
9292
.select {
9393
padding: var(--boxel-sp-xs);
9494
background-color: white;
9595
}
96-
97-
@media (min-width: 768px) {
98-
.card-container {
99-
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
100-
}
101-
}
10296
</style>
10397
</template>
10498
}

0 commit comments

Comments
 (0)