Skip to content

Commit

Permalink
fix(plugin-chart-table): Revert "fix(chart table in dashboard): impro…
Browse files Browse the repository at this point in the history
…ve screen reading of table (apache#26453)" (apache#26963)
  • Loading branch information
kgabryje authored and sfirke committed Mar 22, 2024
1 parent 3adc999 commit 6da6cb6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* specific language governing permissions and limitations
* under the License.
*/

import React, {
useCallback,
useRef,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ const fixedTableLayout: CSSProperties = { tableLayout: 'fixed' };
/**
* An HOC for generating sticky header and fixed-height scrollable area
*/

function StickyWrap({
sticky = {},
width: maxWidth,
Expand Down Expand Up @@ -216,8 +215,7 @@ function StickyWrap({
let sizerTable: ReactElement | undefined;
let headerTable: ReactElement | undefined;
let footerTable: ReactElement | undefined;
let fullTable: ReactElement | undefined;

let bodyTable: ReactElement | undefined;
if (needSizer) {
const theadWithRef = React.cloneElement(thead, { ref: theadRef });
const tfootWithRef = tfoot && React.cloneElement(tfoot, { ref: tfootRef });
Expand Down Expand Up @@ -255,7 +253,6 @@ function StickyWrap({
style={{
overflow: 'hidden',
}}
aria-hidden="true"
>
{React.cloneElement(
table,
Expand Down Expand Up @@ -293,18 +290,20 @@ function StickyWrap({
scrollFooterRef.current.scrollLeft = e.currentTarget.scrollLeft;
}
};

fullTable = (
bodyTable = (
<div
key="full-table"
key="body"
ref={scrollBodyRef}
style={{
height: bodyHeight,
overflow: 'auto',
}}
onScroll={sticky.hasHorizontalScroll ? onScroll : undefined}
>
{React.cloneElement(
table,
mergeStyleProp(table, fixedTableLayout),
colgroup,
thead,
tbody,
)}
</div>
Expand All @@ -316,11 +315,11 @@ function StickyWrap({
style={{
width: maxWidth,
height: sticky.realHeight || maxHeight,
overflow: 'auto',
padding: '0',
overflow: 'hidden',
}}
>
{fullTable}
{headerTable}
{bodyTable}
{footerTable}
{sizerTable}
</div>
Expand Down
7 changes: 2 additions & 5 deletions superset-frontend/plugins/plugin-chart-table/src/Styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,10 @@ export default styled.div`
td {
min-width: 4.3em;
}
thead > tr > th {
position: sticky;
top: -1px;
padding-right: 0;
z-index: 100;
border-bottom: ${theme.gridUnit / 2}px solid
${theme.colors.grayscale.light2};
position: relative;
background: ${theme.colors.grayscale.light5};
text-align: left;
}
Expand Down

0 comments on commit 6da6cb6

Please sign in to comment.