mirror of
https://github.com/kevin-DL/build-gmail-clone-with-vue-3.git
synced 2026-01-16 21:04:33 +00:00
87 lines
2.4 KiB
Vue
87 lines
2.4 KiB
Vue
<template>
|
|
<table class="mail-table">
|
|
<tbody>
|
|
<tr v-for="email in emails"
|
|
:key="email.id"
|
|
:class="[email.read ? 'read': '', 'clickable']"
|
|
@click="openEmail(email)">
|
|
<td>
|
|
<input type="checkbox"
|
|
:checked="emailSelection.emails.has(email)"
|
|
@click="emailSelection.toggle(email)" />
|
|
</td>
|
|
<td>{{email.from}}</td>
|
|
<td>
|
|
<p><strong>{{email.subject}}</strong> - {{email.body}}</p>
|
|
</td>
|
|
<td class="date">{{format(new Date(email.sentAt), 'MMM do yyyy')}}</td>
|
|
<td><button @click="archiveEmail(email)">Archive</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<ModalView v-if="openedEmail" :closeModal="() => { openedEmail = null; }">
|
|
<MailView v-if="openedEmail"
|
|
:email="openedEmail"
|
|
:changeEmail="(args) => changeEmail(openedEmail, args)" />
|
|
</ModalView>
|
|
</template>
|
|
|
|
<script>
|
|
import { format } from 'date-fns';
|
|
import MailView from '@/components/MailView.vue';
|
|
import ModalView from '@/components/ModalView.vue';
|
|
import { useEmailSelection } from '../composition/useEmailSelection';
|
|
|
|
export default {
|
|
async setup(){
|
|
let openedEmail = null;
|
|
let { emailSelection } = useEmailSelection();
|
|
|
|
return {
|
|
format,
|
|
openedEmail,
|
|
emailSelection
|
|
}
|
|
},
|
|
components: {
|
|
MailView,
|
|
ModalView,
|
|
},
|
|
methods: {
|
|
openEmail(email){
|
|
this.openedEmail = email;
|
|
|
|
if(email) {
|
|
email.read = true
|
|
axios.put(`http://localhost:3000/emails/${email.id}`, email)
|
|
}
|
|
},
|
|
archiveEmail(email){
|
|
email.archived = true;
|
|
axios.put(`http://localhost:3000/emails/${email.id}`, email)
|
|
},
|
|
changeEmail(email, {indexChange, toggleArchive, toggleRead, save, closeModal}) {
|
|
if(toggleArchive) { email.archived = !email.archived }
|
|
if(toggleRead) { email.read = !email.read }
|
|
if(save) { axios.put(`http://localhost:3000/emails/${email.id}`, email) }
|
|
if(closeModal) { this.openedEmail = null; return null; }
|
|
|
|
if(indexChange) {
|
|
let index = this.emails.findIndex(e => e == email);
|
|
this.openEmail(this.emails[index + indexChange])
|
|
}
|
|
}
|
|
},
|
|
props: {
|
|
emails: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |