499 lines
12 KiB
Vue
499 lines
12 KiB
Vue
<!--
|
|
- SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
<template>
|
|
<AttachmentDragAndDrop v-if="card" :card-id="card.id" class="drop-upload--card">
|
|
<div :ref="`card${card.id}`"
|
|
:class="{'compact': compactMode, 'current-card': currentCard, 'no-labels': !hasLabels, 'card__editable': canEdit, 'card__archived': card.archived, 'card__highlight': highlight}"
|
|
tag="div"
|
|
:tabindex="0"
|
|
class="card"
|
|
@click="openCard"
|
|
@keyup.self="handleCardKeyboardShortcut"
|
|
@mouseenter="focus(card.id)">
|
|
<div v-if="standalone" class="card-related">
|
|
<div :style="{backgroundColor: '#' + board.color}" class="board-bullet" dir="auto" />
|
|
{{ board.title }} » {{ stack.title }}
|
|
</div>
|
|
<CardCover v-if="showCardCover" :card-id="card.id" />
|
|
<div class="card-upper">
|
|
<h4 v-if="editingTitle === 0" key="title-view" dir="auto">
|
|
<span contenteditable="false">{{ displayTitle }}</span>
|
|
</h4>
|
|
<h4 v-if="editingTitle >= 1"
|
|
key="title-edit"
|
|
dir="auto"
|
|
class="editable dragDisabled"
|
|
:aria-label="t('deck', 'Edit card title')">
|
|
<span ref="titleContentEditable"
|
|
tabindex="0"
|
|
contenteditable="true"
|
|
role="textbox"
|
|
@focus="onTitleFocus"
|
|
@blur="onTitleBlur"
|
|
@click.stop
|
|
@keyup.esc="onTitleBlur"
|
|
@keyup.enter="onTitleBlur"
|
|
@keyup.stop>{{ card.title }}</span>
|
|
</h4>
|
|
|
|
<DueDate v-if="compactMode" :card="card" />
|
|
<CardMenu v-if="showMenuAtTitle"
|
|
:card="card"
|
|
class="right card-menu"
|
|
@edit-title="triggerEditTitle" />
|
|
</div>
|
|
|
|
<div v-if="hasLabels" class="card-labels">
|
|
<transition-group v-if="card.labels && card.labels.length"
|
|
name="zoom"
|
|
tag="ul"
|
|
class="labels"
|
|
@click.stop="openCard">
|
|
<li v-for="label in labelsSorted" :key="label?.id ?? label?.title" :style="labelStyle(label)">
|
|
<span @click.stop="applyLabelFilter(label)">{{ label.title }}</span>
|
|
</li>
|
|
</transition-group>
|
|
<CardMenu v-if="showMenuAtLabels"
|
|
:card="card"
|
|
class="right"
|
|
@edit-title="triggerEditTitle" />
|
|
</div>
|
|
|
|
<div v-if="hasBadges"
|
|
v-show="!compactMode"
|
|
class="card-controls compact-item"
|
|
@click="openCard">
|
|
<CardBadges :card="card">
|
|
<CardMenu v-if="showMenuAtBadges"
|
|
:card="card"
|
|
class="right"
|
|
@edit-title="triggerEditTitle" />
|
|
</CardBadges>
|
|
</div>
|
|
</div>
|
|
</AttachmentDragAndDrop>
|
|
</template>
|
|
|
|
<script>
|
|
import ClickOutside from 'vue-click-outside'
|
|
import { mapState, mapGetters } from 'vuex'
|
|
import CardBadges from './CardBadges.vue'
|
|
import Color from '../../mixins/color.js'
|
|
import labelStyle from '../../mixins/labelStyle.js'
|
|
import AttachmentDragAndDrop from '../AttachmentDragAndDrop.vue'
|
|
import CardMenu from './CardMenu.vue'
|
|
import CardCover from './CardCover.vue'
|
|
import DueDate from './badges/DueDate.vue'
|
|
import { getCurrentUser } from '@nextcloud/auth'
|
|
|
|
const TITLE_EDITING_STATE = {
|
|
OFF: 0,
|
|
PENDING: 1,
|
|
ON: 2,
|
|
}
|
|
|
|
export default {
|
|
name: 'CardItem',
|
|
components: { CardBadges, AttachmentDragAndDrop, CardMenu, CardCover, DueDate },
|
|
directives: {
|
|
ClickOutside,
|
|
},
|
|
mixins: [Color, labelStyle],
|
|
props: {
|
|
id: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
item: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
standalone: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
dragging: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
highlight: false,
|
|
editingTitle: TITLE_EDITING_STATE.OFF,
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
compactMode: state => state.compactMode,
|
|
showArchived: state => state.showArchived,
|
|
currentBoard: state => state.currentBoard,
|
|
showCardCover: state => state.showCardCover,
|
|
shortcutLock: state => state.shortcutLock,
|
|
}),
|
|
...mapGetters([
|
|
'isArchived',
|
|
]),
|
|
board() {
|
|
return this.$store.getters.boardById(this?.stack?.boardId)
|
|
},
|
|
stack() {
|
|
return this.$store.getters.stackById(this?.card?.stackId)
|
|
},
|
|
canEdit() {
|
|
if (this.currentBoard) {
|
|
return !this.currentBoard.archived && this.$store.getters.canEdit
|
|
}
|
|
const board = this.$store.getters.boards.find((item) => item.id === this.card.boardId)
|
|
return board ? !board.archived && board.permissions.PERMISSION_EDIT : false
|
|
},
|
|
card() {
|
|
return this.item ? this.item : this.$store.getters.cardById(this.id)
|
|
},
|
|
displayTitle() {
|
|
const reference = this.card?.referenceData
|
|
return reference ? reference.openGraphObject.name : this.card.title
|
|
},
|
|
currentCard() {
|
|
return this.card && this.$route && this.$route.params.cardId === this.card.id
|
|
},
|
|
labelsSorted() {
|
|
return [...this.card.labels].sort((a, b) => (a.title < b.title) ? -1 : 1)
|
|
},
|
|
hasLabels() {
|
|
return this.card.labels.length > 0
|
|
},
|
|
hasBadges() {
|
|
return this.card.done
|
|
|| this.card.duedate
|
|
|| this.idBadge
|
|
|| this.card.commentsCount > 0
|
|
|| this.card.description
|
|
|| this.card.attachmentCount > 0
|
|
|| this.card.assignedUsers.length > 0
|
|
},
|
|
idBadge() {
|
|
return this.$store.getters.config('cardIdBadge')
|
|
},
|
|
showMenuAtTitle() {
|
|
return this.compactMode || (!this.compactMode && !this.hasBadges && !this.hasLabels)
|
|
},
|
|
showMenuAtLabels() {
|
|
if (this.compactMode) {
|
|
return false
|
|
}
|
|
return !this.hasBadges && this.hasLabels
|
|
},
|
|
showMenuAtBadges() {
|
|
if (this.compactMode) {
|
|
return false
|
|
}
|
|
return this.hasBadges
|
|
},
|
|
},
|
|
watch: {
|
|
currentCard(newValue) {
|
|
if (newValue) {
|
|
this.$nextTick(() => this.$el.scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'center' }))
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
hasSelection() {
|
|
const selection = window.getSelection()
|
|
return selection.toString() !== ''
|
|
},
|
|
focus(card) {
|
|
if (this.shortcutLock || this.hasSelection()) {
|
|
return
|
|
}
|
|
card = this.$refs[`card${card}`]
|
|
card.focus()
|
|
},
|
|
openCard(event) {
|
|
if (event.target.tagName.toLowerCase() === 'a') {
|
|
return
|
|
}
|
|
if (this.dragging || this.hasSelection()) {
|
|
return
|
|
}
|
|
const boardId = this.card && this.card.boardId ? this.card.boardId : (this.$route?.params.id ?? this.currentBoard.id)
|
|
|
|
if (this.$router) {
|
|
this.$router.push({ name: 'card', params: { id: boardId, cardId: this.card.id } }).catch(() => {})
|
|
return
|
|
}
|
|
|
|
this.$root.$emit('open-card', this.card.id)
|
|
},
|
|
triggerEditTitle() {
|
|
this.editingTitle = TITLE_EDITING_STATE.PENDING
|
|
this.$store.dispatch('toggleShortcutLock', true)
|
|
setTimeout(() => {
|
|
const sel = window.getSelection()
|
|
sel.selectAllChildren(this.$refs.titleContentEditable)
|
|
sel.collapseToEnd()
|
|
this.editingTitle = TITLE_EDITING_STATE.ON
|
|
}, 0)
|
|
},
|
|
onTitleBlur(e) {
|
|
const value = e.target.innerText.trim().replace(/\n$/, '')
|
|
if (this.editingTitle !== TITLE_EDITING_STATE.ON || value === '') {
|
|
return
|
|
}
|
|
this.editingTitle = TITLE_EDITING_STATE.OFF
|
|
if (value !== this.card.title) {
|
|
this.$store.dispatch('updateCardTitle', {
|
|
...this.card,
|
|
title: value,
|
|
})
|
|
}
|
|
this.$store.dispatch('toggleShortcutLock', false)
|
|
},
|
|
onTitleFocus() {
|
|
this.$store.dispatch('toggleShortcutLock', true)
|
|
},
|
|
handleCardKeyboardShortcut(key) {
|
|
if (OCP.Accessibility.disableKeyboardShortcuts()) {
|
|
return
|
|
}
|
|
|
|
if (!this.canEdit || this.$store.state.shortcutLock || key.shiftKey || key.ctrlKey || key.altKey || key.metaKey) {
|
|
return
|
|
}
|
|
|
|
switch (key.code) {
|
|
case 'KeyE':
|
|
this.triggerEditTitle()
|
|
break
|
|
case 'KeyA':
|
|
this.$store.dispatch('archiveUnarchiveCard', { ...this.card, archived: !this.card.archived })
|
|
break
|
|
case 'KeyO':
|
|
this.$store.dispatch('changeCardDoneStatus', { ...this.card, done: !this.card.done })
|
|
break
|
|
case 'KeyM':
|
|
this.$el.querySelector('button.action-item__menutoggle')?.click()
|
|
break
|
|
case 'Enter':
|
|
case 'Space':
|
|
this.openCard().then(() => document.getElementById('app-sidebar-vue')?.focus())
|
|
break
|
|
case 'KeyS':
|
|
this.toggleSelfAsignment()
|
|
break
|
|
}
|
|
},
|
|
applyLabelFilter(label) {
|
|
if (this.dragging) {
|
|
return
|
|
}
|
|
this.$nextTick(() => this.$store.dispatch('toggleFilter', { tags: [label.id] }))
|
|
},
|
|
toggleSelfAsignment() {
|
|
const isAssigned = this.card.assignedUsers.find(
|
|
(item) => item.type === 0 && item.participant.uid === getCurrentUser()?.uid,
|
|
)
|
|
this.$store.dispatch(isAssigned ? 'removeUserFromCard' : 'assignCardToUser', {
|
|
card: this.card,
|
|
assignee: {
|
|
userId: getCurrentUser()?.uid,
|
|
type: 0,
|
|
},
|
|
})
|
|
},
|
|
scrollIntoView() {
|
|
this.$el.scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'center' })
|
|
this.focus()
|
|
this.highlight = true
|
|
setTimeout(() => {
|
|
this.highlight = false
|
|
}, 2000)
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './../../css/animations';
|
|
@import './../../css/variables';
|
|
|
|
@mixin dark-card {
|
|
border: 2px solid var(--color-border-dark);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.card {
|
|
transition: border 0.1s ease-in-out;
|
|
border-radius: var(--border-radius-large);
|
|
font-size: 100%;
|
|
background-color: var(--color-main-background);
|
|
padding: $card-padding;
|
|
border: 2px solid var(--color-border-dark);
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $card-gap;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
|
|
&:deep(*:not(.dragDisabled)) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&.current-card {
|
|
border: 2px solid var(--color-primary-element);
|
|
}
|
|
|
|
&:focus, &:focus-visible, &:focus-within {
|
|
outline: none;
|
|
border: 2px solid var(--color-border-maxcontrast);
|
|
&.current-card {
|
|
border: 2px solid var(--color-primary-element);
|
|
}
|
|
}
|
|
|
|
.card-upper {
|
|
display: flex;
|
|
h4 {
|
|
font-weight: normal;
|
|
margin: 0;
|
|
flex-grow: 1;
|
|
font-size: 100%;
|
|
overflow: hidden;
|
|
word-wrap: break-word;
|
|
align-self: center;
|
|
|
|
:deep(a) {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&.editable {
|
|
span {
|
|
cursor: text;
|
|
|
|
&:focus, &:focus-visible {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
&:focus-within {
|
|
outline: 2px solid var(--color-border-dark);
|
|
outline-offset: 4px;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|
|
.card-menu {
|
|
height: var(--default-clickable-area);
|
|
align-self: end;
|
|
}
|
|
}
|
|
|
|
/* stylelint-disable-next-line no-invalid-position-at-import-rule */
|
|
@import './../../css/labels';
|
|
|
|
.card-controls {
|
|
display: flex;
|
|
}
|
|
&.card__editable .card-controls {
|
|
margin-right: 0;
|
|
}
|
|
&.card__archived {
|
|
background-color: var(--color-background-dark);
|
|
}
|
|
@keyframes highlight {
|
|
0% {
|
|
border-color: var(--color-border-dark);
|
|
}
|
|
20% {
|
|
border-color: var(--color-primary-element);
|
|
}
|
|
70% {
|
|
border-color: var(--color-primary-element);
|
|
}
|
|
100% {
|
|
border-color: var(--color-border-dark);
|
|
}
|
|
}
|
|
&.card__highlight {
|
|
animation: highlight 2s;
|
|
}
|
|
.card-labels {
|
|
display: flex;
|
|
align-items: end;
|
|
|
|
.labels {
|
|
flex-wrap: wrap;
|
|
align-self: flex-start;
|
|
}
|
|
}
|
|
}
|
|
|
|
.right {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.card-related {
|
|
display: flex;
|
|
padding: 4px;
|
|
padding-bottom: 0px;
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
.board-bullet {
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
background-color: transparent;
|
|
margin-top: 4px;
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
|
|
.compact {
|
|
min-height: var(--default-clickable-area);
|
|
|
|
.duedate {
|
|
margin-right: 0;
|
|
display: flex;
|
|
height: 32px;
|
|
width: 32px;
|
|
}
|
|
&.no-labels {
|
|
padding-bottom: var(--default-grid-baseline);
|
|
}
|
|
.labels {
|
|
height: 6px;
|
|
margin-top: -7px;
|
|
margin-bottom: 3px;
|
|
}
|
|
.labels li {
|
|
width: 30px;
|
|
height: 6px;
|
|
font-size: 0;
|
|
color: transparent;
|
|
}
|
|
.card-menu {
|
|
align-self: start !important;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.card {
|
|
@include dark-card;
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
.card-menu {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|