63 lines
1.2 KiB
Vue
63 lines
1.2 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="selectLabelEditFolder"
|
|
v-model="name"
|
|
v-focus
|
|
class="input floating-input"
|
|
placeholder=" "
|
|
type="text"
|
|
@keyup.enter="editFolder"
|
|
/>
|
|
<label for="selectLabelEditFolder">
|
|
{{ $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>
|
|
export default {
|
|
props: {
|
|
show: Boolean,
|
|
},
|
|
data() {
|
|
return {
|
|
name: null,
|
|
}
|
|
},
|
|
methods: {
|
|
editFolder() {
|
|
if (!this.name) {
|
|
this.$toast.error(this.$t("folder.invalid_name"), {
|
|
icon: "error_outline",
|
|
})
|
|
return
|
|
}
|
|
this.$emit("submit", this.name)
|
|
this.hideModal()
|
|
},
|
|
hideModal() {
|
|
this.name = null
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
}
|
|
</script>
|