@shopify/worldwide
v0.7.2
Published
Utilities for parsing and formatting address fields
Downloads
11,339
Keywords
Readme
Worldwide - Typescript
Utilities for parsing and formatting address fields
Usage
Generating a concatenated address string
To generate a concatenated string for a specific address field, pass an address object with the country code and extended fields as defined in the region yaml.
For example, the Brazil yaml defines the format as follows:
# db/data/region/BR.yml
combined_address_format:
address1:
- key: streetName
- key: streetNumber
decorator: ", "
address2:
- key: line2
- key: neighborhood
decorator: ", "
To generate a correctly formatted address1
string for Brazil, include
streetName
and streetNumber
in the address object.
concatenateAddress1({
countryCode: 'BR',
streetName: 'Av. Paulista',
streetNumber: '1578',
}); // returns 'Av. Paulista, \u20601578'
You can generate Address1 or Address2 fields for any supported country, even if
there is not a combined_address_format
for that region. In those cases we
return an unmodified address1
.
import {concatenateAddress1, concatenateAddress2} from '@shopify/worldwide';
// Generate Address1
concatenateAddress1({
countryCode: 'BR',
streetName: 'Av. Paulista',
streetNumber: '1578',
}); // returns 'Av. Paulista, \u20601578'
concatenateAddress1({
countryCode: 'US',
address1: '123 Main',
}); // returns '123 Main'
// Generate Address2
concatenateAddress2({
countryCode: 'BR',
line2: 'dpto 4',
neighborhood: 'Centro',
}); // returns 'dpto 4, \u2060Centro'
concatenateAddress2({
countryCode: 'US',
address2: 'Apt 2',
}); // returns 'Apt 2'
Parsing a concatentated address string
To parse a concatenated address string use the split functions which return a partial Address object including any address fields we are able to match given the region specified.
Using our Brazil example, we can pass the concatenated string into our split function for address1:
splitAddress1('BR', 'Av. Paulista, \u20601578'); // returns { streetName: 'Av. Paulista', streetNumber: '1578' }
Trying to parse an address string for a region that doesn't have a defined
combined_address_format
will return null
.
import {splitAddress1, splitAddress2} from '@shopify/worldwide';
// Parse Address1
splitAddress1('BR', 'Av. Paulista, \u20601578'); // returns { streetName: 'Av. Paulista', streetNumber: '1578' }
splitAddress1('US', '123 Main'); // returns null
// Parse Address2
splitAddress2('BR', 'dpto 4, \u2060Centro'); // returns { line2: 'dpto 4', neighborhood: 'Centro', }
splitAddress2('US', 'Apt 2'); // returns null
Contributing & Development
Setup
You'll need node and pnpm installed. We use pnpm for dependency management. First make sure both are installed.
node -v # ex: v20.13.1, Should be version 20 (or highter LTS)
pnpm -v # ex: 9.1.3, Should be version 9
Change directories to lang/typescript
, you'll need to run all pnpm
commands from that directory.
cd lang/typescript
To install dependencies run:
pnpm install
Build
To run a build run:
pnpm build
This will use Rollup to generate dist/
, which is our bundled JS package.
Verify the npm package is bundled correctly with publint or are the types wrong. This should only need to be done when changing rollup.config.ts
to modify the bundle output:
pnpm package:publint
pnpm package:attw
Other commands
# Run code linter (w/ eslint)
pnpm lint
# Run code formatting (w/ prettier)
pnpm format
# Run typechecker (w/ typescript/tsc)
pnpm typecheck
# Run test suite (w/ vitest)
pnpm test
# Run test watcher (w/ vitest)
pnpm test:watch
Adding a changelog
Make sure to add a changelog entry with a clear message and semver-compatible version type (patch, minor, major). To do this, run the following command:
pnpm changeset
This will create a new changeset file using the changesets tool. The auto-generated file has a random filename to avoid conflicts and can be renamed to be more relevant to match the change.
See changeset's docs for more info.
Releasing a new version
Changesets will handle combining unreleased changesets on the main
branch into a new version following semver in a GH Action workflow into a corresponding PR. Merging that PR into main
will release the new version to NPM.
See #244 for an example.