Skip to content

Commit

Permalink
feat(DataTable): implement TanStack Table
Browse files Browse the repository at this point in the history
- use tanstack as basis for table implementation
- add in relevant stories for styles
  • Loading branch information
booc0mtaco committed Sep 5, 2024
1 parent 4f6ed48 commit 32df692
Show file tree
Hide file tree
Showing 6 changed files with 874 additions and 498 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"dependencies": {
"@headlessui/react": "^1.7.19",
"@popperjs/core": "^2.11.8",
"@tanstack/react-table": "^8.20.5",
"@tippyjs/react": "^4.2.6",
"chalk": "^4.1.2",
"clsx": "^2.1.1",
Expand Down
74 changes: 73 additions & 1 deletion src/components/DataTable/DataTable.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* DataTable
*/


/* Visible table caption */
.data-table__caption-container {
display: flex;
Expand Down Expand Up @@ -37,7 +38,6 @@
}

.data-table__table {
border: 1px solid;
width: 100%;

.data-table__caption + &,
Expand All @@ -50,11 +50,67 @@
width: calc(var(--eds-size-34) / 16 * 1rem);
}

.data-table--tableStyle-border {
/* TODO-AH: token for 1px */
border: 1px solid;
}

.data-table__header-cell {
font: var(--eds-theme-typography-title-md);
text-align: left;

.data-table--size-sm & {
padding: calc(var(--eds-size-half) / 16 * 1rem) calc(var(--eds-size-1) / 16 * 1rem);
}

.data-table--size-md &{
padding: calc(var(--eds-size-2) / 16 * 1rem);
}
}

.data-table__cell {
font: var(--eds-theme-typography-body-md);

.data-table--size-sm & {
padding: calc(var(--eds-size-half) / 16 * 1rem) calc(var(--eds-size-1) / 16 * 1rem);
}

.data-table--size-md &{
padding: calc(var(--eds-size-2) / 16 * 1rem);
}
}

.data-table__row {
.data-table--rowStyle-lined & {
border-bottom: 1px solid;
}

.data-table--rowStyle-striped &:nth-child(even) {
background-color: var(--eds-theme-color-background-table-row-stripe-2);
}

.data-table--rowStyle-striped &:nth-child(odd) {
background-color: var(--eds-theme-color-background-table-row-stripe-1);
}
}

.data-table__header-row {
border-bottom: 1px solid;
/* TODO-AH: figure out positioning styles for sticky headers/columns */
position: sticky;
top: 0;
}

/**
* Color Tokens
*/
.data-table {
display: block;
position: relative;

.data-table__table {
background-color: var(--eds-theme-color-background-utility-base-1);
}

.data-table__caption {
color: var(--eds-theme-color-text-utility-default-primary);
Expand All @@ -63,4 +119,20 @@
.data-table__subcaption {
color: var(--eds-theme-color-text-utility-default-secondary);
}

.data-table--tableStyle-border, .data-table__header-row {
border-color: var(--eds-theme-color-border-utility-default-low-emphasis);
}

.data-table__header-cell {
color: var(--eds-theme-color-text-utility-default-primary);
}

.data-table__cell {
color: var(--eds-theme-color-text-utility-default-primary);
}

.data-table--rowStyle-lined {
color: var(--eds-theme-color-border-utility-default-low-emphasis);
}
}
Loading

0 comments on commit 32df692

Please sign in to comment.