Updates CSS and structure in Wizard, also fixed css issues in GrantWizard.

This commit is contained in:
Nikhil Mohite
2021-12-31 14:16:50 +05:30
committed by Akshay Joshi
parent 0ceb2e2767
commit e18ce2c9e3
3 changed files with 113 additions and 123 deletions

View File

@@ -34,7 +34,7 @@ const useStyles = makeStyles((theme) => ({
borderSpacing: 0,
width: '100%',
overflow: 'hidden',
height: '99.7%',
height: '100%',
backgroundColor: theme.otherVars.tableBg,
...theme.mixins.panelBorder,
//backgroundColor: theme.palette.background.default,

View File

@@ -12,64 +12,66 @@ import clsx from 'clsx';
import FastForwardIcon from '@material-ui/icons/FastForward';
import FastRewindIcon from '@material-ui/icons/FastRewind';
import ChevronRightIcon from '@material-ui/icons/ChevronRight';
import DoneIcon from '@material-ui/icons/Done';
import HelpIcon from '@material-ui/icons/HelpRounded';
import CheckIcon from '@material-ui/icons/Check';
import { DefaultButton, PrimaryButton, PgIconButton } from '../../../../static/js/components/Buttons';
import PropTypes from 'prop-types';
import { Box } from '@material-ui/core';
import gettext from 'sources/gettext';
import Loader from 'sources/components/Loader';
const useStyles = makeStyles((theme) =>
({
wizardBase: {
height: '100%'
height: '100%',
display: 'flex',
flexDirection: 'column'
},
root: {
display: 'flex',
flexDirection: 'column',
height: '100%',
},
wizardTitle: {
top: '0 !important',
opacity: '1 !important',
borderRadius: '6px 6px 0px 0px !important',
margin: '0 !important',
width: '100%',
height: '6%'
flexGrow: 1,
minHeight: 0
},
rightPanel: {
position: 'relative',
minHeight: 100,
display: 'flex',
paddingLeft: '1.5em',
paddingTop: '0em',
flex: 5,
flexBasis: '75%',
overflow: 'auto',
height: '100%',
minHeight: '100px'
},
leftPanel: {
display: 'flex',
// padding: '2em',
flexBasis: '25%',
flexDirection: 'column',
alignItems: 'flex-start',
borderRight: '1px solid',
...theme.mixins.panelBorder.right,
flex: 1.6
},
label: {
display: 'inline-block',
position: 'relative',
paddingLeft: '0.5em',
flex: 6
paddingLeft: '0.5rem',
flexBasis: '70%'
},
labelArrow: {
display: 'inline-block',
position: 'relative',
flex: 1
flexBasis: '30%'
},
labelDone: {
display: 'inline-block',
position: 'relative',
flexBasis: '30%',
color: theme.otherVars.activeStepBg + ' !important',
padding: '4px'
},
stepLabel: {
padding: '1em',
paddingRight: 0
},
active: {
fontWeight: 600
@@ -99,19 +101,9 @@ const useStyles = makeStyles((theme) =>
borderTop: '1px solid #dde0e6 !important',
padding: '0.5rem',
display: 'flex',
flexDirection: 'row',
flex: 1,
position: 'absolute',
verticalAlign: 'bottom',
bottom: 0,
zIndex: 999,
width: '100%',
background: theme.otherVars.headerBg
},
wizardPanelContent: {
paddingTop: '0.9em !important',
overflow: 'hidden',
paddingBottom: '6.3em'
background: theme.otherVars.headerBg,
zIndex: 999,
},
backButton: {
marginRight: theme.spacing(1),
@@ -129,13 +121,10 @@ const useStyles = makeStyles((theme) =>
stepDefaultStyle: {
width: '100%',
height: '100%',
paddingBottom: '1em',
paddingRight: '1em',
overflow: 'hidden',
minHeight: 0,
position: 'relative'
padding: '8px',
display: 'flex',
flexDirection: 'column',
}
}),
);
@@ -183,7 +172,7 @@ function Wizard({ stepList, onStepChange, onSave, className, ...props }) {
return (
<Box className={classes.wizardBase}>
<Box className={clsx('wizard-header', classes.wizardTitle)}>{props.title}</Box>
<Box className={clsx('wizard-header')}>{props.title}</Box>
<div className={clsx(classes.root, props?.rootClass)}>
<div className={clsx(classes.wizard, className)}>
<Box className={classes.leftPanel}>
@@ -192,14 +181,16 @@ function Wizard({ stepList, onStepChange, onSave, className, ...props }) {
<Box className={clsx(classes.stepIndex, index === activeStep ? classes.activeIndex : '')}>{index + 1}</Box>
<Box className={classes.label}>{label} </Box>
<Box className={classes.labelArrow}>{index === activeStep ? <ChevronRightIcon /> : null}</Box>
<Box className={classes.labelDone}>{index < activeStep ? <DoneIcon />: null}</Box>
</Box>
))}
</Box>
<div className={clsx(classes.rightPanel, classes.wizardPanelContent, props.stepPanelCss)}>
<div className={clsx(classes.rightPanel, props.stepPanelCss)}>
<Loader message={props?.loaderText} />
{
React.Children.map(props.children, (child) => {
return (
<div hidden={child.props.stepId !== activeStep} className={clsx(child.props.className, classes.stepDefaultStyle)}>
<div hidden={child.props.stepId !== activeStep} className={clsx(classes.stepDefaultStyle, child.props.className)}>
{child}
</div>
);
@@ -207,8 +198,9 @@ function Wizard({ stepList, onStepChange, onSave, className, ...props }) {
}
</div>
</div>
</div>
<div className={classes.wizardFooter}>
<Box >
<Box>
<PgIconButton data-test="dialog-help" onClick={() => props.onHelp()} icon={<HelpIcon />} title="Help for this dialog."
disabled={props.disableDialogHelp} />
</Box>
@@ -224,7 +216,6 @@ function Wizard({ stepList, onStepChange, onSave, className, ...props }) {
</PrimaryButton>
</Box>
</div>
</div>
</Box>
);
}
@@ -246,4 +237,5 @@ Wizard.propTypes = {
disableDialogHelp: PropTypes.bool,
beforeNext: PropTypes.func,
beforeBack: PropTypes.func,
loaderText: PropTypes.string
};

View File

@@ -21,7 +21,6 @@ import { InputSQL, InputText, FormFooterMessage, MESSAGE_TYPE } from '../../../.
import getApiInstance from '../../../../static/js/api_instance';
import SchemaView from '../../../../static/js/SchemaView';
import clsx from 'clsx';
import Loader from 'sources/components/Loader';
import Alertify from 'pgadmin.alertifyjs';
import PropTypes from 'prop-types';
import PrivilegeSchema from './privilege_schema.ui';
@@ -54,7 +53,8 @@ const useStyles = makeStyles(() =>
overflow: 'auto'
},
panelContent: {
height: '100%'
flexGrow: 1,
minHeight: 0
}
}),
);
@@ -305,8 +305,6 @@ export default function GrantWizard({ sid, did, nodeInfo, nodeData }) {
});
return (
<Box className={classes.root}>
<Loader message={loaderText} />
<Wizard
title={gettext('Grant Wizard')}
stepList={steps}
@@ -314,6 +312,7 @@ export default function GrantWizard({ sid, did, nodeInfo, nodeData }) {
onStepChange={wizardStepChange}
onSave={onSave}
onHelp={onDialogHelp}
loaderText={loaderText}
>
<WizardStep stepId={0}>
<Box className={classes.searchBox}>
@@ -367,7 +366,6 @@ export default function GrantWizard({ sid, did, nodeInfo, nodeData }) {
value={msqlData.toString()} />
</WizardStep>
</Wizard>
</Box>
);
}