mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	 16fe912fbd
			
		
	
	16fe912fbd
	
	
	
		
			
			Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			757 B
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			757 B
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
| <template>
 | |
|   <UserMessage v-if="isUserMessage" :message="message.content" />
 | |
|   <AgentMessage
 | |
|     v-else
 | |
|     :agent-name="message.sender_name"
 | |
|     :message="message.content"
 | |
|   />
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import AgentMessage from 'widget/components/AgentMessage.vue';
 | |
| import UserMessage from 'widget/components/UserMessage.vue';
 | |
| import { MESSAGE_TYPE } from 'widget/helpers/constants';
 | |
| 
 | |
| export default {
 | |
|   components: {
 | |
|     AgentMessage,
 | |
|     UserMessage,
 | |
|   },
 | |
|   props: {
 | |
|     message: Object,
 | |
|   },
 | |
|   computed: {
 | |
|     isUserMessage() {
 | |
|       return this.message.message_type === MESSAGE_TYPE.INCOMING;
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style scoped lang="scss">
 | |
| .message-wrap {
 | |
|   display: flex;
 | |
|   flex-direction: row;
 | |
|   align-items: flex-end;
 | |
|   max-width: 90%;
 | |
| }
 | |
| </style>
 |