72 lines
1.6 KiB
Vue
72 lines
1.6 KiB
Vue
<template>
|
|
<SmartModal
|
|
v-if="show"
|
|
:title="$t('folder.edit')"
|
|
@close="$emit('hide-modal')"
|
|
>
|
|
<template #body>
|
|
<div class="flex flex-col px-2">
|
|
<input
|
|
id="selectLabelGqlEditFolder"
|
|
v-model="name"
|
|
v-focus
|
|
class="input floating-input"
|
|
placeholder=" "
|
|
type="text"
|
|
autocomplete="off"
|
|
@keyup.enter="editFolder"
|
|
/>
|
|
<label for="selectLabelGqlEditFolder">
|
|
{{ $t("action.label") }}
|
|
</label>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<span>
|
|
<ButtonPrimary :label="$t('action.save')" @click.native="editFolder" />
|
|
<ButtonSecondary
|
|
:label="$t('action.cancel')"
|
|
@click.native="hideModal"
|
|
/>
|
|
</span>
|
|
</template>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "@nuxtjs/composition-api"
|
|
import { editGraphqlFolder } from "~/newstore/collections"
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
show: Boolean,
|
|
folder: { type: Object, default: () => {} },
|
|
folderPath: { type: String, default: null },
|
|
},
|
|
data() {
|
|
return {
|
|
name: "",
|
|
}
|
|
},
|
|
methods: {
|
|
editFolder() {
|
|
if (!this.name) {
|
|
this.$toast.error(this.$t("collection.invalid_name").toString(), {
|
|
icon: "error_outline",
|
|
})
|
|
return
|
|
}
|
|
editGraphqlFolder(this.folderPath, {
|
|
...(this.folder as any),
|
|
name: this.name,
|
|
})
|
|
this.hideModal()
|
|
},
|
|
hideModal() {
|
|
this.name = ""
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
})
|
|
</script>
|