Files
deck/src/components/overview/Overview.vue
2025-09-10 09:44:36 +02:00

229 lines
4.6 KiB
Vue

<!--
- SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="overview-wrapper">
<Controls :overview-name="filterDisplayName" />
<div v-if="loading" key="loading" class="emptycontent">
<div class="icon icon-loading" />
<h2>{{ t('deck', 'Loading filtered view') }}</h2>
<p />
</div>
<div v-else-if="isValidFilter" class="overview">
<div v-for="columnProps in columnPropsList" class="dashboard-column" :key="columnProps.title">
<div class="dashboard-column__header">
<h3 class="dashboard-column__header-title"
:title="columnProps.title"
:aria-label="columnProps.title"
>{{ t('deck', columnProps.title) }}</h3>
</div>
<div class="dashboard-column__list">
<template v-if="columnProps.sort === false">
<CardItem :id="card.id" v-for="card in filterCards(columnProps.filter)" :key="card.id" />
</template>
<template v-else>
<CardItem :id="card.id" v-for="card in sortCards(filterCards(columnProps.filter))"
:key="card.id" />
</template>
</div>
</div>
</div>
<GlobalSearchResults />
</div>
</template>
<script>
import Controls from '../Controls.vue'
import CardItem from '../cards/CardItem.vue'
import { mapGetters } from 'vuex'
import GlobalSearchResults from '../search/GlobalSearchResults.vue'
const FILTER_UPCOMING = 'upcoming'
const SUPPORTED_FILTERS = [
FILTER_UPCOMING,
]
const COLUMN_PROPS_LIST = [
{
title: 'Overdue',
filter: 'overdue',
},
{
title: 'Today',
filter: 'today',
},
{
title: 'Tomorrow',
filter: 'tomorrow',
},
{
title: 'Next 7 days',
filter: 'nextSevenDays',
},
{
title: 'Later',
filter: 'later',
},
{
title: 'No due',
filter: 'nodue',
sort: false,
},
]
export default {
name: 'Overview',
components: {
GlobalSearchResults,
Controls,
CardItem,
},
props: {
filter: {
type: String,
default: FILTER_UPCOMING,
},
},
data() {
return {
loading: true,
columnPropsList: COLUMN_PROPS_LIST,
}
},
computed: {
isValidFilter() {
return SUPPORTED_FILTERS.indexOf(this.filter) > -1
},
filterDisplayName() {
switch (this.filter) {
case FILTER_UPCOMING:
return t('deck', 'Upcoming cards')
default:
return ''
}
},
...mapGetters(['assignedCardsDashboard']),
},
watch: {
'$route.params.filter'() {
this.getData()
},
},
created() {
this.getData()
},
methods: {
async getData() {
this.loading = true
try {
if (this.filter === FILTER_UPCOMING) {
await this.$store.dispatch('loadUpcoming')
}
} catch (e) {
console.error(e)
}
this.loading = false
},
filterCards(when) {
return this.assignedCardsDashboard[when];
},
sortCards(cards) {
if (!cards) {
return null
} else {
return cards.toSorted((current, next) => {
const currentDueDate = new Date(current.duedate)
const nextDueDate = new Date(next.duedate)
return currentDueDate - nextDueDate
})
}
},
},
}
</script>
<style lang="scss" scoped>
@import './../../css/variables';
.overview-wrapper {
position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.overview {
position: relative;
overflow: auto;
flex-grow: 1;
scrollbar-gutter: stable;
display: flex;
align-items: stretch;
gap: $board-gap;
padding: 0 $board-gap;
.dashboard-column {
display: flex;
flex-direction: column;
flex: 0 1 $card-max-width;
min-width: $card-min-width;
.dashboard-column__header {
display: flex;
position: sticky;
top: 0;
height: var(--default-clickable-area);
z-index: 100;
margin-top: 0;
background-color: var(--color-main-background);
// Smooth fade out of the cards at the top
&:before {
content: '';
display: block;
position: absolute;
width: 100%;
height: 20px;
top: 30px;
left: 0px;
z-index: 99;
transition: top var(--animation-slow);
background-image: linear-gradient(180deg, var(--color-main-background) 3px, rgba(255, 255, 255, 0) 100%);
body.theme--dark & {
background-image: linear-gradient(180deg, var(--color-main-background) 3px, rgba(0, 0, 0, 0) 100%);
}
}
}
.dashboard-column__header-title {
display: flex;
align-items: center;
height: var(--default-clickable-area);
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 4px;
font-size: var(--default-font-size);
}
.dashboard-column__list {
display: flex;
flex-direction: column;
gap: $stack-gap;
padding: 5px 0 $stack-gap;
}
}
}
</style>