65 lines
1.4 KiB
Vue
65 lines
1.4 KiB
Vue
<template>
|
|
<SmartModal v-if="show" @close="hideModal">
|
|
<template #header>
|
|
<h3 class="heading">{{ $t("new_collection") }}</h3>
|
|
<div>
|
|
<ButtonSecondary icon="close" @click.native="hideModal" />
|
|
</div>
|
|
</template>
|
|
<template #body>
|
|
<label for="selectLabelGqlAdd">{{ $t("label") }}</label>
|
|
<input
|
|
id="selectLabelGqlAdd"
|
|
v-model="name"
|
|
class="input"
|
|
type="text"
|
|
:placeholder="$t('my_new_collection')"
|
|
@keyup.enter="addNewCollection"
|
|
/>
|
|
</template>
|
|
<template #footer>
|
|
<span></span>
|
|
<span>
|
|
<ButtonSecondary :label="$t('cancel')" @click.native="hideModal" />
|
|
<ButtonPrimary :label="$t('save')" @click.native="addNewCollection" />
|
|
</span>
|
|
</template>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue"
|
|
import { addGraphqlCollection } from "~/newstore/collections"
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
show: Boolean,
|
|
},
|
|
data() {
|
|
return {
|
|
name: null as string | null,
|
|
}
|
|
},
|
|
methods: {
|
|
addNewCollection() {
|
|
if (!this.name) {
|
|
this.$toast.info(this.$t("invalid_collection_name").toString())
|
|
return
|
|
}
|
|
|
|
addGraphqlCollection({
|
|
name: this.name,
|
|
folders: [],
|
|
requests: [],
|
|
})
|
|
|
|
this.hideModal()
|
|
},
|
|
hideModal() {
|
|
this.name = null
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
})
|
|
</script>
|