128 lines
No EOL
2.4 KiB
Vue
128 lines
No EOL
2.4 KiB
Vue
<template>
|
|
<div class="reminders">
|
|
<div
|
|
v-for="(r, index) in reminders"
|
|
:key="index"
|
|
:class="{ 'overdue': r < new Date()}"
|
|
class="reminder-input"
|
|
>
|
|
<datepicker
|
|
v-model="reminders[index]"
|
|
:disabled="disabled"
|
|
@close-on-change="() => addReminderDate(index)"
|
|
/>
|
|
<a @click="removeReminderByIndex(index)" v-if="!disabled" class="remove">
|
|
<icon icon="times"></icon>
|
|
</a>
|
|
</div>
|
|
<div class="reminder-input" v-if="!disabled">
|
|
<datepicker
|
|
v-model="newReminder"
|
|
@close-on-change="() => addReminderDate()"
|
|
:choose-date-label="$t('task.addReminder')"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import datepicker from '@/components/input/datepicker.vue'
|
|
|
|
export default {
|
|
name: 'reminders',
|
|
data() {
|
|
return {
|
|
newReminder: null,
|
|
reminders: [],
|
|
}
|
|
},
|
|
props: {
|
|
modelValue: {
|
|
default: () => [],
|
|
validator: prop => {
|
|
// This allows arrays of Dates and strings
|
|
if (!(prop instanceof Array)) {
|
|
return false
|
|
}
|
|
|
|
for (const e of prop) {
|
|
const isDate = e instanceof Date
|
|
const isString = typeof e === 'string'
|
|
if (!isDate && !isString) {
|
|
console.log('validation failed', e, e instanceof Date)
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
},
|
|
},
|
|
disabled: {
|
|
default: false,
|
|
},
|
|
},
|
|
emits: ['update:modelValue', 'change'],
|
|
components: {
|
|
datepicker,
|
|
},
|
|
mounted() {
|
|
this.reminders = this.modelValue
|
|
},
|
|
watch: {
|
|
modelValue(newVal) {
|
|
for (const i in newVal) {
|
|
if (typeof newVal[i] === 'string') {
|
|
newVal[i] = new Date(newVal[i])
|
|
}
|
|
}
|
|
this.reminders = newVal
|
|
},
|
|
},
|
|
methods: {
|
|
updateData() {
|
|
this.$emit('update:modelValue', this.reminders)
|
|
this.$emit('change')
|
|
},
|
|
addReminderDate(index = null) {
|
|
// New Date
|
|
if (index === null) {
|
|
if (this.newReminder === null) {
|
|
return
|
|
}
|
|
this.reminders.push(new Date(this.newReminder))
|
|
this.newReminder = null
|
|
} else if(this.reminders[index] === null) {
|
|
return
|
|
}
|
|
|
|
this.updateData()
|
|
},
|
|
removeReminderByIndex(index) {
|
|
this.reminders.splice(index, 1)
|
|
this.updateData()
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.reminders {
|
|
.reminder-input {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&.overdue :deep(.datepicker a.show) {
|
|
color: var(--danger);
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
a.remove {
|
|
color: var(--danger);
|
|
padding-left: .5rem;
|
|
}
|
|
}
|
|
}
|
|
</style> |