Fixes: CW-3602, CW-3606, CW-3605, CW-3601, CW-3603, CW-3600, CW-3598 - [CW-3602](https://linear.app/chatwoot/issue/CW-3602/chat-list-infinite-loader-fetching-only-odd-numbered-pages) Chat list pagination broken - [CW-3606](https://linear.app/chatwoot/issue/CW-3606/saving-greeting-message-is-not-working-in-inbox-settings) Greetings message not getting saved - [CW-3605](https://linear.app/chatwoot/issue/CW-3605/copy-and-paste-image-attachment-not-working-in-widget) Paste not working on widget - [CW-3601](https://linear.app/chatwoot/issue/CW-3601/edit-category-is-not-working-properly) Edit category not updating - [CW-3603](https://linear.app/chatwoot/issue/CW-3603/delete-filter-is-not-working) Delete filter modal not toggling - [CW-3600](https://linear.app/chatwoot/issue/CW-3600/portal-editor-is-not-working-properly) Portal editor events were flaky - [CW-3598](https://linear.app/chatwoot/issue/CW-3598/rearrange-of-pre-chat-form-fields-throws-an-error) Prechat form re-order bug --------- Co-authored-by: Vishnu Narayanan <iamwishnu@gmail.com>
86 lines
1.8 KiB
Vue
86 lines
1.8 KiB
Vue
<script>
|
|
import TemplatesPicker from './TemplatesPicker.vue';
|
|
import TemplateParser from './TemplateParser.vue';
|
|
export default {
|
|
components: {
|
|
TemplatesPicker,
|
|
TemplateParser,
|
|
},
|
|
props: {
|
|
show: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
inboxId: {
|
|
type: Number,
|
|
default: undefined,
|
|
},
|
|
},
|
|
emits: ['onSend', 'cancel', 'update:show'],
|
|
data() {
|
|
return {
|
|
selectedWaTemplate: null,
|
|
};
|
|
},
|
|
computed: {
|
|
localShow: {
|
|
get() {
|
|
return this.show;
|
|
},
|
|
set(value) {
|
|
this.$emit('update:show', value);
|
|
},
|
|
},
|
|
modalHeaderContent() {
|
|
return this.selectedWaTemplate
|
|
? this.$t('WHATSAPP_TEMPLATES.MODAL.TEMPLATE_SELECTED_SUBTITLE', {
|
|
templateName: this.selectedWaTemplate.name,
|
|
})
|
|
: this.$t('WHATSAPP_TEMPLATES.MODAL.SUBTITLE');
|
|
},
|
|
},
|
|
methods: {
|
|
pickTemplate(template) {
|
|
this.selectedWaTemplate = template;
|
|
},
|
|
onResetTemplate() {
|
|
this.selectedWaTemplate = null;
|
|
},
|
|
onSendMessage(message) {
|
|
this.$emit('onSend', message);
|
|
},
|
|
onClose() {
|
|
this.$emit('cancel');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<woot-modal v-model:show="localShow" :on-close="onClose" size="modal-big">
|
|
<woot-modal-header
|
|
:header-title="$t('WHATSAPP_TEMPLATES.MODAL.TITLE')"
|
|
:header-content="modalHeaderContent"
|
|
/>
|
|
<div class="row modal-content">
|
|
<TemplatesPicker
|
|
v-if="!selectedWaTemplate"
|
|
:inbox-id="inboxId"
|
|
@on-select="pickTemplate"
|
|
/>
|
|
<TemplateParser
|
|
v-else
|
|
:template="selectedWaTemplate"
|
|
@reset-template="onResetTemplate"
|
|
@send-message="onSendMessage"
|
|
/>
|
|
</div>
|
|
</woot-modal>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.modal-content {
|
|
padding: 1.5625rem 2rem;
|
|
}
|
|
</style>
|