mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			85 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* eslint no-param-reassign: 0 */
 | |
| 
 | |
| import getUuid from 'widget/helpers/uuid';
 | |
| import { MESSAGE_STATUS, MESSAGE_TYPE } from 'shared/constants/messages';
 | |
| 
 | |
| export default () => {
 | |
|   if (!Array.prototype.last) {
 | |
|     Object.assign(Array.prototype, {
 | |
|       last() {
 | |
|         return this[this.length - 1];
 | |
|       },
 | |
|     });
 | |
|   }
 | |
| };
 | |
| 
 | |
| export const isEmptyObject = obj =>
 | |
|   Object.keys(obj).length === 0 && obj.constructor === Object;
 | |
| 
 | |
| export const isJSONValid = value => {
 | |
|   try {
 | |
|     JSON.parse(value);
 | |
|   } catch (e) {
 | |
|     return false;
 | |
|   }
 | |
|   return true;
 | |
| };
 | |
| 
 | |
| export const getTypingUsersText = (users = []) => {
 | |
|   const count = users.length;
 | |
|   if (count === 1) {
 | |
|     const [user] = users;
 | |
|     return `${user.name} is typing`;
 | |
|   }
 | |
| 
 | |
|   if (count === 2) {
 | |
|     const [first, second] = users;
 | |
|     return `${first.name} and ${second.name} are typing`;
 | |
|   }
 | |
| 
 | |
|   const [user] = users;
 | |
|   const rest = users.length - 1;
 | |
|   return `${user.name} and ${rest} others are typing`;
 | |
| };
 | |
| 
 | |
| export const createPendingMessage = data => {
 | |
|   const timestamp = Math.floor(new Date().getTime() / 1000);
 | |
|   const tempMessageId = getUuid();
 | |
|   const { message, file } = data;
 | |
|   const tempAttachments = [{ id: tempMessageId }];
 | |
|   const pendingMessage = {
 | |
|     ...data,
 | |
|     content: message || null,
 | |
|     id: tempMessageId,
 | |
|     echo_id: tempMessageId,
 | |
|     status: MESSAGE_STATUS.PROGRESS,
 | |
|     created_at: timestamp,
 | |
|     message_type: MESSAGE_TYPE.OUTGOING,
 | |
|     conversation_id: data.conversationId,
 | |
|     attachments: file ? tempAttachments : null,
 | |
|   };
 | |
| 
 | |
|   return pendingMessage;
 | |
| };
 | |
| 
 | |
| export const convertToAttributeSlug = text => {
 | |
|   return text
 | |
|     .toLowerCase()
 | |
|     .replace(/[^\w ]+/g, '')
 | |
|     .replace(/ +/g, '_');
 | |
| };
 | |
| 
 | |
| export const convertToCategorySlug = text => {
 | |
|   return text
 | |
|     .toLowerCase()
 | |
|     .replace(/[^\w ]+/g, '')
 | |
|     .replace(/ +/g, '-');
 | |
| };
 | |
| 
 | |
| export const convertToPortalSlug = text => {
 | |
|   return text
 | |
|     .toLowerCase()
 | |
|     .replace(/[^\w ]+/g, '')
 | |
|     .replace(/ +/g, '-');
 | |
| };
 | 
