mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-05 05:27:48 +00:00
These fixes are all auto generated and can be merged directly Fixes the following issues 1. Event used on components should be hypenated 2. Attribute orders in components 3. Use `unmounted` instead of `destroyed` 4. Add explicit `emits` declarations for components, autofixed [using this script](https://gist.github.com/scmmishra/6f549109b96400006bb69bbde392eddf) We ignore the top level v-if for now, we will fix it later
62 lines
1.2 KiB
Vue
62 lines
1.2 KiB
Vue
<script>
|
|
import AddNote from './AddNote.vue';
|
|
import ContactNote from './ContactNote.vue';
|
|
import Spinner from 'shared/components/Spinner.vue';
|
|
|
|
export default {
|
|
components: {
|
|
AddNote,
|
|
ContactNote,
|
|
Spinner,
|
|
},
|
|
|
|
props: {
|
|
notes: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
isFetching: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
emits: ['add', 'edit', 'delete'],
|
|
|
|
methods: {
|
|
onAddNote(value) {
|
|
this.$emit('add', value);
|
|
},
|
|
onEditNote(value) {
|
|
this.$emit('edit', value);
|
|
},
|
|
onDeleteNote(value) {
|
|
this.$emit('delete', value);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<AddNote @add="onAddNote" />
|
|
<ContactNote
|
|
v-for="note in notes"
|
|
:id="note.id"
|
|
:key="note.id"
|
|
:note="note.content"
|
|
:user="note.user"
|
|
:created-at="note.created_at"
|
|
@edit="onEditNote"
|
|
@delete="onDeleteNote"
|
|
/>
|
|
|
|
<div v-if="isFetching" class="text-center p-4 text-base">
|
|
<Spinner size="" />
|
|
<span>{{ $t('NOTES.FETCHING_NOTES') }}</span>
|
|
</div>
|
|
<div v-else-if="!notes.length" class="text-center p-4 text-base">
|
|
<span>{{ $t('NOTES.NOT_AVAILABLE') }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|