nextcloud-calendar/src/components/AppNavigation/CalendarList/Trashbin.vue

286 lines
7.4 KiB
Vue

<!--
- @copyright 2021 Christoph Wurst <christoph@winzerhof-wurst.at>
-
- @author 2021 Christoph Wurst <christoph@winzerhof-wurst.at>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<template>
<AppNavigationItem :title="t('calendar', 'Trash bin')"
:pinned="true"
icon="icon-delete"
@click.prevent="onShow">
<template #extra>
<Modal v-if="showModal"
@close="showModal = false">
<div class="modal__content">
<h2>{{ t('calendar', 'Trash bin') }}</h2>
<span v-if="!items.length">{{ t('calendar', 'You do not have any deleted calendars or events') }}</span>
<table v-else>
<tr>
<th class="name">
{{ t('calendar', 'Name') }}
</th>
<th class="deletedAt">
{{ t('calendar', 'Deleted') }}
</th>
<th>&nbsp;</th>
</tr>
<tr v-for="item in items" :key="item.url">
<td>
<div class="item">
<div>
<div
class="color-dot"
:style="{ 'background-color': item.color }" />
</div>
<div>
<div>{{ item.name }}</div>
<div v-if="item.subline" class="item-subline">
{{ item.subline }}
</div>
</div>
</div>
</td>
<td class="deletedAt">
<Moment class="timestamp" :timestamp="item.deletedAt" />
</td>
<td>
<button @click="restore(item)">
{{ t('calendar','Restore') }}
</button>
<Actions :force-menu="true">
<ActionButton
icon="icon-delete"
@click="onDeletePermanently(item)">
{{ t('calendar','Delete permanently') }}
</ActionButton>
</Actions>
</td>
</tr>
</table>
<p v-if="retentionDuration" class="footer">
{{ n('calendar', 'Elements in the trash bin are deleted after {numDays} day', 'Elements in the trash bin are deleted after {numDays} days', retentionDuration, { numDays: retentionDuration }) }}
</p>
</div>
</Modal>
</template>
</AppNavigationItem>
</template>
<script>
import AppNavigationItem from '@nextcloud/vue/dist/Components/AppNavigationItem'
import Actions from '@nextcloud/vue/dist/Components/Actions'
import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
import Modal from '@nextcloud/vue/dist/Components/Modal'
import moment from '@nextcloud/moment'
import logger from '../../../utils/logger'
import { showError } from '@nextcloud/dialogs'
import { mapGetters } from 'vuex'
import Moment from './Moment'
import { uidToHexColor } from '../../../utils/color'
export default {
name: 'Trashbin',
components: {
AppNavigationItem,
Modal,
Moment,
Actions,
ActionButton,
},
data() {
return {
showModal: false,
}
},
computed: {
...mapGetters([
'trashBin',
]),
calendars() {
return this.$store.getters.sortedDeletedCalendars
},
objects() {
return this.$store.getters.deletedCalendarObjects
},
items() {
const formattedCalendars = this.calendars.map(calendar => ({
calendar,
type: 'calendar',
key: calendar.url,
name: calendar.displayname,
url: calendar._url,
deletedAt: calendar._props['{http://nextcloud.com/ns}deleted-at'],
color: calendar.color ?? uidToHexColor(calendar.displayname),
}))
const formattedCalendarObjects = this.objects.map(vobject => {
let eventSummary = t('calendar', 'Untitled event')
try {
// TODO: there _has to be_ a less error prone way …
eventSummary = vobject.calendarComponent?._components?.get('VEVENT')[0]?._properties?.get('SUMMARY')[0]?.value
} catch (e) {
// ignore
}
let subline = vobject.calendar.displayName
if (vobject.isEvent) {
const event = vobject?.calendarComponent.getFirstComponent('VEVENT')
if (event?.startDate.jsDate && event?.isAllDay()) {
subline += ' · ' + moment(event.startDate.jsDate).format('LL')
} else if (event?.startDate.jsDate) {
subline += ' · ' + moment(event?.startDate.jsDate).format('LLL')
}
}
const color = vobject.calendarComponent.getComponentIterator().next().value?.color
?? vobject.calendar.color
?? uidToHexColor(vobject.calendar.displayName)
return {
vobject,
type: 'object',
key: vobject.id,
name: eventSummary,
subline,
url: vobject.uri,
deletedAt: vobject.dav._props['{http://nextcloud.com/ns}deleted-at'],
color,
}
})
return formattedCalendars.concat(formattedCalendarObjects)
},
retentionDuration() {
return Math.ceil(
this.trashBin.retentionDuration / (60 * 60 * 24)
)
},
},
methods: {
async onShow() {
this.showModal = true
try {
await Promise.all([
this.$store.dispatch('loadDeletedCalendars'),
this.$store.dispatch('loadDeletedCalendarObjects'),
])
logger.debug('deleted calendars and objects loaded', {
calendars: this.calendars,
objects: this.objects,
})
} catch (error) {
logger.error('could not load deleted calendars and objects', {
error,
})
showError(t('calendar', 'Could not load deleted calendars and objects'))
}
},
async onDeletePermanently(item) {
logger.debug('deleting ' + item.url + ' permanently', item)
try {
switch (item.type) {
case 'calendar':
await this.$store.dispatch('deleteCalendarPermanently', { calendar: item.calendar })
break
case 'object':
await this.$store.dispatch('deleteCalendarObjectPermanently', { vobject: item.vobject })
break
}
} catch (error) {
logger.error('could not restore ' + item.url, { error })
showError(t('calendar', 'Could not restore calendar or event'))
}
},
async restore(item) {
logger.debug('restoring ' + item.url, item)
try {
switch (item.type) {
case 'calendar':
await this.$store.dispatch('restoreCalendar', { calendar: item.calendar })
this.$store.dispatch('loadCollections')
break
case 'object':
await this.$store.dispatch('restoreCalendarObject', { vobject: item.vobject })
break
}
} catch (error) {
logger.error('could not restore ' + item.url, { error })
showError(t('calendar', 'Could not restore calendar or event'))
}
},
},
}
</script>
<style lang="scss" scoped>
.modal__content {
max-width: 40vw;
margin: 2vw;
}
table {
width: 100%;
}
th, td {
padding: 4px;
}
th {
color: var(--color-text-maxcontrast)
}
.name {
// Take remaining width to prevent whitespace on the right side
width: 100vw;
}
.item {
display: flex;
.item-subline {
color: var(--color-text-maxcontrast)
}
}
.deletedAt {
text-align: right;
}
.footer {
color: var(--color-text-lighter);
text-align: center;
font-size: small;
margin-top: 16px;
}
.color-dot {
display: inline-block;
vertical-align: middle;
width: 14px;
height: 14px;
margin-right: 14px;
border: none;
border-radius: 50%;
}
</style>