This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/tasks/partials/repeatAfter.vue

100 lines
2.0 KiB
Vue
Raw Normal View History

2019-11-24 13:16:24 +00:00
<template>
<div class="control repeat-after-input columns">
<p class="column is-1">
Each
</p>
<div class="column is-7 field has-addons">
<div class="control">
<input
class="input"
placeholder="Specify an amount..."
v-model="repeatAfter.amount"
@change="updateData"/>
</div>
<div class="control">
<div class="select">
<select v-model="repeatAfter.type" @change="updateData">
<option value="hours">Hours</option>
<option value="days">Days</option>
<option value="weeks">Weeks</option>
<option value="months">Months</option>
<option value="years">Years</option>
</select>
</div>
2019-11-24 13:16:24 +00:00
</div>
</div>
<fancycheckbox
class="column"
@change="updateData"
v-model="task.repeatFromCurrentDate"
v-tooltip="'When marking the task as done, all dates will be set relative to the current date rather than the date they had before.'"
>
Repeat from current date
</fancycheckbox>
2019-11-24 13:16:24 +00:00
</div>
</template>
<script>
2020-06-17 20:15:59 +00:00
import Fancycheckbox from '../../input/fancycheckbox'
2019-11-24 13:16:24 +00:00
export default {
name: 'repeatAfter',
components: {Fancycheckbox},
2019-11-24 13:16:24 +00:00
data() {
return {
task: {},
repeatAfter: {
amount: 0,
type: '',
},
2019-11-24 13:16:24 +00:00
}
},
props: {
value: {
default: () => {
},
2019-11-24 13:16:24 +00:00
required: true,
}
},
watch: {
value(newVal) {
this.task = newVal
if (typeof newVal.repeatAfter !== 'undefined') {
this.repeatAfter = newVal.repeatAfter
}
2019-11-24 13:16:24 +00:00
},
},
mounted() {
this.task = this.value
if (typeof this.value.repeatAfter !== 'undefined') {
this.repeatAfter = this.value.repeatAfter
}
2019-11-24 13:16:24 +00:00
},
methods: {
updateData() {
this.task.repeatAfter = this.repeatAfter
this.$emit('input', this.task)
2019-11-24 13:16:24 +00:00
this.$emit('change')
}
},
}
</script>
<style scoped lang="scss">
2019-11-24 13:16:24 +00:00
p {
padding-top: 6px;
}
.field.has-addons {
margin-bottom: .5rem;
.control .select select {
height: 2.5em;
}
}
.columns {
align-items: center;
}
2019-11-24 13:16:24 +00:00
</style>