Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 4x 4x | /** Shared constants for the Review Statistics pages. */
/** Period options accepted by the best/worst items endpoints. */
export const PERIOD_OPTIONS = [
{ value: "ALL", label: "All time" },
{ value: "6M", label: "Last 6 months" },
{ value: "1M", label: "Last month" },
{ value: "1W", label: "Last week" },
];
/** Cards displayed on the statistics overview page. */
export const STATISTICS_PAGES = [
{
title: "Best Rated Items",
description:
"See the highest rated menu items overall and in recent time windows.",
to: "/statistics/items/best",
testid: "StatisticsIndexPage-best-items",
comingSoon: false,
},
{
title: "Worst Rated Items",
description:
"See the lowest rated menu items overall and in recent time windows.",
to: "/statistics/items/worst",
testid: "StatisticsIndexPage-worst-items",
comingSoon: false,
},
{
title: "Dining Commons Averages",
description: "Average review score for each dining commons.",
to: "/statistics/commons/averages",
testid: "StatisticsIndexPage-commons-averages",
comingSoon: false,
},
{
title: "Dining Commons Averages Over Time",
description: "Average review score for each dining commons by month.",
to: "/statistics/commons/overtime",
testid: "StatisticsIndexPage-commons-overtime",
comingSoon: false,
},
{
title: "Meal Averages by Dining Commons",
description: "Average review score for each meal at a dining commons.",
to: "/statistics/commons/meals",
testid: "StatisticsIndexPage-commons-meals",
comingSoon: false,
},
];
|