mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-21 22:19:27 +00:00
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
import BsModal from "../../Bootstrap/Modal";
|
|
import RaumContent from "./Content_types/Raum_contentmittitel";
|
|
|
|
|
|
export default {
|
|
|
|
|
|
mixins:[BsModal],
|
|
|
|
components:{
|
|
BsModal,
|
|
RaumContent,
|
|
},
|
|
props:{
|
|
contentID:{
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
ort_kurzbz:{
|
|
type: String,
|
|
required: true,
|
|
}
|
|
},
|
|
data(){
|
|
return{
|
|
result: false,
|
|
content: null,
|
|
};
|
|
},
|
|
|
|
methods:{
|
|
modalHidden: function(){
|
|
// reseting the content of the modal
|
|
this.content = null;
|
|
},
|
|
// this method is always called when the modal is shown
|
|
modalShown: function(){
|
|
|
|
if(this.contentID){
|
|
this.$fhcApi.factory.cms.content(this.contentID).then(res =>{
|
|
this.content = res.data.content;
|
|
this.type = res.data.type;
|
|
|
|
})
|
|
}
|
|
},
|
|
},
|
|
mounted(){
|
|
this.modal = this.$refs.modalContainer;
|
|
|
|
},
|
|
|
|
template:/*html*/`
|
|
<bs-modal @hideBsModal="modalHidden" dialogClass="modal-xl" @showBsModal="modalShown" ref="modalContainer" dialogClass="modal-lg">
|
|
<template #title>
|
|
<span v-if="ort_kurzbz">{{ort_kurzbz}}</span>
|
|
<span v-else>Raum Informationen</span>
|
|
</template>
|
|
<template #default>
|
|
<RaumContent v-if="content" :content="content"></RaumContent>
|
|
<div v-else>Der Content für diesen Raum konnte nicht geladen werden</div>
|
|
</template>
|
|
<template #footer>
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
</template>
|
|
</bs-modal>
|
|
`
|
|
}; |