138 lines
3.8 KiB
Vue
138 lines
3.8 KiB
Vue
<template>
|
|
<div>
|
|
<addFolder
|
|
v-bind:show="showModal"
|
|
v-on:new-folder="addNewFolder"
|
|
v-on:hide-model='toggleModal'
|
|
v-bind:editing-folder="selectedFolder"
|
|
v-on:saved-folder="savedFolder"
|
|
>
|
|
</addFolder>
|
|
|
|
<div class="header">
|
|
<i @click="toggleShowChildren" v-show='!showChildren' class="material-icons">arrow_right</i>
|
|
<i @click="toggleShowChildren" v-show='showChildren' class="material-icons">arrow_drop_down</i>
|
|
<label @click="toggleShowChildren">
|
|
{{collection.name}}
|
|
</label>
|
|
<button class="add-button" @click="editCollection">e</button>
|
|
<button class="add-button" @click="removeCollection">x</button>
|
|
<button class="add-button" @click="toggleModal">+</button>
|
|
</div>
|
|
|
|
<div v-show="showChildren">
|
|
<ul>
|
|
<li v-for="(folder, index) in collection.folders" :key="folder.name">
|
|
<folder
|
|
:folder="folder"
|
|
:folderIndex="index"
|
|
:collection-index="collectionIndex"
|
|
v-on:edit-folder="editFolder"
|
|
/>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul>
|
|
<li v-for="(request, index) in collection.requests" :key="index">
|
|
<request
|
|
:request="request"
|
|
:collection-index="collectionIndex"
|
|
:folder-index="-1"
|
|
:request-index="index"
|
|
></request>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
ul li {
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
label {
|
|
padding-left: .5rem;
|
|
}
|
|
|
|
.add-button {
|
|
padding: 0;
|
|
width: 20px;
|
|
margin: 0;
|
|
margin-right: .2rem;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import folder from './folder';
|
|
import addFolder from "./addFolder";
|
|
import request from './request';
|
|
|
|
export default {
|
|
components: {
|
|
folder,
|
|
addFolder,
|
|
request,
|
|
},
|
|
props: {
|
|
collectionIndex: Number,
|
|
collection: Object,
|
|
},
|
|
data () {
|
|
return {
|
|
showChildren: false,
|
|
showModal: false,
|
|
selectedFolder: {},
|
|
};
|
|
},
|
|
methods: {
|
|
toggleShowChildren() {
|
|
this.showChildren = !this.showChildren;
|
|
},
|
|
toggleModal() {
|
|
this.showModal = !this.showModal;
|
|
},
|
|
addNewFolder(newFolder) {
|
|
this.$store.commit('postwoman/addFolder', {
|
|
collectionIndex: this.collectionIndex,
|
|
folder: newFolder,
|
|
});
|
|
this.showModal = false;
|
|
},
|
|
editCollection() {
|
|
this.$emit('edit-collection', {
|
|
collectionIndex: this.collectionIndex,
|
|
collection: this.collection,
|
|
});
|
|
},
|
|
removeCollection() {
|
|
if (!confirm("Are you sure you want to remove this collection?")) return;
|
|
this.$store.commit('postwoman/removeCollection', {
|
|
collectionIndex: this.collectionIndex,
|
|
});
|
|
},
|
|
editFolder(payload) {
|
|
const { folder, collectionIndex, folderIndex } = payload;
|
|
this.selectedFolder = Object.assign({ collectionIndex, folderIndex }, folder);
|
|
this.showModal = true;
|
|
},
|
|
savedFolder(savedFolder) {
|
|
this.$store.commit('postwoman/saveFolder', { savedFolder });
|
|
this.showModal = false;
|
|
this.selectedFolder = {};
|
|
},
|
|
}
|
|
};
|
|
</script> |