2023-05-24 14:56:02 +00:00
|
|
|
<script>
|
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
import { useStyle } from 'primevue/usestyle';
|
|
|
|
|
|
|
|
const styles = `
|
|
|
|
.p-blockui-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-blockui {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-blockui.p-component-overlay {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-blockui-document.p-component-overlay {
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const classes = {
|
|
|
|
root: 'p-blockui-container'
|
|
|
|
};
|
|
|
|
|
2023-06-09 08:30:38 +00:00
|
|
|
const { load: loadStyle } = useStyle(styles, { id: 'primevue_blockui_style', manual: true });
|
2023-05-24 14:56:02 +00:00
|
|
|
|
|
|
|
export default {
|
2023-06-09 08:30:38 +00:00
|
|
|
name: 'BaseBlockUI',
|
2023-05-24 14:56:02 +00:00
|
|
|
extends: BaseComponent,
|
|
|
|
props: {
|
|
|
|
blocked: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
fullScreen: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
baseZIndex: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
autoZIndex: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
css: {
|
2023-05-30 12:28:04 +00:00
|
|
|
classes,
|
|
|
|
loadStyle
|
2023-05-24 14:56:02 +00:00
|
|
|
},
|
2023-05-30 12:28:04 +00:00
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
$parentInstance: this
|
|
|
|
};
|
2023-05-24 14:56:02 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|