2019-04-29 23:41:39 +02:00
|
|
|
<template>
|
2019-11-03 13:44:40 +01:00
|
|
|
<form @submit.prevent="editTaskSubmit()">
|
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="tasktext">Task Text</label>
|
|
|
|
<div class="control">
|
2020-07-14 21:26:05 +02:00
|
|
|
<input
|
2020-09-05 22:35:52 +02:00
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
@change="editTaskSubmit()"
|
|
|
|
class="input"
|
|
|
|
id="tasktext"
|
|
|
|
placeholder="The task text is here..."
|
|
|
|
type="text"
|
|
|
|
v-focus
|
|
|
|
v-model="taskEditTask.title"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="taskdescription">Description</label>
|
|
|
|
<div class="control">
|
2020-07-14 21:26:05 +02:00
|
|
|
<editor
|
2020-09-05 22:35:52 +02:00
|
|
|
:preview-is-default="false"
|
|
|
|
id="taskdescription"
|
|
|
|
placeholder="The tasks description goes here..."
|
|
|
|
v-if="editorActive"
|
|
|
|
v-model="taskEditTask.description"
|
2020-07-14 21:26:05 +02:00
|
|
|
/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<b>Reminder Dates</b>
|
2020-09-05 22:35:52 +02:00
|
|
|
<reminders @change="editTaskSubmit()" v-model="taskEditTask.reminderDates"/>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="taskduedate">Due Date</label>
|
|
|
|
<div class="control">
|
|
|
|
<flat-pickr
|
2020-09-05 22:35:52 +02:00
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
@on-close="editTaskSubmit()"
|
|
|
|
class="input"
|
|
|
|
id="taskduedate"
|
|
|
|
placeholder="The tasks due date is here..."
|
|
|
|
v-model="taskEditTask.dueDate">
|
2019-11-03 13:44:40 +01:00
|
|
|
</flat-pickr>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="">Duration</label>
|
|
|
|
<div class="control columns">
|
|
|
|
<div class="column">
|
|
|
|
<flat-pickr
|
2020-09-05 22:35:52 +02:00
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
@on-close="editTaskSubmit()"
|
|
|
|
class="input"
|
|
|
|
id="taskduedate"
|
|
|
|
placeholder="Start date"
|
|
|
|
v-model="taskEditTask.startDate">
|
2019-11-03 13:44:40 +01:00
|
|
|
</flat-pickr>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
<flat-pickr
|
2020-09-05 22:35:52 +02:00
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
@on-close="editTaskSubmit()"
|
|
|
|
class="input"
|
|
|
|
id="taskduedate"
|
|
|
|
placeholder="End date"
|
|
|
|
v-model="taskEditTask.endDate">
|
2019-11-03 13:44:40 +01:00
|
|
|
</flat-pickr>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="">Repeat after</label>
|
2020-09-05 22:35:52 +02:00
|
|
|
<repeat-after @change="editTaskSubmit()" v-model="taskEditTask.repeatAfter"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="">Priority</label>
|
|
|
|
<div class="control priority-select">
|
2020-09-05 22:35:52 +02:00
|
|
|
<priority-select @change="editTaskSubmit()" v-model="taskEditTask.priority"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label">Percent Done</label>
|
|
|
|
<div class="control">
|
2020-09-05 22:35:52 +02:00
|
|
|
<percent-done-select @change="editTaskSubmit()" v-model="taskEditTask.percentDone"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-19 18:27:31 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label">Color</label>
|
|
|
|
<div class="control">
|
2020-06-15 11:46:52 +02:00
|
|
|
<color-picker v-model="taskEditTask.hexColor"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-30 22:18:06 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="">Assignees</label>
|
|
|
|
<ul class="assingees">
|
2020-09-05 22:35:52 +02:00
|
|
|
<li :key="a.id" v-for="(a, index) in taskEditTask.assignees">
|
2020-11-21 22:25:00 +01:00
|
|
|
{{ a.getDisplayName() }}
|
2019-11-03 13:44:40 +01:00
|
|
|
<a @click="deleteAssigneeByIndex(index)">
|
|
|
|
<icon icon="times"/>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field has-addons">
|
|
|
|
<div class="control is-expanded">
|
2020-07-14 21:26:05 +02:00
|
|
|
<edit-assignees
|
2020-09-05 22:35:52 +02:00
|
|
|
:initial-assignees="taskEditTask.assignees"
|
|
|
|
:list-id="taskEditTask.listId"
|
|
|
|
:task-id="taskEditTask.id"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="field">
|
|
|
|
<label class="label">Labels</label>
|
|
|
|
<div class="control">
|
2020-04-17 12:19:53 +02:00
|
|
|
<edit-labels :task-id="taskEditTask.id" v-model="taskEditTask.labels"/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-24 14:16:24 +01:00
|
|
|
<related-tasks
|
2020-09-05 22:35:52 +02:00
|
|
|
:initial-related-tasks="task.relatedTasks"
|
|
|
|
:list-id="task.listId"
|
|
|
|
:task-id="task.id"
|
|
|
|
class="is-narrow"
|
2019-11-24 14:16:24 +01:00
|
|
|
/>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
<button :class="{ 'is-loading': taskService.loading}" class="button is-success is-fullwidth" type="submit">
|
2019-11-03 13:44:40 +01:00
|
|
|
Save
|
|
|
|
</button>
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2019-11-03 13:44:40 +01:00
|
|
|
</form>
|
2019-04-29 23:41:39 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-09-05 22:35:52 +02:00
|
|
|
import flatPickr from 'vue-flatpickr-component'
|
|
|
|
import 'flatpickr/dist/flatpickr.css'
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
import ListService from '../../services/list'
|
|
|
|
import TaskService from '../../services/task'
|
|
|
|
import TaskModel from '../../models/task'
|
|
|
|
import priorities from '../../models/priorities'
|
|
|
|
import PrioritySelect from './partials/prioritySelect'
|
|
|
|
import PercentDoneSelect from './partials/percentDoneSelect'
|
|
|
|
import EditLabels from './partials/editLabels'
|
|
|
|
import EditAssignees from './partials/editAssignees'
|
|
|
|
import RelatedTasks from './partials/relatedTasks'
|
|
|
|
import RepeatAfter from './partials/repeatAfter'
|
|
|
|
import Reminders from './partials/reminders'
|
|
|
|
import ColorPicker from '../input/colorPicker'
|
|
|
|
import LoadingComponent from '../misc/loading'
|
|
|
|
import ErrorComponent from '../misc/error'
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
export default {
|
|
|
|
name: 'edit-task',
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
listId: this.$route.params.id,
|
|
|
|
listService: ListService,
|
|
|
|
taskService: TaskService,
|
2019-04-29 23:41:39 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
priorities: priorities,
|
|
|
|
list: {},
|
|
|
|
editorActive: false,
|
|
|
|
newTask: TaskModel,
|
|
|
|
isTaskEdit: false,
|
|
|
|
taskEditTask: TaskModel,
|
|
|
|
flatPickerConfig: {
|
|
|
|
altFormat: 'j M Y H:i',
|
|
|
|
altInput: true,
|
|
|
|
dateFormat: 'Y-m-d H:i',
|
|
|
|
enableTime: true,
|
|
|
|
onOpen: this.updateLastReminderDate,
|
|
|
|
onClose: this.addReminderDate,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
ColorPicker,
|
|
|
|
Reminders,
|
|
|
|
RepeatAfter,
|
|
|
|
RelatedTasks,
|
|
|
|
EditAssignees,
|
|
|
|
EditLabels,
|
|
|
|
PercentDoneSelect,
|
|
|
|
PrioritySelect,
|
|
|
|
flatPickr,
|
|
|
|
editor: () => ({
|
2020-11-02 21:47:31 +01:00
|
|
|
component: import(/* webpackChunkName: "editor" */ '../../components/input/editor'),
|
2020-09-05 22:35:52 +02:00
|
|
|
loading: LoadingComponent,
|
|
|
|
error: ErrorComponent,
|
|
|
|
timeout: 60000,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
task: {
|
|
|
|
type: TaskModel,
|
|
|
|
required: true,
|
2019-10-28 22:45:37 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
task() {
|
2019-10-28 22:45:37 +01:00
|
|
|
this.taskEditTask = this.task
|
2020-02-09 17:33:04 +01:00
|
|
|
this.initTaskFields()
|
2019-10-28 22:45:37 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.listService = new ListService()
|
|
|
|
this.taskService = new TaskService()
|
|
|
|
this.newTask = new TaskModel()
|
|
|
|
this.taskEditTask = this.task
|
|
|
|
this.initTaskFields()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
initTaskFields() {
|
|
|
|
this.taskEditTask.dueDate = +new Date(this.task.dueDate) === 0 ? null : this.task.dueDate
|
|
|
|
this.taskEditTask.startDate = +new Date(this.task.startDate) === 0 ? null : this.task.startDate
|
|
|
|
this.taskEditTask.endDate = +new Date(this.task.endDate) === 0 ? null : this.task.endDate
|
|
|
|
// This makes the editor trigger its mounted function again which makes it forget every input
|
|
|
|
// it currently has in its textarea. This is a counter-hack to a hack inside of vue-easymde
|
|
|
|
// which made it impossible to detect change from the outside. Therefore the component would
|
|
|
|
// not update if new content from the outside was made available.
|
|
|
|
// See https://github.com/NikulinIlya/vue-easymde/issues/3
|
|
|
|
this.editorActive = false
|
|
|
|
this.$nextTick(() => this.editorActive = true)
|
|
|
|
},
|
|
|
|
editTaskSubmit() {
|
|
|
|
this.taskService.update(this.taskEditTask)
|
|
|
|
.then(r => {
|
|
|
|
this.$set(this, 'taskEditTask', r)
|
|
|
|
this.initTaskFields()
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
this.error(e, this)
|
|
|
|
})
|
2019-10-28 22:45:37 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
}
|
2019-04-29 23:41:39 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2020-09-05 22:35:52 +02:00
|
|
|
form {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2019-04-29 23:41:39 +02:00
|
|
|
</style>
|