Skip to content

Commit

Permalink
make worload/pod modal context to 100% width
Browse files Browse the repository at this point in the history
Signed-off-by: andy.lee <andy.lee@suse.com>
  • Loading branch information
a110605 committed Jun 6, 2024
1 parent 270d2d5 commit 0356fe9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
8 changes: 7 additions & 1 deletion src/assets/styles/antd-customize/generic.less
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
&:hover, &:focus {
border: 1px solid #e5e5e5;;
outline: 0;
box-shadow: none;
box-shadow: none;
}
}
.ant-radio-inner {
Expand All @@ -140,6 +140,12 @@
color: white !important;
}

.ant-table-empty{
.ant-table-fixed-right {
height: 56.55px;
}
}

// Use ant footer css replace table empty text
.cron-job-modal {
.ant-table-footer {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getMenus = function (menuArray, siderFold) {
<span>
{item.icon ? <Icon type={item.icon} /> : ''}
{siderFold && topMenus.indexOf(item.key) >= 0 ? '' : item.name}
<Icon type="down" style={{ marginLeft: 3.5 }} />
<Icon type="down" style={{ marginLeft: 5 }} />
</span>
}>
{getMenus(item.child, false)}
Expand Down
4 changes: 1 addition & 3 deletions src/routes/orphanedData/orphanedDataList.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ function list({ loading, dataSource, height, rowSelection, deleteOrphanedData })
columnWidth += ele.width
})

const scroll = dataSource.length > 0 ? { x: columnWidth, y: height } : { x: columnWidth }

return (
<div id="orphanedDataTable" style={{ flex: 1, height: '1px', overflow: 'hidden' }}>
<Table
Expand All @@ -147,7 +145,7 @@ function list({ loading, dataSource, height, rowSelection, deleteOrphanedData })
rowKey={record => record.name}
loading={loading}
height={`${dataSource.length > 0 ? height : 1}px`}
scroll={scroll}
scroll={{ x: columnWidth, y: dataSource.length > 0 ? height : 1 }}
pagination={pagination('orphanedDataSize')}
simple
/>
Expand Down
3 changes: 1 addition & 2 deletions src/routes/systemBackups/systemBackupsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ function list({ loading, dataSource, height, rowSelection, deleteSystemBackup, c
columnWidth += ele.width
})

const scroll = dataSource.length > 0 ? { x: columnWidth, y: height } : { x: columnWidth }
return (
<Table
className="common-table-class"
Expand All @@ -114,7 +113,7 @@ function list({ loading, dataSource, height, rowSelection, deleteSystemBackup, c
rowKey={record => record.name}
loading={loading}
height={`${dataSource.length > 0 ? height : 1}px`}
scroll={scroll}
scroll={{ x: columnWidth, y: dataSource.length > 0 ? height : 1 }}
pagination={pagination('systemBackupSize')}
simple
/>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/systemBackups/systemRestoresList.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function list({ loading, dataSource, height, rowSelection, deleteSystemRestore }
columns.forEach((ele) => {
columnWidth += ele.width
})
const scroll = dataSource.length > 0 ? { x: columnWidth, y: height } : { x: columnWidth }
// const scroll = dataSource.length > 0 ? { x: columnWidth, y: height } : { x: columnWidth }
return (
<Table
className="common-table-class"
Expand All @@ -112,7 +112,7 @@ function list({ loading, dataSource, height, rowSelection, deleteSystemRestore }
rowKey={record => record.name}
loading={loading}
height={`${dataSource.length > 0 ? height : 1}px`}
scroll={scroll}
scroll={{ x: columnWidth, y: dataSource.length > 0 ? height : 1 }}
pagination={pagination('SystemRestoreSize')}
simple
/>
Expand Down
1 change: 0 additions & 1 deletion src/routes/volume/VolumeList.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ function list({
})
let statusForWorkloadMessage = `Not ready for workload. ${record.robustness === 'faulted' ? 'Volume Faulted' : 'Volume may be under maintenance or in the restore process.'} `
let statusForWorkload = <Tooltip title={statusForWorkloadMessage}><Icon type="exclamation-circle" className="faulted" style={{ marginLeft: 5 }} /></Tooltip>
console.log('🚀 ~ statusForWorkloadMessage:', statusForWorkloadMessage)
let stateText = (() => {
if (text.hyphenToHump() === 'attached' && record.robustness === 'healthy') {
return (<div
Expand Down
4 changes: 2 additions & 2 deletions src/routes/volume/WorkloadDetailModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const modal = ({
if (item.podList) {
CardItem = item.podList.map((ele, index) => {
return (
<div style={{ border: '1px solid #f4f4f4', padding: 24, marginRight: 5, marginBottom: 10 }} key={index}>
<div style={{ width: '100%', border: '1px solid #f4f4f4', padding: 24, marginRight: 5, marginBottom: 10 }} key={index}>
{item.snapshotCreated ? <div style={{ marginBottom: '10px' }}> <b>Created Time</b> : {formatDate(item.snapshotCreated)}</div> : ''}
<div> {item.lastPodRefAt ? <div><b>Last time used by Pod</b> : {formatDate(item.lastPodRefAt)}</div> : ''}</div>
<div style={{ marginTop: item.lastPodRefAt ? '10px' : '0px' }}> <b>{item.lastPodRefAt ? 'Last ' : ''}Workload Name</b> : {ele.workloadName}</div>
Expand All @@ -36,7 +36,7 @@ const modal = ({
return (
<ModalBlur {...modalOpts}>
<div style={{ width: '100%', overflow: 'auto' }}>
<div style={{ display: 'flex', width: 1, whiteSpace: 'nowrap' }}>
<div style={{ display: 'flex', whiteSpace: 'nowrap', width: '100%' }}>
{CardItem}
</div>
</div>
Expand Down

0 comments on commit 0356fe9

Please sign in to comment.