31c07771e8
fixes: #895 fixes: #1118 fixes: #1075 Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
47 lines
1.3 KiB
JavaScript
Executable file
47 lines
1.3 KiB
JavaScript
Executable file
import endPoints from 'widget/api/endPoints';
|
|
import { API } from 'widget/helpers/axios';
|
|
|
|
const sendMessageAPI = async content => {
|
|
const urlData = endPoints.sendMessage(content);
|
|
const result = await API.post(urlData.url, urlData.params);
|
|
return result;
|
|
};
|
|
|
|
const sendAttachmentAPI = async attachment => {
|
|
const urlData = endPoints.sendAttachment(attachment);
|
|
const result = await API.post(urlData.url, urlData.params);
|
|
return result;
|
|
};
|
|
|
|
const getMessagesAPI = async ({ before }) => {
|
|
const urlData = endPoints.getConversation({ before });
|
|
const result = await API.get(urlData.url, { params: urlData.params });
|
|
return result;
|
|
};
|
|
|
|
const getConversationAPI = async () => {
|
|
return API.get(`/api/v1/widget/conversations${window.location.search}`);
|
|
};
|
|
|
|
const toggleTyping = async ({ typingStatus }) => {
|
|
return API.post(
|
|
`/api/v1/widget/conversations/toggle_typing${window.location.search}`,
|
|
{ typing_status: typingStatus }
|
|
);
|
|
};
|
|
|
|
const setUserLastSeenAt = async ({ lastSeen }) => {
|
|
return API.post(
|
|
`/api/v1/widget/conversations/update_last_seen${window.location.search}`,
|
|
{ contact_last_seen_at: lastSeen }
|
|
);
|
|
};
|
|
|
|
export {
|
|
sendMessageAPI,
|
|
getConversationAPI,
|
|
getMessagesAPI,
|
|
sendAttachmentAPI,
|
|
toggleTyping,
|
|
setUserLastSeenAt,
|
|
};
|