fix: Update frontend to indicate lack of WhatsApp connection and adjust backend to return 422 status for WhatsApp number validation issues

feat-scaling-ticket-remote-creation
adriano 2024-03-07 18:03:46 -03:00
parent c5c5ddb5a4
commit e020a5f75d
3 changed files with 13 additions and 10 deletions

View File

@ -93,9 +93,9 @@ export const index = async (req: Request, res: Response): Promise<Response> => {
let queueIds: number[] = [];
if (queueIdsStringified) {
if (queueIdsStringified && queueIdsStringified.trim().length > 0) {
queueIds = JSON.parse(queueIdsStringified);
}
}
const { tickets, count, hasMore } = await ListTicketsService({
searchParam,
@ -109,7 +109,7 @@ export const index = async (req: Request, res: Response): Promise<Response> => {
unlimited,
searchParamContent
});
return res.status(200).json({ tickets, count, hasMore });
};

View File

@ -24,12 +24,13 @@ const CheckIsValidContact = async (
if (data?.isValid) {
isValidNumber = data;
}
}
}
try {
if (!isValidNumber) {
const { data } = await axios.post(
let _status: any;
if (!isValidNumber) {
const { data, status } = await axios.post(
`${process.env.WHATS_NUMBER_VALIDATOR_URL}/api/validate`,
{ mobile: number },
{
@ -40,10 +41,12 @@ const CheckIsValidContact = async (
);
isValidNumber = data;
_status = status;
}
if (ignoreThrow) return isValidNumber?.number;
if (_status && _status == 422) throw new AppError("ERR_NO_WAPP_FOUND");
if (!isValidNumber || (isValidNumber && !isValidNumber.isValid)) {
throw new AppError("invalidNumber");
}

View File

@ -125,11 +125,11 @@ const ContactModal = ({ open, onClose, contactId, initialValues, onSave }) => {
}
handleClose()
}
toast.success(i18n.t("contactModal.success"))
setSaving(false)
toast.success(i18n.t("contactModal.success"))
} catch (err) {
toastError(err)
}
setSaving(false)
}
return (