mirror of
https://github.com/kevin-DL/build-gmail-clone-with-vue-3.git
synced 2026-01-21 06:44:58 +00:00
Bare app - remove everything except styling, db.json, and packages
This commit is contained in:
@@ -1,86 +0,0 @@
|
||||
<template>
|
||||
<table class="mail-table">
|
||||
<tbody>
|
||||
<tr v-for="email in emails"
|
||||
:key="email.id"
|
||||
:class="[email.read ? 'read' : '']"
|
||||
@click="openEmail(email, true)"
|
||||
class="clickable">
|
||||
<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>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
<ModalView v-if="!!openedEmail" :closeModal="() => {openedEmail = null;}">
|
||||
<MailView :email="openedEmail"
|
||||
@changeEmail="(args) => changeEmail(emails, args)"
|
||||
@openEmail="openEmail" />
|
||||
</ModalView>
|
||||
</table>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { format } from 'date-fns'
|
||||
import useEmailSelection from '../composition/useEmailSelection';
|
||||
import MailView from '@/components/MailView.vue';
|
||||
import ModalView from '@/components/ModalView.vue';
|
||||
import { ref } from 'vue';
|
||||
import axios from 'axios';
|
||||
|
||||
export default {
|
||||
setup({emails}){
|
||||
let {emailSelection} = useEmailSelection();
|
||||
let openedEmail = ref();
|
||||
|
||||
let openEmail = function(email) {
|
||||
openedEmail.value = email;
|
||||
|
||||
if(email) {
|
||||
openedEmail.value.read = true;
|
||||
axios.put(`http://localhost:3000/emails/${openedEmail.value.id}`, openedEmail.value)
|
||||
}
|
||||
}
|
||||
|
||||
function changeEmail(emails, {amount, toggleArchive, closeModal, toggleRead}){
|
||||
let index = emails.findIndex(e => e == openedEmail.value);
|
||||
|
||||
if(toggleArchive) { emails[index].archived = !emails[index].archived }
|
||||
if(toggleRead) { emails[index].read = !emails[index].read }
|
||||
|
||||
if(toggleArchive || toggleRead) {
|
||||
axios.put(`http://localhost:3000/emails/${emails[index].id}`, emails[index])
|
||||
}
|
||||
|
||||
if(closeModal) { openedEmail.value = null; return null; }
|
||||
|
||||
if(amount) {
|
||||
openEmail(emails[index + amount])
|
||||
}
|
||||
}
|
||||
|
||||
return {format, emailSelection, openedEmail, openEmail, changeEmail}
|
||||
},
|
||||
props: {
|
||||
emails: {
|
||||
type: Array,
|
||||
default: []
|
||||
}
|
||||
},
|
||||
components: {
|
||||
MailView,
|
||||
ModalView
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user