122 lines
3.1 KiB
Vue
122 lines
3.1 KiB
Vue
<template>
|
|
<Dialog v-model="show" :options="{ title: 'Email Templates', size: '4xl' }">
|
|
<template #body-content>
|
|
<TextInput
|
|
ref="searchInput"
|
|
v-model="search"
|
|
type="text"
|
|
class="mb-2 w-full"
|
|
placeholder="Search"
|
|
/>
|
|
<div
|
|
v-if="filteredTemplates.length"
|
|
class="grid max-h-[560px] grid-cols-3 gap-2 overflow-y-auto"
|
|
>
|
|
<div
|
|
v-for="template in filteredTemplates"
|
|
:key="template.name"
|
|
class="flex h-56 cursor-pointer flex-col gap-2 rounded-lg border p-3 hover:bg-gray-100"
|
|
@click="emit('apply', template)"
|
|
>
|
|
<div class="border-b pb-2 text-base font-semibold">
|
|
{{ template.name }}
|
|
</div>
|
|
<div v-if="template.subject" class="text-sm text-gray-600">
|
|
Subject: {{ template.subject }}
|
|
</div>
|
|
<TextEditor
|
|
v-if="template.response"
|
|
:content="template.response"
|
|
:editable="false"
|
|
editor-class="!prose-sm max-w-none !text-sm text-gray-600 focus:outline-none"
|
|
class="flex-1 overflow-hidden"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<div class="flex h-56 flex-col items-center justify-center">
|
|
<div class="text-lg text-gray-500">No templates found</div>
|
|
<Button
|
|
label="Create New"
|
|
class="mt-4"
|
|
@click="
|
|
() => {
|
|
show = false
|
|
emailTemplate = {
|
|
reference_doctype: props.doctype,
|
|
enabled: 1,
|
|
}
|
|
showEmailTemplateModal = true
|
|
}
|
|
"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</Dialog>
|
|
<EmailTemplateModal
|
|
v-model="showEmailTemplateModal"
|
|
:emailTemplate="emailTemplate"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
import EmailTemplateModal from '@/components/Modals/EmailTemplateModal.vue'
|
|
import { TextEditor, createListResource } from 'frappe-ui'
|
|
import { defineModel, ref, computed, nextTick, watch, onMounted } from 'vue'
|
|
|
|
const props = defineProps({
|
|
doctype: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
|
|
const show = defineModel()
|
|
const searchInput = ref('')
|
|
const showEmailTemplateModal = ref(false)
|
|
|
|
const emailTemplate = ref({})
|
|
|
|
const emit = defineEmits(['apply'])
|
|
|
|
const search = ref('')
|
|
|
|
const templates = createListResource({
|
|
type: 'list',
|
|
doctype: 'Email Template',
|
|
cache: ['emailTemplates', props.doctype],
|
|
fields: [
|
|
'name',
|
|
'enabled',
|
|
'reference_doctype',
|
|
'subject',
|
|
'response',
|
|
'modified',
|
|
'owner',
|
|
],
|
|
filters: { enabled: 1, reference_doctype: props.doctype },
|
|
orderBy: 'modified desc',
|
|
pageLength: 99999,
|
|
})
|
|
|
|
onMounted(() => {
|
|
if (templates.data == null) {
|
|
templates.fetch()
|
|
}
|
|
})
|
|
|
|
const filteredTemplates = computed(() => {
|
|
return (
|
|
templates.data?.filter((template) => {
|
|
return (
|
|
template.name.toLowerCase().includes(search.value.toLowerCase()) ||
|
|
template.subject.toLowerCase().includes(search.value.toLowerCase())
|
|
)
|
|
}) ?? []
|
|
)
|
|
})
|
|
|
|
watch(show, (value) => value && nextTick(() => searchInput.value?.el?.focus()))
|
|
</script>
|