FreeDATA/gui_vue/src/components/chat_conversations.vue
2023-09-14 22:45:29 +02:00

45 lines
1.4 KiB
Vue

<script setup lang="ts">
import {saveSettingsToFile} from '../js/settingsHandler';
import { setActivePinia } from 'pinia';
import pinia from '../store/index';
setActivePinia(pinia);
import {deleteChatByCallsign} from '../js/chatHandler'
import { useSettingsStore } from '../store/settingsStore.js';
const settings = useSettingsStore(pinia);
import { useStateStore } from '../store/stateStore.js';
const state = useStateStore(pinia);
import { useChatStore } from '../store/chatStore.js';
const chat = useChatStore(pinia);
function deleteChat(callsign){
deleteChatByCallsign(callsign)
}
import chat_conversations_entry from './chat_conversations_entry.vue'
</script>
<template>
<div class="list-group" id="chat-list-tab" role="chat-tablist">
<template v-for="(item, key) in chat.callsign_list" :key="item.dxcallsign">
<a class="list-group-item list-group-item-action" :class="{ active: key==0 }" :id="`list-chat-list-${item}`" data-bs-toggle="list" :href="`#list-${item}-messages`" role="tab" aria-controls="list-{{item}}-messages">
<div class="row">
<div class="col-9">{{item}}</div>
<div class="col-3">
<button class="btn btn-sm btn-outline-danger ms-5" @click="deleteChat(item)"><i class="bi bi-trash"></i></button>
</div>
</div>
</a>
</template>
<!--<chat_conversations_entry/>-->
</div>
</template>