57 lines
1.2 KiB
Vue
57 lines
1.2 KiB
Vue
<template>
|
|
<woot-modal :show.sync="show" :on-close="onCancel">
|
|
<div class="column content-box">
|
|
<woot-modal-header
|
|
:header-title="$t('NEW_CONVERSATION.TITLE')"
|
|
:header-content="$t('NEW_CONVERSATION.DESC')"
|
|
/>
|
|
<conversation-form
|
|
:contact="contact"
|
|
:on-submit="onSubmit"
|
|
@success="onSuccess"
|
|
@cancel="onCancel"
|
|
/>
|
|
</div>
|
|
</woot-modal>
|
|
</template>
|
|
|
|
<script>
|
|
import ConversationForm from './ConversationForm';
|
|
|
|
export default {
|
|
components: {
|
|
ConversationForm,
|
|
},
|
|
props: {
|
|
show: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
contact: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
watch: {
|
|
'contact.id'(id) {
|
|
this.$store.dispatch('contacts/fetchContactableInbox', id);
|
|
},
|
|
},
|
|
mounted() {
|
|
const { id } = this.contact;
|
|
this.$store.dispatch('contacts/fetchContactableInbox', id);
|
|
},
|
|
methods: {
|
|
onCancel() {
|
|
this.$emit('cancel');
|
|
},
|
|
onSuccess() {
|
|
this.$emit('cancel');
|
|
},
|
|
async onSubmit(contactItem) {
|
|
await this.$store.dispatch('contactConversations/create', contactItem);
|
|
},
|
|
},
|
|
};
|
|
</script>
|