Skip to content

Commit

Permalink
feat(core): add customer address mutation (#777)
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-alexsaiannyi committed Apr 18, 2024
1 parent d3cb5bd commit fe5c221
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/many-parrots-lay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bigcommerce/catalyst-core": patch
---

Add customer address mutation
53 changes: 53 additions & 0 deletions apps/core/client/mutations/add-customer-address.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { getSessionCustomerId } from '~/auth';

import { client } from '..';
import { graphql, VariablesOf } from '../graphql';

const ADD_CUSTOMER_ADDRESS_MUTATION = graphql(`
mutation addCustomerAddress($input: AddCustomerAddressInput!, $reCaptchaV2: ReCaptchaV2Input) {
customer {
addCustomerAddress(input: $input, reCaptchaV2: $reCaptchaV2) {
errors {
... on CustomerAddressCreationError {
message
}
... on CustomerNotLoggedInError {
message
}
... on ValidationError {
message
path
}
}
address {
entityId
firstName
lastName
}
}
}
}
`);

type AddCustomerAddressInput = VariablesOf<typeof ADD_CUSTOMER_ADDRESS_MUTATION>['input'];

interface AddCustomerAddress {
input: AddCustomerAddressInput;
reCaptchaToken?: string;
}

export const addCustomerAddress = async ({ input, reCaptchaToken }: AddCustomerAddress) => {
const customerId = await getSessionCustomerId();

const response = await client.fetch({
document: ADD_CUSTOMER_ADDRESS_MUTATION,
customerId,
fetchOptions: { cache: 'no-store' },
variables: {
input,
...(reCaptchaToken && { reCaptchaV2: { token: reCaptchaToken } }),
},
});

return response.data.customer.addCustomerAddress;
};

0 comments on commit fe5c221

Please sign in to comment.