) : null}
diff --git a/src/components/conformance/ResultsDisplay/components/SuiteSelector/index.tsx b/src/components/conformance/ResultsDisplay/components/SuiteSelector/index.tsx
index b3a44f28..69ce5417 100644
--- a/src/components/conformance/ResultsDisplay/components/SuiteSelector/index.tsx
+++ b/src/components/conformance/ResultsDisplay/components/SuiteSelector/index.tsx
@@ -1,22 +1,31 @@
import React from "react";
-import { SuiteResult, TestStats } from "@site/src/components/conformance/types";
+import {
+ ConformanceState,
+ SortOption,
+ SuiteResult,
+ TestStats,
+} from "@site/src/components/conformance/types";
import styles from "./styles.module.css";
+import { availableSortingOptions } from "../../../utils";
type SelectorProps = {
+ state: ConformanceState;
suites: SuiteResult[];
- esFlag: string | null;
navigateToSuite: (string) => void;
};
export default function SuiteSelector(props: SelectorProps): JSX.Element {
+ const option: SortOption[] = availableSortingOptions.filter(
+ (v) => v.id === props.state.sortOption,
+ );
return (
{props.suites
- .sort((a, b) => a.name.localeCompare(b.name))
+ .sort(option[0].callback)
.filter((suite) => {
const stats: TestStats =
- suite.versionedStats[props.esFlag] ?? suite.stats;
+ suite.versionedStats[props.state.ecmaScriptVersion] ?? suite.stats;
return stats.total !== 0;
})
.map((suite) => {
@@ -24,7 +33,7 @@ export default function SuiteSelector(props: SelectorProps): JSX.Element {
);
diff --git a/src/components/conformance/ResultsDisplay/index.tsx b/src/components/conformance/ResultsDisplay/index.tsx
index 45a3b1e2..b8c9ebe9 100644
--- a/src/components/conformance/ResultsDisplay/index.tsx
+++ b/src/components/conformance/ResultsDisplay/index.tsx
@@ -5,6 +5,7 @@ import {
VersionItem,
SuiteResult,
ConformanceState,
+ SortOption,
} from "@site/src/components/conformance/types";
import ResultNavigation from "./nav";
import {
@@ -89,6 +90,7 @@ export default function ResultsDisplay(props: ResultsProps): JSX.Element {
props.state.version,
newPath,
props.state.ecmaScriptVersion,
+ props.state.sortOption,
),
});
};
@@ -104,6 +106,7 @@ export default function ResultsDisplay(props: ResultsProps): JSX.Element {
props.state.version,
slicedPath,
props.state.ecmaScriptVersion,
+ props.state.sortOption,
),
});
};
@@ -113,7 +116,25 @@ export default function ResultsDisplay(props: ResultsProps): JSX.Element {
const nulledFlag = flag ? flag : undefined;
history.push({
pathname: "/conformance",
- state: createState(props.state.version, props.state.testPath, nulledFlag),
+ state: createState(
+ props.state.version,
+ props.state.testPath,
+ nulledFlag,
+ props.state.sortOption,
+ ),
+ });
+ };
+
+ // Sets the sorting option
+ const setSortOption = (option: string) => {
+ history.push({
+ pathname: "/conformance",
+ state: createState(
+ props.state.version,
+ props.state.testPath,
+ props.state.ecmaScriptVersion,
+ option,
+ ),
});
};
@@ -125,6 +146,7 @@ export default function ResultsDisplay(props: ResultsProps): JSX.Element {
props.state.version,
props.state.testPath,
props.state.ecmaScriptVersion,
+ props.state.sortOption,
test,
),
});
@@ -146,6 +168,7 @@ export default function ResultsDisplay(props: ResultsProps): JSX.Element {
state={props.state}
sliceNavToIndex={sliceNavToIndex}
setEcmaScriptFlag={setEcmaScriptFlag}
+ setSortOption={setSortOption}
/>
{currentSuite ? (
void;
setEcmaScriptFlag: (string) => void;
+ setSortOption: (string) => void;
};
export default function ResultNavigation(props: ResultsNavProps): JSX.Element {
return (
);
}
@@ -32,11 +42,11 @@ type BreadCrumbProps = {
function NavBreadCrumbs(props: BreadCrumbProps) {
return (
-
);
}
+
+type SortProps = {
+ sortValue: string;
+ setSortOption: (string) => void;
+};
+
+function SortingDropdown(props: SortProps): JSX.Element {
+ const [sortValue, setSortValue] = React.useState