mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-08 15:03:14 +00:00
59 lines
1.3 KiB
Vue
59 lines
1.3 KiB
Vue
<template>
|
|
<search-result-section
|
|
:title="$t('SEARCH.SECTION.CONVERSATIONS')"
|
|
:empty="!conversations.length"
|
|
:query="query"
|
|
:show-title="showTitle || isFetching"
|
|
:is-fetching="isFetching"
|
|
>
|
|
<ul v-if="conversations.length" class="search-list">
|
|
<li v-for="conversation in conversations" :key="conversation.id">
|
|
<search-result-conversation-item
|
|
:id="conversation.id"
|
|
:name="conversation.contact.name"
|
|
:email="conversation.contact.email"
|
|
:account-id="accountId"
|
|
:inbox="conversation.inbox"
|
|
:created-at="conversation.created_at"
|
|
/>
|
|
</li>
|
|
</ul>
|
|
</search-result-section>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import SearchResultSection from './SearchResultSection.vue';
|
|
import SearchResultConversationItem from './SearchResultConversationItem.vue';
|
|
|
|
export default {
|
|
components: {
|
|
SearchResultSection,
|
|
SearchResultConversationItem,
|
|
},
|
|
props: {
|
|
conversations: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
query: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
isFetching: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
showTitle: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
accountId: 'getCurrentAccountId',
|
|
}),
|
|
},
|
|
};
|
|
</script>
|