228 lines
5.3 KiB
Vue
228 lines
5.3 KiB
Vue
<template>
|
|
<div
|
|
:class="[
|
|
'message',
|
|
{ 'message--unsent': isUnsent }
|
|
]"
|
|
:data-message-id="message.id"
|
|
:tabindex="tabindex || 0"
|
|
:aria-label="messageAriaLabel"
|
|
role="listitem"
|
|
@keydown="handleKeydown"
|
|
>
|
|
<div class="message__content">
|
|
{{ message.content }}
|
|
</div>
|
|
|
|
<!-- File Attachment -->
|
|
<div v-if="hasFileAttachment && fileAttachment" class="message__files">
|
|
<FileAttachment :file="fileAttachment" />
|
|
</div>
|
|
|
|
<div class="message__meta">
|
|
<time v-if="!isUnsent && 'created_at' in message" class="message__time">
|
|
{{ formatTime(message.created_at) }}
|
|
</time>
|
|
<span v-else class="message__status">Sending...</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import { useAudio } from '@/composables/useAudio'
|
|
import { useToastStore } from '@/stores/toast'
|
|
import { useAppStore } from '@/stores/app'
|
|
import FileAttachment from './FileAttachment.vue'
|
|
import type { ExtendedMessage, UnsentMessage, FileAttachment as FileAttachmentType } from '@/types'
|
|
|
|
interface Props {
|
|
message: ExtendedMessage | UnsentMessage
|
|
isUnsent?: boolean
|
|
tabindex?: number
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
isUnsent: false
|
|
})
|
|
|
|
// Debug message structure (removed for production)
|
|
|
|
const { speak, playSound } = useAudio()
|
|
const toastStore = useToastStore()
|
|
const appStore = useAppStore()
|
|
|
|
// Check if message has a file attachment
|
|
const hasFileAttachment = computed(() => {
|
|
return 'fileId' in props.message && !!props.message.fileId
|
|
})
|
|
|
|
// Create FileAttachment object from flattened message data
|
|
const fileAttachment = computed((): FileAttachmentType | null => {
|
|
if (!hasFileAttachment.value || !('fileId' in props.message)) return null
|
|
|
|
return {
|
|
id: props.message.fileId!,
|
|
channel_id: props.message.channel_id,
|
|
message_id: props.message.id,
|
|
file_path: props.message.filePath!,
|
|
file_type: props.message.fileType!,
|
|
file_size: props.message.fileSize!,
|
|
original_name: props.message.originalName!,
|
|
created_at: props.message.fileCreatedAt || props.message.created_at
|
|
}
|
|
})
|
|
|
|
const formatTime = (timestamp: string): string => {
|
|
return new Date(timestamp).toLocaleTimeString()
|
|
}
|
|
|
|
// Create comprehensive aria-label for screen readers
|
|
const messageAriaLabel = computed(() => {
|
|
let label = ''
|
|
|
|
// Add message content
|
|
if (props.message.content) {
|
|
label += props.message.content
|
|
}
|
|
|
|
// Add file attachment info if present
|
|
if (hasFileAttachment.value && fileAttachment.value) {
|
|
const file = fileAttachment.value
|
|
const fileType = getFileType(file.original_name)
|
|
label += `. Has ${fileType} attachment: ${file.original_name}`
|
|
}
|
|
|
|
// Add timestamp
|
|
if ('created_at' in props.message && props.message.created_at) {
|
|
const time = formatTime(props.message.created_at)
|
|
label += `. Sent at ${time}`
|
|
}
|
|
|
|
// Add status for unsent messages
|
|
if (props.isUnsent) {
|
|
label += '. Message is sending'
|
|
}
|
|
|
|
return label
|
|
})
|
|
|
|
// Helper to determine file type for better description
|
|
const getFileType = (filename: string): string => {
|
|
const ext = filename.split('.').pop()?.toLowerCase()
|
|
if (!ext) return 'file'
|
|
|
|
if (['jpg', 'jpeg', 'png', 'gif', 'webp', 'svg', 'bmp'].includes(ext)) {
|
|
return 'image'
|
|
} else if (['mp3', 'wav', 'webm', 'ogg', 'aac', 'm4a'].includes(ext)) {
|
|
return 'voice'
|
|
} else if (['pdf'].includes(ext)) {
|
|
return 'PDF document'
|
|
} else if (['doc', 'docx'].includes(ext)) {
|
|
return 'Word document'
|
|
} else if (['txt', 'md'].includes(ext)) {
|
|
return 'text document'
|
|
} else {
|
|
return 'file'
|
|
}
|
|
}
|
|
|
|
const handleKeydown = (event: KeyboardEvent) => {
|
|
// Don't interfere with normal keyboard shortcuts (Ctrl+C, Ctrl+V, etc.)
|
|
if (event.ctrlKey || event.metaKey || event.altKey) {
|
|
return
|
|
}
|
|
|
|
if (event.key === 'c') {
|
|
// Copy message content (only when no modifiers are pressed)
|
|
navigator.clipboard.writeText(props.message.content)
|
|
playSound('copy')
|
|
toastStore.success('Message copied to clipboard')
|
|
} else if (event.key === 'r') {
|
|
// Read message aloud (only when no modifiers are pressed)
|
|
if (appStore.settings.ttsEnabled) {
|
|
speak(props.message.content)
|
|
toastStore.info('Reading message')
|
|
} else {
|
|
toastStore.info('Text-to-speech is disabled')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.message {
|
|
background: #f8f9fa;
|
|
border: 1px solid #e9ecef;
|
|
border-radius: 8px;
|
|
padding: 12px 16px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.message:hover {
|
|
background: #f1f3f4;
|
|
}
|
|
|
|
.message:focus {
|
|
outline: 2px solid #1976d2;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.message--unsent {
|
|
background: #fff3e0;
|
|
border-color: #ff9800;
|
|
}
|
|
|
|
.message--highlighted {
|
|
background: #e3f2fd;
|
|
border-color: #2196f3;
|
|
}
|
|
|
|
.message__content {
|
|
color: #212529;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.message__files {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.message__meta {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.message__time {
|
|
color: #6c757d;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.message__status {
|
|
color: #ff9800;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.message {
|
|
background: #2d3748;
|
|
border-color: #4a5568;
|
|
color: #e2e8f0;
|
|
}
|
|
|
|
.message:hover {
|
|
background: #374151;
|
|
}
|
|
|
|
.message__content {
|
|
color: #e2e8f0;
|
|
}
|
|
|
|
.message__time {
|
|
color: #a0aec0;
|
|
}
|
|
}
|
|
</style> |