diff --git a/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/index.tsx b/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/index.tsx index 2c7c6aaa..f944530a 100644 --- a/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/index.tsx +++ b/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/index.tsx @@ -8,6 +8,7 @@ import { } from "@site/src/components/conformance/types"; import Heading from "@theme/Heading"; import styles from "./styles.module.css"; +import clsx from "clsx"; type TestsGridProps = { state: ConformanceState; @@ -16,19 +17,23 @@ type TestsGridProps = { }; export default function TestsGrid(props: TestsGridProps): JSX.Element { + const [hoverName, setHoverName] = React.useState() const cardBodyClass = "card__body " + styles.gridStyle; + const title = hoverName ? "Test: " + hoverName : "Suite: " + props.suite.name; + return (
-
- {props.suite.name} +
+ {title}
setHoverName(name)} />
@@ -39,7 +44,8 @@ export default function TestsGrid(props: TestsGridProps): JSX.Element { type GridProps = { tests: TestResult[]; esFlag: string | null; - selectTest: (string) => void; + selectTest: (test: string) => void; + setHoverValue: (test: string | undefined) => void; }; function Grid(props: GridProps): JSX.Element { @@ -54,6 +60,7 @@ function Grid(props: GridProps): JSX.Element { key={test.strict ? test.name + "-strict" : test.name} test={test} selectTest={props.selectTest} + setHoverValue={props.setHoverValue} /> ); }) @@ -63,6 +70,7 @@ function Grid(props: GridProps): JSX.Element { key={test.strict ? test.name + "-strict" : test.name} test={test} selectTest={props.selectTest} + setHoverValue={props.setHoverValue} /> ); })} @@ -72,7 +80,8 @@ function Grid(props: GridProps): JSX.Element { type GridItemProps = { test: TestResult; - selectTest: (string) => void; + selectTest: (test: string) => void; + setHoverValue: (test: string | undefined) => void; }; function GridItem(props: GridItemProps): JSX.Element { @@ -93,6 +102,9 @@ function GridItem(props: GridItemProps): JSX.Element {
props.selectTest(props.test.name + ".js")} + onMouseEnter={(_e)=>props.setHoverValue(props.test.name + ".js")} + onMouseLeave={(_e)=>props.setHoverValue(undefined)} + aria-label={props.test.name} title={ props.test.strict ? "(strict) " + props.test.name + ".js" diff --git a/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/styles.module.css b/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/styles.module.css index 478e3893..841086aa 100644 --- a/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/styles.module.css +++ b/src/components/conformance/ResultsDisplay/components/SuiteDataContainer/cards/TestGrid/styles.module.css @@ -4,6 +4,10 @@ padding: 0.75rem; } +.testGridHeader { + height: 3.5rem; +} + @media screen and (max-width: 996px) { .testGridCard { margin: 0.25rem auto; @@ -11,6 +15,11 @@ height: 75vh; width: 90vw; } + + .testGridHeader { + height: 4.25rem; + overflow: hidden; + } } .gridStyle {