## Description Agents can now place a WhatsApp call to a contact straight from the contacts screen, even if that contact has never messaged in. Previously the call only worked once a conversation already existed, so a freshly added contact would fail with "Unable to start the call. Please try again." — the only workaround was to get the contact to message the channel first. ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? - Manually via UI ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
235 lines
7.5 KiB
Vue
235 lines
7.5 KiB
Vue
<script setup>
|
|
import { computed, ref, useAttrs } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useRoute, useRouter } from 'vue-router';
|
|
import { useMapGetter, useStore } from 'dashboard/composables/store';
|
|
import {
|
|
isVoiceCallEnabled,
|
|
getVoiceCallProvider,
|
|
VOICE_CALL_PROVIDERS,
|
|
} from 'dashboard/helper/inbox';
|
|
import {
|
|
VOICE_CALL_DIRECTION,
|
|
VOICE_CALL_OUTBOUND_INIT_STATUS,
|
|
} from 'dashboard/components-next/message/constants';
|
|
import { useAlert } from 'dashboard/composables';
|
|
import { frontendURL, conversationUrl } from 'dashboard/helper/URLHelper';
|
|
import { useCallsStore } from 'dashboard/stores/calls';
|
|
import { useWhatsappCallSession } from 'dashboard/composables/useWhatsappCallSession';
|
|
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import Dialog from 'dashboard/components-next/dialog/Dialog.vue';
|
|
|
|
const props = defineProps({
|
|
phone: { type: String, default: '' },
|
|
contactId: { type: [String, Number], required: true },
|
|
// When set, the WhatsApp call continues in this conversation (matching the
|
|
// header button) instead of looking up the contact's most recent one.
|
|
conversationId: { type: [String, Number], default: null },
|
|
label: { type: String, default: '' },
|
|
icon: { type: [String, Object, Function], default: '' },
|
|
size: { type: String, default: 'sm' },
|
|
tooltipLabel: { type: String, default: '' },
|
|
});
|
|
|
|
defineOptions({ inheritAttrs: false });
|
|
const attrs = useAttrs();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const store = useStore();
|
|
|
|
const { t } = useI18n();
|
|
|
|
const dialogRef = ref(null);
|
|
|
|
const callsStore = useCallsStore();
|
|
const inboxesList = useMapGetter('inboxes/getInboxes');
|
|
const contactsUiFlags = useMapGetter('contacts/getUIFlags');
|
|
|
|
const voiceInboxes = computed(() =>
|
|
(inboxesList.value || []).filter(isVoiceCallEnabled)
|
|
);
|
|
const hasVoiceInboxes = computed(() => voiceInboxes.value.length > 0);
|
|
|
|
const shouldRender = computed(() => hasVoiceInboxes.value && !!props.phone);
|
|
|
|
const isInitiatingCall = computed(() => {
|
|
return contactsUiFlags.value?.isInitiatingCall || false;
|
|
});
|
|
|
|
// Mirror the conversation-header button: block a new call whenever any provider
|
|
// call is already active or ringing, otherwise starting a WhatsApp call here
|
|
// would leave a still-live Twilio (or other) session with no visible control.
|
|
const isCallButtonDisabled = computed(
|
|
() =>
|
|
callsStore.hasActiveCall ||
|
|
callsStore.hasIncomingCall ||
|
|
isInitiatingCall.value
|
|
);
|
|
|
|
const navigateToConversation = conversationId => {
|
|
const accountId = route.params.accountId;
|
|
if (conversationId && accountId) {
|
|
const path = frontendURL(
|
|
conversationUrl({
|
|
accountId,
|
|
id: conversationId,
|
|
})
|
|
);
|
|
router.push({ path });
|
|
}
|
|
};
|
|
|
|
const whatsappCallSession = useWhatsappCallSession();
|
|
|
|
const startWhatsappCall = async (inboxId, conversationIdHint) => {
|
|
const response = await whatsappCallSession.initiateOutboundCall(
|
|
conversationIdHint
|
|
? { conversationId: conversationIdHint }
|
|
: { contactId: props.contactId, inboxId }
|
|
);
|
|
// The composable returns { status: 'locked' } when an init is already in
|
|
// flight or a call is already active; treat that as a soft no-op rather than
|
|
// claiming success.
|
|
if (response?.status === VOICE_CALL_OUTBOUND_INIT_STATUS.LOCKED) return;
|
|
|
|
const conversationId = response?.conversation_id || conversationIdHint;
|
|
if (!response?.id) {
|
|
// Permission template path returns no call id. Mirror the header button and
|
|
// surface whether the request was just sent or is already pending instead of
|
|
// claiming the call started. The permission message lands in the
|
|
// conversation, so still navigate there.
|
|
const messageKey =
|
|
response?.status === VOICE_CALL_OUTBOUND_INIT_STATUS.PERMISSION_PENDING
|
|
? 'CONTACT_PANEL.WHATSAPP_CALL_PERMISSION_PENDING'
|
|
: 'CONTACT_PANEL.WHATSAPP_CALL_PERMISSION_REQUESTED';
|
|
useAlert(t(messageKey));
|
|
navigateToConversation(conversationId);
|
|
return;
|
|
}
|
|
|
|
// Stay non-active until the connect cable event arrives — flipping to active
|
|
// here would start the duration timer before the contact picks up.
|
|
callsStore.addCall({
|
|
callSid: response.call_id,
|
|
callId: response.id,
|
|
conversationId,
|
|
inboxId,
|
|
callDirection: VOICE_CALL_DIRECTION.OUTBOUND,
|
|
provider: VOICE_CALL_PROVIDERS.WHATSAPP,
|
|
});
|
|
|
|
useAlert(t('CONTACT_PANEL.CALL_INITIATED'));
|
|
navigateToConversation(conversationId);
|
|
};
|
|
|
|
const startCall = async (inboxId, conversationIdHint = null) => {
|
|
if (isCallButtonDisabled.value) return;
|
|
|
|
const inbox = (inboxesList.value || []).find(i => i.id === inboxId);
|
|
if (getVoiceCallProvider(inbox) === VOICE_CALL_PROVIDERS.WHATSAPP) {
|
|
try {
|
|
await startWhatsappCall(inboxId, conversationIdHint);
|
|
} catch (error) {
|
|
useAlert(error?.message || t('CONTACT_PANEL.CALL_FAILED'));
|
|
}
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const response = await store.dispatch('contacts/initiateCall', {
|
|
contactId: props.contactId,
|
|
inboxId,
|
|
conversationId: conversationIdHint,
|
|
});
|
|
const { call_sid: callSid, conversation_id: conversationId } = response;
|
|
|
|
callsStore.addCall({
|
|
callSid,
|
|
conversationId,
|
|
inboxId,
|
|
callDirection: VOICE_CALL_DIRECTION.OUTBOUND,
|
|
});
|
|
|
|
useAlert(t('CONTACT_PANEL.CALL_INITIATED'));
|
|
navigateToConversation(response?.conversation_id);
|
|
} catch (error) {
|
|
const apiError = error?.message;
|
|
useAlert(apiError || t('CONTACT_PANEL.CALL_FAILED'));
|
|
}
|
|
};
|
|
|
|
const onClick = async () => {
|
|
// In conversation context, only stay in this conversation if its inbox is
|
|
// itself voice-capable (works the same for Twilio and WhatsApp). For
|
|
// non-voice channels (email, web, …) fall back to the picker so the call
|
|
// goes out via a voice inbox.
|
|
if (props.conversationId) {
|
|
const conversation = store.getters.getConversationById(
|
|
props.conversationId
|
|
);
|
|
const conversationInbox = (inboxesList.value || []).find(
|
|
i => i.id === conversation?.inbox_id
|
|
);
|
|
if (conversationInbox && isVoiceCallEnabled(conversationInbox)) {
|
|
await startCall(conversationInbox.id, props.conversationId);
|
|
return;
|
|
}
|
|
}
|
|
if (voiceInboxes.value.length > 1) {
|
|
dialogRef.value?.open();
|
|
return;
|
|
}
|
|
const [inbox] = voiceInboxes.value;
|
|
await startCall(inbox.id);
|
|
};
|
|
|
|
const onPickInbox = async inbox => {
|
|
dialogRef.value?.close();
|
|
await startCall(inbox.id);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<span class="contents">
|
|
<Button
|
|
v-if="shouldRender"
|
|
v-tooltip.top-end="tooltipLabel || null"
|
|
v-bind="attrs"
|
|
:disabled="isCallButtonDisabled"
|
|
:is-loading="isInitiatingCall"
|
|
:label="label"
|
|
:icon="icon"
|
|
:size="size"
|
|
@click="onClick"
|
|
/>
|
|
|
|
<Dialog
|
|
v-if="shouldRender && voiceInboxes.length > 1"
|
|
ref="dialogRef"
|
|
:title="$t('CONTACT_PANEL.VOICE_INBOX_PICKER.TITLE')"
|
|
show-cancel-button
|
|
:show-confirm-button="false"
|
|
width="md"
|
|
>
|
|
<div class="flex flex-col gap-2">
|
|
<button
|
|
v-for="inbox in voiceInboxes"
|
|
:key="inbox.id"
|
|
type="button"
|
|
class="flex items-center justify-between w-full px-4 py-2 text-left rounded-lg hover:bg-n-alpha-2"
|
|
@click="onPickInbox(inbox)"
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<span class="i-ri-phone-fill text-n-slate-10" />
|
|
<span class="text-sm text-n-slate-12">{{ inbox.name }}</span>
|
|
</div>
|
|
<span v-if="inbox.phone_number" class="text-xs text-n-slate-10">
|
|
{{ inbox.phone_number }}
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</Dialog>
|
|
</span>
|
|
</template>
|