69 lines
1.6 KiB
Vue
69 lines
1.6 KiB
Vue
<template>
|
|
<SmartModal v-if="show" @close="hideModal">
|
|
<div slot="header">
|
|
<div class="row-wrapper">
|
|
<h3 class="heading">{{ $t("new_environment") }}</h3>
|
|
<div>
|
|
<button class="icon button" @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"
|
|
class="input"
|
|
type="text"
|
|
:placeholder="$t('my_new_environment')"
|
|
@keyup.enter="addNewEnvironment"
|
|
/>
|
|
</div>
|
|
<div slot="footer">
|
|
<div class="row-wrapper">
|
|
<span></span>
|
|
<span>
|
|
<button class="icon button" @click="hideModal">
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
<button class="icon button primary" @click="addNewEnvironment">
|
|
{{ $t("save") }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue"
|
|
import { createEnvironment } from "~/newstore/environments"
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
show: Boolean,
|
|
},
|
|
data() {
|
|
return {
|
|
name: null as string | null,
|
|
}
|
|
},
|
|
methods: {
|
|
addNewEnvironment() {
|
|
if (!this.name) {
|
|
this.$toast.info(this.$t("invalid_environment_name").toString())
|
|
return
|
|
}
|
|
createEnvironment(this.name)
|
|
this.hideModal()
|
|
},
|
|
hideModal() {
|
|
this.name = null
|
|
this.$emit("hide-modal")
|
|
},
|
|
},
|
|
})
|
|
</script>
|