Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NOOS-955/fix-tab-height #44

Merged
merged 4 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add debounce to autocomplete input, new prop debounceSeconds

## [2.0.5] - 2024-09-20
## [2.0.6] - 2024-09-20

### Changed

- Add IconButton component wrapping MUI IconButton

## [2.0.7] - 2024-09-30

### Changed

- Display table and tab content in full height
- Add custom sx styling to the table with the prop tableStyle
100 changes: 95 additions & 5 deletions notebooks/test_tab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": null,
"execution_count": 8,
"id": "great-steam",
"metadata": {},
"outputs": [],
Expand All @@ -15,7 +15,96 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 9,
"id": "86602fb0",
"metadata": {},
"outputs": [],
"source": [
"data = [\n",
" {\"name\": \"John\"},\n",
" {\"name\": \"Paul\"},\n",
" {\"name\": \"George\"},\n",
" {\"name\": \"Ringo\"},\n",
" {\"name\": \"Brian\"},\n",
" {\"name\": \"Pete\"},\n",
" {\"name\": \"Stuart\"},\n",
" {\"name\": \"George\"},\n",
" {\"name\": \"Neil\"},\n",
" {\"name\": \"Mal\"},\n",
" {\"name\": \"Jim\"},\n",
" {\"name\": \"Derek\"},\n",
" {\"name\": \"Geoff\"},\n",
" {\"name\": \"Andy\"},\n",
" {\"name\": \"Tony\"},\n",
" {\"name\": \"Julia\"},\n",
" {\"name\": \"Astrid\"},\n",
" {\"name\": \"Klaus\"},\n",
" {\"name\": \"Yoko\"},\n",
" {\"name\": \"Billy\"},\n",
" {\"name\": \"Eric\"},\n",
" {\"name\": \"Ginger\"},\n",
" {\"name\": \"Jack\"},\n",
" {\"name\": \"Keith\"},\n",
" {\"name\": \"Mick\"},\n",
" {\"name\": \"Charlie\"},\n",
" {\"name\": \"Ronnie\"},\n",
" {\"name\": \"Bill\"},\n",
" {\"name\": \"Ian\"},\n",
" {\"name\": \"John\"},\n",
" {\"name\": \"Paul\"},\n",
" {\"name\": \"George\"},\n",
" {\"name\": \"Ringo\"},\n",
" {\"name\": \"Brian\"},\n",
" {\"name\": \"Pete\"},\n",
" {\"name\": \"Stuart\"},\n",
" {\"name\": \"George\"},\n",
" {\"name\": \"Neil\"},\n",
" {\"name\": \"Mal\"},\n",
" {\"name\": \"Jim\"},\n",
" {\"name\": \"Derek\"},\n",
" {\"name\": \"Geoff\"},\n",
" {\"name\": \"Andy\"},\n",
" {\"name\": \"Tony\"},\n",
" {\"name\": \"Julia\"},\n",
" {\"name\": \"Astrid\"},\n",
" {\"name\": \"Klaus\"},\n",
" {\"name\": \"Yoko\"},\n",
" {\"name\": \"Billy\"},\n",
" {\"name\": \"Eric\"},\n",
" {\"name\": \"Ginger\"},\n",
" {\"name\": \"Jack\"},\n",
" {\"name\": \"Keith\"},\n",
" {\"name\": \"Mick\"},\n",
" {\"name\": \"Charlie\"},\n",
" {\"name\": \"Ronnie\"},\n",
" {\"name\": \"Bill\"},\n",
" {\"name\": \"Ian\"},\n",
" {\"name\": \"John\"},\n",
" {\"name\": \"Paul\"},\n",
" {\"name\": \"George\"},\n",
" {\"name\": \"Ringo\"},\n",
" {\"name\": \"Brian\"},\n",
" {\"name\": \"Pete\"},\n",
" {\"name\": \"Stuart\"},\n",
" {\"name\": \"George\"},\n",
" {\"name\": \"Neil\"},\n",
" {\"name\": \"Mal\"},\n",
" {\"name\": \"Jim\"},\n",
" {\"name\": \"Derek\"},\n",
" {\"name\": \"Geoff\"},\n",
" {\"name\": \"Andy\"},\n",
"]\n",
"\n",
"table = dmc.Table( \n",
" columns=[\"name\"],\n",
" rows=data,\n",
" rowsPerPageOptions=[25, 50, 100],\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "hindu-script",
"metadata": {},
"outputs": [],
Expand All @@ -30,7 +119,8 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 11,
"id": "a76308eb",
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -43,8 +133,8 @@
" cards=[{\"title\": \"Card 1a\", \"size\": 3}, {\"title\": \"Card 1b\"}, {\"title\": \"Card 1c\"}]\n",
")\n",
"tab = dmc.Tab(\n",
" children=[text, text_2],\n",
" tabs=[{\"label\": \"2a\"}, {\"label\": \"2b\"}]\n",
" children=[table, text_2, dmc.Box(sx={\"height\": \"inherit\", \"width\": \"inherit\", \"backgroundColor\": \"red\"})],\n",
" tabs=[{\"label\": \"2a\"}, {\"label\": \"2b\"}, {\"label\": \"RED!\"}]\n",
")\n",
"section_2 = dmc.Section(\n",
" id=\"section-2\",\n",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "git",
"url": "git://github.com/noosenergy/dash-material-components.git"
},
"version": "2.0.6",
"version": "2.0.7",
"engines": {
"node": ">=18"
},
Expand Down Expand Up @@ -78,4 +78,4 @@
"react": "^16.0",
"react-dom": "^16.0"
}
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api"
[tool.poetry]
# Description
name = "dash-material-components"
version = "2.0.6"
version = "2.0.7"
description = "Dash Material Design components for the Noos platform."
# Credentials
license = "MIT"
Expand Down
23 changes: 20 additions & 3 deletions src/components/display/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const Table = ({
id = 'table',
columns,
rows: initialRows,
rowsPerPageOptions = [10, 25, 50]
rowsPerPageOptions = [10, 25, 50],
tableStyle = {}
}: TableProps) => {
const [rows, setRows] = useState(initialRows);
const [page, setPage] = useState(0);
Expand All @@ -29,8 +30,22 @@ const Table = ({
};

return (
<Box id={id}>
<TableContainer sx={{height: '100%'}}>
<Box
id={id}
sx={{
display: 'flex',
flexDirection: 'column',
height: '100%',
overflow: 'hidden'
}}
>
<TableContainer
sx={{
flexGrow: 1,
overflowX: 'auto',
...tableStyle
}}
>
<MuiTable stickyHeader size="small" aria-label="data table">
<TableHead columns={columns} />
<TableBody rows={rows} page={page} rowsPerPage={rowsPerPage} />
Expand Down Expand Up @@ -61,6 +76,8 @@ type TableProps = {
rows: TableRowData[];
/** Table pagination setting */
rowsPerPageOptions?: Array<number>;
/** Custom sx styles for TableContainer - https://mui.com/system/getting-started/the-sx-prop/ */
tableStyle?: object;
} & DashComponentProps;

export default Table;
6 changes: 4 additions & 2 deletions src/components/layout/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Tab = ({id = 'tab', children, tabs}: TabProps) => {

return (
<Grid id={id} container direction="column" css={tabLayoutStyle} spacing={2}>
<Grid item style={{height: 'auto'}}>
<Grid item>
<Tabs
value={selectedTab}
onChange={handleTabChange}
Expand All @@ -50,7 +50,9 @@ const Tab = ({id = 'tab', children, tabs}: TabProps) => {
{tabElements}
</Tabs>
</Grid>
<Grid item>{tabpanelElements}</Grid>
<Grid item style={{flexGrow: 1}}>
{tabpanelElements}
</Grid>
</Grid>
);
};
Expand Down
21 changes: 8 additions & 13 deletions src/fragments/TabPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
import React from 'react';
import {DashComponentProps} from 'props';
import {css} from '@emotion/react';

const tabpanelLayoutStyle = css`
height: 100%;
`;

const tabpanelContentLayoutStyle = css`
height: 100%;
`;
import {Box} from '@mui/material';

/**
* TabPanel component
*/
const TabPanel = ({children, value, index}: TabPanelProps) => {
return (
<div
<Box
role="tabpanel"
hidden={value !== index}
id={`tabpanel-${index}`}
aria-labelledby={`card-tabpanel-${index}`}
css={tabpanelLayoutStyle}
height={'100%'}
>
{value === index && <div css={tabpanelContentLayoutStyle}>{children}</div>}
</div>
{value === index && <Box height={'100%'}>{children}</Box>}
</Box>
);
};

Expand Down