* Added functionality for sub-folders * Edit Request name only. Drag and drop to move requests * Refactor * Move requests between folder or collections * Functionality to save request in multiple folders * Unnecessary Lang Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
97 lines
2.3 KiB
Vue
97 lines
2.3 KiB
Vue
<template>
|
|
<modal v-if="show" @close="hideModal">
|
|
<div slot="header">
|
|
<ul>
|
|
<li>
|
|
<div class="row-wrapper">
|
|
<h3 class="title">{{ $t("edit_request") }}</h3>
|
|
<div>
|
|
<button class="icon" @click="hideModal">
|
|
<closeIcon class="material-icons" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div slot="body">
|
|
<label for="selectLabel">{{ $t("label") }}</label>
|
|
<input
|
|
type="text"
|
|
id="selectLabel"
|
|
v-model="requestUpdateData.name"
|
|
@keyup.enter="saveRequest"
|
|
:placeholder="request.name"
|
|
/>
|
|
</div>
|
|
<div slot="footer">
|
|
<div class="row-wrapper">
|
|
<span></span>
|
|
<span>
|
|
<button class="icon" @click="hideModal">
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
<button class="icon primary" @click="saveRequest">
|
|
{{ $t("save") }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</modal>
|
|
</template>
|
|
|
|
<script>
|
|
import { fb } from "~/helpers/fb"
|
|
import closeIcon from "~/static/icons/close-24px.svg?inline"
|
|
|
|
export default {
|
|
components: {
|
|
closeIcon,
|
|
},
|
|
props: {
|
|
show: Boolean,
|
|
collectionIndex: Number,
|
|
folderIndex: Number,
|
|
folderName: String,
|
|
request: Object,
|
|
requestIndex: Number,
|
|
},
|
|
data() {
|
|
return {
|
|
requestUpdateData: {
|
|
name: undefined,
|
|
},
|
|
}
|
|
},
|
|
methods: {
|
|
syncCollections() {
|
|
if (fb.currentUser !== null) {
|
|
if (fb.currentSettings[0].value) {
|
|
fb.writeCollections(JSON.parse(JSON.stringify(this.$store.state.postwoman.collections)))
|
|
}
|
|
}
|
|
},
|
|
saveRequest() {
|
|
const requestUpdated = {
|
|
...this.$props.request,
|
|
name: this.$data.requestUpdateData.name || this.$props.request.name,
|
|
}
|
|
|
|
this.$store.commit("postwoman/editRequest", {
|
|
requestCollectionIndex: this.$props.collectionIndex,
|
|
requestFolderName: this.$props.folderName,
|
|
requestFolderIndex: this.$props.folderIndex,
|
|
requestNew: requestUpdated,
|
|
requestIndex: this.$props.requestIndex,
|
|
})
|
|
|
|
this.hideModal()
|
|
this.syncCollections()
|
|
},
|
|
hideModal() {
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
}
|
|
</script>
|