mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			687 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			687 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script setup>
 | |
| import { computed } from 'vue';
 | |
| import { useMessageContext } from '../../provider.js';
 | |
| 
 | |
| import MessageFormatter from 'shared/helpers/MessageFormatter.js';
 | |
| import { MESSAGE_VARIANTS } from '../../constants';
 | |
| 
 | |
| const props = defineProps({
 | |
|   content: {
 | |
|     type: String,
 | |
|     required: true,
 | |
|   },
 | |
| });
 | |
| 
 | |
| const { variant } = useMessageContext();
 | |
| 
 | |
| const formattedContent = computed(() => {
 | |
|   if (variant.value === MESSAGE_VARIANTS.ACTIVITY) {
 | |
|     return props.content;
 | |
|   }
 | |
| 
 | |
|   return new MessageFormatter(props.content).formattedMessage;
 | |
| });
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <span
 | |
|     v-dompurify-html="formattedContent"
 | |
|     class="[&>p:last-child]:mb-0 [&>ul]:list-inside"
 | |
|   />
 | |
| </template>
 | 
