This commit is contained in:
2026-07-03 23:54:14 +02:00
parent ccfea3d3cf
commit dc738a9d29
3 changed files with 106 additions and 24 deletions
+81 -4
View File
@@ -1,16 +1,93 @@
<script lang="ts" setup> <script lang="ts" setup>
import {ref} from 'vue'
// Exemple de données (à remplacer par vos données Pinia/API)
const messages = ref([
{
id: 1,
user: {name: 'Utilisateur 1', avatar: 'https://cdn.vuetifyjs.com/images/lists/1.jpg'},
content: 'Salut ! Comment ça va ?',
timestamp: 'Aujourd\'hui à 12:00'
},
{
id: 2,
user: {name: 'Utilisateur 2', avatar: 'https://cdn.vuetifyjs.com/images/lists/2.jpg'},
content: 'Je vais très bien, merci ! Et toi ?',
timestamp: 'Aujourd\'hui à 12:01'
}
])
const newMessage = ref('')
const sendMessage = () => {
if (!newMessage.value.trim()) return
// Logique d'envoi ici
messages.value.push({
id: Date.now(),
user: {name: 'Moi', avatar: ''},
content: newMessage.value,
timestamp: 'À l\'instant'
})
newMessage.value = ''
}
</script> </script>
<template> <template>
<!-- Conteneur principal prenant toute la hauteur -->
<v-container class="pa-0 fill-height d-flex flex-column" fluid>
<!-- Zone des messages (scrollable) -->
<v-responsive class="flex-grow-1 overflow-y-auto">
<v-list bg-color="transparent" lines="three">
<v-list-item
v-for="msg in messages"
:key="msg.id"
class="px-4 py-1"
>
<template v-slot:prepend>
<v-avatar color="grey-lighten-2" size="40">
<v-img v-if="msg.user.avatar" :src="msg.user.avatar"></v-img>
<v-icon v-else icon="mdi-account"></v-icon>
</v-avatar>
</template>
<v-list-item-title class="d-flex align-center">
<span class="font-weight-bold text-subtitle-1 mr-2">{{ msg.user.name }}</span>
<span class="text-caption text-grey">{{ msg.timestamp }}</span>
</v-list-item-title>
<v-list-item-subtitle class="text-body-1 text-high-emphasis opacity-100">
{{ msg.content }}
</v-list-item-subtitle>
</v-list-item>
</v-list>
</v-responsive>
<!-- Zone de saisie fixe en bas -->
<v-sheet class="pa-4" width="100%">
<v-text-field <v-text-field
bg-color="grey-lighten-1" v-model="newMessage"
class="overflow-hidden" bg-color="grey-lighten-4"
density="compact" density="compact"
flat flat
hide-details hide-details
rounded="pill" placeholder="Envoyer un message..."
rounded="lg"
variant="solo-filled" variant="solo-filled"
></v-text-field> @keyup.enter="sendMessage"
>
<template v-slot:prepend-inner>
<v-btn color="grey-darken-1" density="compact" icon="mdi-plus-circle" variant="text"></v-btn>
</template>
<template v-slot:append-inner>
<v-btn color="grey-darken-1" density="compact" icon="mdi-gift" variant="text"></v-btn>
<v-btn color="grey-darken-1" density="compact" icon="mdi-sticker-emoji" variant="text"></v-btn>
<v-btn color="grey-darken-1" density="compact" icon="mdi-emoticon" variant="text"></v-btn>
</template>
</v-text-field>
</v-sheet>
</v-container>
</template> </template>
<style scoped> <style scoped>
+14 -9
View File
@@ -1,7 +1,11 @@
<script lang="ts" setup> <script lang="ts" setup>
import {storeToRefs} from 'pinia' import {storeToRefs} from 'pinia'
import {useChannelStore} from '@/stores/channel' import {useChannelStore} from '@/stores/channel'
import {ref} from 'vue' import {computed, ref} from 'vue'
import {useRoute} from 'vue-router'
const route = useRoute()
const serverId = computed(() => route.params.serverId as string)
const channelStore = useChannelStore() const channelStore = useChannelStore()
const {channels} = storeToRefs(channelStore) const {channels} = storeToRefs(channelStore)
@@ -72,10 +76,10 @@ const handleCancel = () => {
<v-btn <v-btn
block block
variant="text"
prepend-icon="mdi-plus"
@click="showDialog = true"
class="ma-2" class="ma-2"
prepend-icon="mdi-plus"
variant="text"
@click="showDialog = true"
> >
New Channel New Channel
</v-btn> </v-btn>
@@ -85,6 +89,7 @@ const handleCancel = () => {
v-for="channel in channels" v-for="channel in channels"
:key="channel.id" :key="channel.id"
:title="channel.name" :title="channel.name"
:to="`/server/${serverId}/channel/${channel.id}`"
link link
></v-list-item> ></v-list-item>
</v-list> </v-list>
@@ -97,36 +102,36 @@ const handleCancel = () => {
<div class="mt-4 space-y-4"> <div class="mt-4 space-y-4">
<v-text-field <v-text-field
v-model="formData.name" v-model="formData.name"
density="compact"
label="Channel Name" label="Channel Name"
outlined outlined
density="compact"
@keyup.enter="handleSubmit" @keyup.enter="handleSubmit"
></v-text-field> ></v-text-field>
<v-select <v-select
v-model="formData.channel_type" v-model="formData.channel_type"
:items="channelTypeOptions" :items="channelTypeOptions"
density="compact"
label="Channel Type" label="Channel Type"
outlined outlined
density="compact"
></v-select> ></v-select>
</div> </div>
</v-card-text> </v-card-text>
<v-card-actions> <v-card-actions>
<v-spacer></v-spacer> <v-spacer></v-spacer>
<v-btn <v-btn
:disabled="isSubmitting"
variant="text" variant="text"
@click="handleCancel" @click="handleCancel"
:disabled="isSubmitting"
> >
Cancel Cancel
</v-btn> </v-btn>
<v-btn <v-btn
:disabled="!formData.name.trim()"
:loading="isSubmitting"
color="primary" color="primary"
variant="tonal" variant="tonal"
@click="handleSubmit" @click="handleSubmit"
:loading="isSubmitting"
:disabled="!formData.name.trim()"
> >
Create Create
</v-btn> </v-btn>
+2 -2
View File
@@ -47,13 +47,13 @@ const router = createRouter({
component: () => import('@/pages/index.vue'), component: () => import('@/pages/index.vue'),
}, },
{ {
path: 'server/:id(default|[0-9a-fA-F-]{36})', path: 'server/:serverId(default|[0-9a-fA-F-]{36})',
name: 'server-dashboard', name: 'server-dashboard',
component: () => import('@/pages/server/index.vue'), component: () => import('@/pages/server/index.vue'),
props: true, props: true,
children: [ children: [
{ {
path: 'channel/:id(default|[0-9a-fA-F-]{36})', path: 'channel/:channelId(default|[0-9a-fA-F-]{36})',
name: 'server-channel', name: 'server-channel',
component: () => import('@/pages/server/channel/index.vue'), component: () => import('@/pages/server/channel/index.vue'),
props: true, props: true,