Files
hoppscotch/components/collections/Edit.vue
2021-07-06 18:00:39 +00:00

53 lines
1.2 KiB
Vue

<template>
<SmartModal v-if="show" @close="hideModal">
<template #header>
<h3 class="heading">{{ $t("edit_collection") }}</h3>
<div>
<ButtonSecondary icon="close" @click.native="hideModal" />
</div>
</template>
<template #body>
<label for="selectLabelEdit">{{ $t("label") }}</label>
<input
id="selectLabelEdit"
v-model="name"
class="input"
type="text"
:placeholder="placeholderCollName"
@keyup.enter="saveCollection"
/>
</template>
<template #footer>
<span></span>
<span>
<ButtonSecondary :label="$t('cancel')" @click.native="hideModal" />
<ButtonPrimary :label="$t('save')" @click.native="saveCollection" />
</span>
</template>
</SmartModal>
</template>
<script>
export default {
props: {
show: Boolean,
placeholderCollName: { type: String, default: null },
},
data() {
return {
name: null,
}
},
methods: {
saveCollection() {
this.$emit("submit", this.name)
this.hideModal()
},
hideModal() {
this.name = null
this.$emit("hide-modal")
},
},
}
</script>