feature/IO-3182-Phone-Number-Consent - Checkpoint
This commit is contained in:
44
client/src/utils/phoneOptOutService.js
Normal file
44
client/src/utils/phoneOptOutService.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import { phone } from "phone";
|
||||
import { GET_PHONE_NUMBER_OPT_OUT } from "../graphql/phone-number-opt-out.queries";
|
||||
|
||||
/**
|
||||
* Check if phone numbers are opted out for a given bodyshop
|
||||
* @param {Object} apolloClient - Apollo Client instance
|
||||
* @param {string} bodyshopId - The ID of the bodyshop
|
||||
* @param {string[]} phoneNumbers - Array of phone numbers to check
|
||||
* @returns {Promise<Set<string>>} - Set of normalized opted-out phone numbers
|
||||
*/
|
||||
export const checkPhoneOptOutStatus = async (apolloClient, bodyshopId, phoneNumbers) => {
|
||||
if (!apolloClient || !bodyshopId || !phoneNumbers?.length) {
|
||||
return new Set();
|
||||
}
|
||||
|
||||
// Normalize phone numbers (remove +1 for CA numbers)
|
||||
const normalizedPhones = phoneNumbers
|
||||
.filter(Boolean)
|
||||
.map((num) => phone(num, "CA").phoneNumber?.replace(/^\+1/, ""))
|
||||
.filter(Boolean);
|
||||
|
||||
const optedOutPhones = new Set();
|
||||
|
||||
for (const phoneNum of normalizedPhones) {
|
||||
try {
|
||||
const { data } = await apolloClient.query({
|
||||
query: GET_PHONE_NUMBER_OPT_OUT,
|
||||
variables: {
|
||||
bodyshopid: bodyshopId,
|
||||
phone_number: phoneNum // Single string
|
||||
},
|
||||
fetchPolicy: "network-only"
|
||||
});
|
||||
|
||||
if (data?.phone_number_opt_out?.length) {
|
||||
optedOutPhones.add(phoneNum);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(`Error checking opt-out for ${phoneNum}:`, error);
|
||||
}
|
||||
}
|
||||
|
||||
return optedOutPhones;
|
||||
};
|
||||
Reference in New Issue
Block a user