Files
deck/src/components/boards/Boards.vue
Jakob Röhrl abac675a49 boards ordered in main page
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-05-19 08:23:01 +02:00

124 lines
2.8 KiB
Vue

<!--
- @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
-
- @author Julius Härtl <jus@bitgrid.net>
-
- @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>
<div>
<Controls />
<div class="board-list">
<div class="board-list-row board-list-header-row">
<div class="board-list-bullet-cell">
<div class="board-list-bullet" />
</div>
<div class="board-list-title-cell">
{{ t('deck', 'Title') }}
</div>
<div class="board-list-avatars-cell">
{{ t('deck', 'Members') }}
</div>
<div class="board-list-actions-cell" />
</div>
<BoardItem v-for="board in boardsSorted" :key="board.id" :board="board" />
</div>
</div>
</template>
<script>
import BoardItem from './BoardItem'
import Controls from '../Controls'
export default {
name: 'Boards',
components: {
BoardItem,
Controls,
},
props: {
navFilter: {
type: String,
default: '',
},
},
computed: {
boardsSorted() {
return [...this.filteredBoards].sort((a, b) => (a.title < b.title) ? -1 : 1)
},
filteredBoards() {
const query = this.$store.getters.getSearchQuery
return this.$store.getters.filteredBoards.filter((board) => {
return board.deletedAt <= 0 && board.title.toLowerCase().includes(query.toLowerCase())
})
},
},
watch: {
navFilter: function(value) {
this.$store.commit('setBoardFilter', value)
},
},
}
</script>
<style lang="scss">
.board-list {
.board-list-row {
align-items: center;
border-bottom: 1px solid #ededed;
display: flex;
}
.board-list-row:not(.board-list-header-row):hover {
transition: background-color 0.3s ease;
background-color: var(--color-background-dark);
}
.board-list-header-row {
color: var(--color-text-lighter);
}
.board-list-bullet-cell,
.board-list-avatars-cell {
padding: 6px 15px;
}
.board-list-avatars-cell {
flex: 0 0 50px;
}
.board-list-avatar,
.board-list-bullet {
height: 32px;
width: 32px;
}
.board-list-title-cell {
flex: 1 0 auto;
padding: 15px;
}
.board-list-actions-cell {
// placeholder
flex: 0 0 50px;
}
}
</style>