main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
666 bytes
|
Line | |
---|
1 | import { Address } from 'mvpmasters-shared';
|
---|
2 |
|
---|
3 | export function createFullAddress(data: Address): string {
|
---|
4 | const { street, city, state, zip, country } = data;
|
---|
5 |
|
---|
6 | const components = [street];
|
---|
7 |
|
---|
8 | // Combine city, state, and zip with appropriate commas
|
---|
9 | const cityStateZip = [];
|
---|
10 | if (city) cityStateZip.push(city);
|
---|
11 | if (state) cityStateZip.push(state);
|
---|
12 | if (zip) cityStateZip.push(zip);
|
---|
13 |
|
---|
14 | if (cityStateZip.length) {
|
---|
15 | components.push(cityStateZip.join(', ')); // Use comma-space for separation within this group
|
---|
16 | }
|
---|
17 |
|
---|
18 | if (country) components.push(country);
|
---|
19 |
|
---|
20 | return components.join('\n').trim(); // Use just a newline for separation between major components
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.