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

Table fix #147

Merged
merged 8 commits into from
Jan 16, 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
Original file line number Diff line number Diff line change
Expand Up @@ -475,10 +475,12 @@ const ClinicalEntityDataTable = ({
.sort(sortEntityData);
}

const styleThickBorderString = `3px solid ${theme.colors.grey}`;
const getHeaderBorder = (key) =>
(showCompletionStats && key === completionColumnHeaders.followUps) ||
(!showCompletionStats && key === 'donor_id')
? `3px solid ${theme.colors.grey}`
(!showCompletionStats && key === 'donor_id') ||
key === 'FO'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's FO in this context? may be useful to abstract this into a declaratively named constant, to facilitate reading.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's logic like this all over this file.

? styleThickBorderString
: '';

const [stickyDonorIDColumnsWidth, setStickyDonorIDColumnsWidth] = useState(74);
Expand Down Expand Up @@ -636,71 +638,160 @@ const ClinicalEntityDataTable = ({
borderBottom: `1px solid ${theme.colors.grey_2}`,
};

const headerStyle = css`
background-color: ${theme.colors.grey_4};
border-bottom: 1px solid ${theme.colors.grey_2};
border-right: 1px solid ${theme.colors.grey_2};
font-size: 13px;
padding: 5px;
text-align: left;
`;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While I know it's a contentious point in the community, often labelled as "nit picking", I truly believe alphabetising properties does help preventing duplicates... which in CSS may introduce bugs that can be rather hard to find at times, because of how the order matters (keyword "cascading").

In this tiny list it may seem superfluous, but we should do it everywhere to elicit consistency, right?
broken windows, etc.


const stickyCSS = css`
background-color: white;
left: 0;
position: sticky !important;
top: 0;
z-index: 1;
`;

columns = [
{
id: 'clinical_core_completion_header',
header: (
<div
css={css`
display: flex;
align-items: center;
justify-content: center;
position: relative;
`}
>
CLINICAL CORE COMPLETION
<Tooltip
style={{ position: 'absolute', left: 'calc(100% - 20px)', top: '-2px' }}
html={
<p
css={css`
margin: 0px;
margin-right: 6px;
`}
>
For clinical completeness, each donor requires: <br />
DO: at least one Donor record <br />
PD: at least one Primary Diagnosis record <br />
NS: all the registered Normal DNA Specimen record <br />
TS: all the registered Tumour DNA Specimen record <br />
TR: at least one Treatment record <br />
FO: at least one Follow Up record <br />
</p>
}
meta: { customHeader: true },
sortingFn: sortEntityData,
header: (props) => {
return (
<th
colSpan={props.colSpan}
css={css`
${headerStyle};
border-right: 3px solid ${theme.colors.grey};
`}
>
<Icon name="question_circle" fill="primary_2" width="18px" height="18px" />
</Tooltip>
</div>
),
<div
css={css`
display: flex;
align-items: center;
justify-content: center;
position: relative;
`}
>
CLINICAL CORE COMPLETION
<Tooltip
style={{ position: 'absolute', left: 'calc(100% - 20px)', top: '-2px' }}
html={
<p
css={css`
margin: 0px;
margin-right: 6px;
`}
>
For clinical completeness, each donor requires: <br />
DO: at least one Donor record <br />
PD: at least one Primary Diagnosis record <br />
NS: all the registered Normal DNA Specimen record <br />
TS: all the registered Tumour DNA Specimen record <br />
TR: at least one Treatment record <br />
FO: at least one Follow Up record <br />
Copy link
Member

@justincorrigible justincorrigible Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not a request for change, because I know this is an established pattern and not something just from this PR

just a thought I had, on how we could do these non-dev business-domain things better for new hires who won't have the background or context (and me, inexcusably).
🤔 this dictionary right here is what I wish we do with VS' intellisense, that if you hover over a constant (like the one I suggested here), it also gives you a description of what it means, apart from its string value.
wonder if there's a plugin to do that sort of thing.

Copy link
Member

@justincorrigible justincorrigible Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update:
ahh JSDoc to the rescue! no plugin needed 👍
image

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice!

</p>
}
>
<Icon name="question_circle" fill="primary_2" width="18px" height="18px" />
</Tooltip>
</div>
</th>
);
},
headerStyle: completionHeaderStyle,
columns: columns.slice(0, 7).map((column) => ({
columns: columns.slice(0, 7).map((column, index) => ({
...column,
sortingFn: sortEntityData,
header: (props) => {
const value = props.header.id;
const coreCompletionColumnsCount = 7;
const isLastElement = index === coreCompletionColumnsCount - 1;
const isSticky = value === 'donor_id';
const isSorted = props.sorted;

return (
<th
onClick={props.getSortingHandler()}
css={css`
padding: 2px 6px;
font-size: 12px;
:hover {
cursor: pointer;
}
border-bottom: 1px solid ${theme.colors.grey_2};
border-right: ${isLastElement
? styleThickBorderString
: `1px solid ${theme.colors.grey_2}`};
${isSticky && stickyCSS}
${isSorted &&
`box-shadow: inset 0 ${isSorted === 'asc' ? '' : '-'}3px 0 0 rgb(7 116 211)`};
`}
>
{value}
</th>
);
},
maxWidth: noTableData ? 50 : 250,
style: noTableData ? noDataCellStyle : {},
meta: { customCell: true, customHeader: true },
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool! hadn't seen this property in the react-table docs. or is it a uikit thing perhaps?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

more a uikit thing. otherwise the cell and header render functions get wrapped in specific components like <TableCell> and <TableHeaderWrapper>. This becomes problematic when you can't override styling they provide. For example padding on parent. You can hack around it but I opened a PR with that way of doing things and we decided as team to go the bigger more correct fix.

cell: (context) => {
const value = context.getValue();
const isSticky = context.column.id === 'donor_id';

const { isCompletionCell, errorState } = getCellStyles(
const { isCompletionCell, errorState, style } = getCellStyles(
undefined,
context.row,
context.column,
);

const showSuccessSvg = isCompletionCell && !errorState;

return showSuccessSvg ? (
const content = showSuccessSvg ? (
<Icon name="checkmark" fill="accent1_dimmed" width="12px" height="12px" />
) : (
value
);

return (
<td
css={css`
border-right: 1px solid ${theme.colors.grey_2};
${isSticky && stickyCSS}
`}
style={{
...style,
}}
>
<div
css={css`
font-size: 12px;
padding: 2px 8px;
min-width: 40px;
height: 28px;
`}
>
{content}
</div>
</td>
);
},
})),
},
{
id: 'submitted_donor_data_header',
header: <div>SUBMITTED DONOR DATA</div>,
meta: { customHeader: true },
header: (props) => (
<th colSpan={props.colSpan} css={headerStyle}>
<div>SUBMITTED DONOR DATA</div>
</th>
),
headerStyle: dataHeaderStyle,
columns: columns.slice(7).map((column, i) => column),
columns: columns.slice(7),
},
];
}
Expand Down Expand Up @@ -757,6 +848,7 @@ const ClinicalEntityDataTable = ({
/>
</div>
)}

<TableInfoHeaderContainer
left={
<Typography
Expand All @@ -776,6 +868,9 @@ const ClinicalEntityDataTable = ({
withSideBorders
withPagination
showPageSizeOptions
withStripes
enableColumnResizing={false}
enableSorting
Copy link
Member

@justincorrigible justincorrigible Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in contrast, as follow up to my earlier "alphabetise all the things" comment, TS does a much better job at identifying and pointing out duplicate React props, so I don't care as much here.

...I'd only advocate for it here for consistency and "coding discipline", and I realise other devs don't feel as strongly about that as I do.

/>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ import useUrlParamState from '@/app/hooks/useUrlParamState';
import { notNull } from '@/global/utils';
import { css } from '@/lib/emotion';
import { useQuery } from '@apollo/client';
import { useTheme } from '@emotion/react';
import { Loader, Typography, VerticalTabs } from '@icgc-argo/uikit';
import { Loader, Typography, VerticalTabs, useTheme } from '@icgc-argo/uikit';
import { useState } from 'react';
import { setConfiguration } from 'react-grid-system';
import ClinicalEntityDataTable from './ClinicalEntityDataTable';
Expand Down