82 lines
1.9 KiB
Vue
82 lines
1.9 KiB
Vue
<template>
|
|
<SmartModal v-if="show" @close="show = false">
|
|
<div slot="header">
|
|
<div class="row-wrapper">
|
|
<h3 class="title">{{ $t("edit_folder") }}</h3>
|
|
<div>
|
|
<button class="icon" @click="hideModal">
|
|
<i class="material-icons">close</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div slot="body" class="flex flex-col">
|
|
<label for="selectLabel">{{ $t("label") }}</label>
|
|
<input
|
|
type="text"
|
|
id="selectLabel"
|
|
v-model="name"
|
|
:placeholder="folder.name"
|
|
@keyup.enter="editFolder"
|
|
/>
|
|
</div>
|
|
<div slot="footer">
|
|
<div class="row-wrapper">
|
|
<span></span>
|
|
<span>
|
|
<button class="icon" @click="hideModal">
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
<button class="icon primary" @click="editFolder">
|
|
{{ $t("save") }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script>
|
|
import { fb } from "~/helpers/fb"
|
|
|
|
export default {
|
|
props: {
|
|
show: Boolean,
|
|
collectionIndex: Number,
|
|
folder: Object,
|
|
folderIndex: Number,
|
|
},
|
|
data() {
|
|
return {
|
|
name: undefined,
|
|
}
|
|
},
|
|
methods: {
|
|
syncCollections() {
|
|
if (fb.currentUser !== null && fb.currentSettings[0]) {
|
|
if (fb.currentSettings[0].value) {
|
|
fb.writeCollections(
|
|
JSON.parse(JSON.stringify(this.$store.state.postwoman.collectionsGraphql)),
|
|
"collectionsGraphql"
|
|
)
|
|
}
|
|
}
|
|
},
|
|
editFolder() {
|
|
this.$store.commit("postwoman/editFolder", {
|
|
collectionIndex: this.$props.collectionIndex,
|
|
folder: { ...this.$props.folder, name: this.$data.name },
|
|
folderIndex: this.$props.folderIndex,
|
|
folderName: this.$props.folder.name,
|
|
flag: "graphql",
|
|
})
|
|
this.hideModal()
|
|
this.syncCollections()
|
|
},
|
|
hideModal() {
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
}
|
|
</script>
|