mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
71 lines
1.7 KiB
Vue
71 lines
1.7 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<div :class="['modal fade', modalClasses]" :style="{display: show ? 'block' : ''}" id="frappe-modal"
|
||
|
tabindex="-1" role="dialog" aria-labelledby="frappe-modal-label" aria-hidden="true">
|
||
|
<div class="modal-dialog" role="document">
|
||
|
<div class="modal-content">
|
||
|
<div class="modal-header">
|
||
|
<h5 class="modal-title" id="frappe-modal-label">{{ title }}</h5>
|
||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close" @click="closeModal">
|
||
|
<span aria-hidden="true">×</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
<div class="modal-body modal-height">
|
||
|
<component :is="bodyComponent" v-bind="bodyProps"/>
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
<component :is="footerComponent" v-bind="footerProps"/>
|
||
|
<f-button secondary @click="closeModal">Close</f-button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="modal-backdrop show" v-show="show" @click="closeModal"></div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
show: Boolean,
|
||
|
title: {
|
||
|
type: String,
|
||
|
default: "Modal Title"
|
||
|
},
|
||
|
bodyComponent: {
|
||
|
type: Object,
|
||
|
default: null
|
||
|
},
|
||
|
bodyProps: {
|
||
|
type: Object,
|
||
|
default: null
|
||
|
},
|
||
|
footerComponent: {
|
||
|
type: Object,
|
||
|
default: null
|
||
|
},
|
||
|
footerProps: {
|
||
|
type: Object,
|
||
|
default: null
|
||
|
},
|
||
|
},
|
||
|
computed: {
|
||
|
modalClasses() {
|
||
|
return {
|
||
|
show: this.show
|
||
|
};
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
closeModal() {
|
||
|
this.$emit('close-modal');
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style scoped>
|
||
|
.modal-height {
|
||
|
max-height: 80vh;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
</style>
|