feat(voice): WhatsApp calling UI — inbox toggle, call widget, badges
Frontend for WhatsApp WABA calling: calling status toggle in inbox settings, WhatsApp Call channel tile, voice badges, call widget redesign, and conversation header call button.
This commit is contained in:
@@ -329,12 +329,21 @@ const actions = {
|
||||
});
|
||||
commit(types.ADD_CONVERSATION_ATTACHMENTS, message);
|
||||
}
|
||||
handleVoiceCallCreated(message, rootGetters?.getCurrentUserID);
|
||||
handleVoiceCallCreated(
|
||||
message,
|
||||
rootGetters?.getCurrentUserID,
|
||||
rootGetters?.getCurrentUserAvailability
|
||||
);
|
||||
},
|
||||
|
||||
updateMessage({ commit, rootGetters }, message) {
|
||||
commit(types.ADD_MESSAGE, message);
|
||||
handleVoiceCallUpdated(commit, message, rootGetters?.getCurrentUserID);
|
||||
handleVoiceCallUpdated(
|
||||
commit,
|
||||
message,
|
||||
rootGetters?.getCurrentUserID,
|
||||
rootGetters?.getCurrentUserAvailability
|
||||
);
|
||||
},
|
||||
|
||||
deleteMessage: async function deleteLabels(
|
||||
|
||||
Reference in New Issue
Block a user