mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 31c07771e8
			
		
	
	31c07771e8
	
	
	
		
			
			fixes: #895 fixes: #1118 fixes: #1075 Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			48 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,
 | |
| };
 |