|
1 | 1 | 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'; |
3 | 8 | import StringField from 'https://cardstack.com/base/string';
|
4 | 9 | import NumberField from 'https://cardstack.com/base/number';
|
5 | 10 | import { UserName } from './user-name';
|
@@ -447,6 +452,55 @@ class EditSecFoLeadForm extends Component<typeof LeadForm> {
|
447 | 452 | </template>
|
448 | 453 | }
|
449 | 454 |
|
| 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 | + |
450 | 504 | export class LeadForm extends CardDef {
|
451 | 505 | static displayName = 'Lead Form';
|
452 | 506 |
|
|
0 commit comments