c3lf-system-3/web/src/components/AddItemModal.vue
2023-11-27 01:14:52 +01:00

41 lines
1.1 KiB
Vue

<template>
<div>
<Modal v-if="isModal" title="Add Item" @close="$emit('close')">
<template #body>
<EditItem :item="item"/>
</template>
<template #buttons>
<button type="button" class="btn btn-secondary" @click="$emit('close')">Cancel</button>
<button type="button" class="btn btn-success" @click="saveNewItem()">Save new Item</button>
</template>
</Modal>
</div>
</template>
<script>
import Modal from '@/components/Modal';
import EditItem from '@/components/EditItem';
export default {
name: 'AddItemModal',
components: {Modal, EditItem},
props: ['isModal'],
data: () => ({
item: {}
}),
created() {
this.item = {box: this.$store.state.lastUsed.box || '', cid: this.$store.state.lastUsed.cid || ''};
},
methods: {
saveNewItem() {
this.$store.dispatch('postItem', this.item).then(() => {
this.$emit('close');
});
}
}
};
</script>
<style scoped>
</style>