parsley/app/javascript/components/TheTaskListList.vue
2018-09-12 17:17:15 -05:00

170 lines
4.5 KiB
Vue

<template>
<div>
<h1 class="title is-3">Tasks</h1>
<app-dropdown button-class="is-primary" :open="showListDropdown" :label="listSelectLabel" @open="showListDropdown = true" @close="showListDropdown = false">
<task-list-dropdown-item v-for="l in taskLists" :key="l.id" :task-list="l" :active="currentTaskList !== null && currentTaskList.id === l.id" @select="selectList" @delete="deleteList"></task-list-dropdown-item>
<hr class="dropdown-divider" v-if="taskLists.length > 0">
<div class="dropdown-item">
<task-list-mini-form :task-list="newList" :validation-errors="newListValidationErrors" @save="saveNewList"></task-list-mini-form>
</div>
</app-dropdown>
<br><br>
<div v-if="currentTaskList !== null">
<div class="box">
<button class="button" @click="deleteCompletedItems" v-if="completedItemCount > 0">Clear Completed</button>
<button class="button" @click="completeAllItems" v-if="uncompletedItemCount > 0">Check All</button>
<button class="button" @click="unCompleteAllItems" v-if="completedItemCount > 0">Uncheck All</button>
</div>
<div class="box">
<task-item-list :task-list="currentTaskList"></task-item-list>
</div>
</div>
</div>
</template>
<script>
import api from "../lib/Api";
import * as Errors from '../lib/Errors';
import { mapActions, mapMutations, mapState } from "vuex";
import TaskListMiniForm from "./TaskListMiniForm";
import TaskListDropdownItem from "./TaskListDropdownItem";
import TaskItemList from "./TaskItemList";
const newListTemplate = function() {
return {
name: ''
};
};
export default {
data() {
return {
showListDropdown: false,
newList: newListTemplate(),
newListValidationErrors: {}
}
},
computed: {
...mapState([
'taskLists',
'currentTaskList'
]),
listSelectLabel() {
if (this.currentTaskList === null) {
return "Select or Create a List";
} else {
return this.currentTaskList.name;
}
},
completedItemCount() {
return this.currentTaskList === null ? 0 : this.currentTaskList.task_items.filter(i => i.completed).length;
},
uncompletedItemCount() {
return this.currentTaskList === null ? 0 : this.currentTaskList.task_items.filter(i => !i.completed).length;
}
},
methods: {
...mapActions([
'refreshTaskLists',
'createTaskList',
'deleteTaskList',
'deleteTaskItems',
'completeTaskItems'
]),
...mapMutations([
'setCurrentTaskList'
]),
selectList(list) {
this.setCurrentTaskList(list);
this.showListDropdown = false;
},
saveNewList() {
this.loadResource(
this.createTaskList(this.newList)
.then(() => this.showListDropdown = false)
.then(() => { this.newList = newListTemplate(); this.newListValidationErrors = {}; } )
.catch(Errors.onlyFor(Errors.ApiValidationError, err => this.newListValidationErrors = err.validationErrors()))
);
},
deleteList(list) {
this.loadResource(
this.deleteTaskList(list)
);
},
completeAllItems() {
const toComplete = this.currentTaskList.task_items.filter(i => !i.completed);
this.loadResource(
this.completeTaskItems({
taskList: this.currentTaskList,
taskItems: toComplete,
completed: true
})
)
},
unCompleteAllItems() {
const toUnComplete = this.currentTaskList.task_items.filter(i => i.completed);
this.loadResource(
this.completeTaskItems({
taskList: this.currentTaskList,
taskItems: toUnComplete,
completed: false
})
)
},
deleteCompletedItems() {
this.loadResource(
this.deleteTaskItems({
taskList: this.currentTaskList,
taskItems: this.currentTaskList.task_items.filter(i => i.completed)
})
);
},
deleteAllItems() {
this.loadResource(
this.deleteTaskItems({
taskList: this.currentTaskList,
taskItems: this.currentTaskList.task_items
})
);
}
},
created() {
this.loadResource(
this.refreshTaskLists()
);
},
components: {
TaskListMiniForm,
TaskListDropdownItem,
TaskItemList
}
}
</script>
<style lang="scss" scoped>
</style>