83 lines
1.9 KiB
Vue
83 lines
1.9 KiB
Vue
<template>
|
|
<SmartModal v-if="show" @close="$emit('hide-modal')">
|
|
<div slot="header">
|
|
<div class="row-wrapper">
|
|
<h3 class="title">{{ $t("new_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
|
|
id="selectLabel"
|
|
v-model="name"
|
|
type="text"
|
|
:placeholder="$t('my_new_folder')"
|
|
@keyup.enter="addFolder"
|
|
/>
|
|
</div>
|
|
<div slot="footer">
|
|
<div class="row-wrapper">
|
|
<span></span>
|
|
<span>
|
|
<button class="icon" @click="hideModal">
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
<button class="icon primary" @click="addFolder">
|
|
{{ $t("save") }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script>
|
|
import { fb } from "~/helpers/fb"
|
|
|
|
export default {
|
|
props: {
|
|
show: Boolean,
|
|
folder: { type: Object, default: () => {} },
|
|
folderPath: { type: String, default: null },
|
|
collectionIndex: { type: Number, default: null },
|
|
},
|
|
data() {
|
|
return {
|
|
name: null,
|
|
}
|
|
},
|
|
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"
|
|
)
|
|
}
|
|
}
|
|
},
|
|
addFolder() {
|
|
this.$emit("add-folder", {
|
|
name: this.name,
|
|
folder: this.folder,
|
|
path: this.folderPath || `${this.collectionIndex}`,
|
|
})
|
|
this.syncCollections()
|
|
this.hideModal()
|
|
},
|
|
hideModal() {
|
|
this.name = null
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
}
|
|
</script>
|