dashboard/shell/components/PromptModal.vue

110 lines
2.5 KiB
Vue

<script>
import { mapState } from 'vuex';
import { isArray } from '@shell/utils/array';
import AppModal from '@shell/components/AppModal.vue';
/**
* @name PromptModal
* @description Modal component.
*/
export default {
name: 'PromptModal',
components: { AppModal },
data() {
return { opened: false, backgroundClosing: null };
},
computed: {
...mapState('action-menu', ['showModal', 'modalData']),
resources() {
let resources = this.modalData?.resources;
if (!isArray(resources)) {
resources = [resources];
}
return resources || [];
},
modalWidth() {
// property set from workload.js to overwrite modal default width of 600px, with fallback value as well
return this.modalData?.modalWidth || '600px';
},
component() {
// Looks for a dialog component by looking up in plugins and @shell/dialog/${name}.
return this.$store.getters['type-map/importDialog'](this.modalData?.component);
},
cssProps() {
// this computed property lets us generate a scss var that we can use in the style
return `--prompt-modal-width: ${ this.modalWidth }`;
},
stickyProps() {
const isSticky = !!this.modalData?.modalSticky;
return !isSticky ? '' : 'display: flex; flex-direction: column; ';
},
closeOnClickOutside() {
return this.modalData?.closeOnClickOutside;
}
},
watch: {
showModal(show) {
this.opened = show;
},
},
methods: {
close() {
if (!this.opened) {
return;
}
this.errors = [];
this.$store.commit('action-menu/togglePromptModal');
if (this.backgroundClosing) {
this.backgroundClosing();
}
this.opened = false;
},
// We're using register instead of just making use of $refs because the $refs is always undefined when referencing the component
registerBackgroundClosing(fn) {
this['backgroundClosing'] = fn;
}
},
};
</script>
<template>
<app-modal
v-if="opened && component"
:click-to-close="closeOnClickOutside"
:width="modalWidth"
@close="close()"
>
<component
v-bind="modalData.componentProps || {}"
:is="component"
:resources="resources"
:register-background-closing="registerBackgroundClosing"
@close="close()"
/>
</app-modal>
</template>
<style lang='scss'>
.promptModal-modal {
border-radius: var(--border-radius);
overflow: scroll;
max-height: 100vh;
& ::-webkit-scrollbar-corner {
background: rgba(0,0,0,0);
}
}
</style>