Refactor #3965 - Refactor on Dialog

This commit is contained in:
Tuğçe Küçükoğlu 2023-07-05 17:36:46 +03:00
parent 3014b22550
commit e65a1ee1d4
2 changed files with 12 additions and 13 deletions

View file

@ -160,13 +160,18 @@ const inlineStyles = {
};
const classes = {
mask: ({ props, instance }) => [
'p-dialog-mask',
{
'p-component-overlay p-component-overlay-enter': props.modal
},
instance.getPositionClass()
],
mask: ({ props }) => {
const positions = ['left', 'right', 'top', 'topleft', 'topright', 'bottom', 'bottomleft', 'bottomright'];
const pos = positions.find((item) => item === props.position);
return [
'p-dialog-mask',
{
'p-component-overlay p-component-overlay-enter': props.modal
},
pos ? `p-dialog-${pos}` : ''
];
},
root: ({ props, instance }) => [
'p-dialog p-component',
{