All files / pages HomePage.jsx

100% Statements 4/4
100% Branches 0/0
100% Functions 3/3
100% Lines 4/4

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            15x               15x 6x                               2x                  
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
import { useBackend } from "main/utils/useBackend";
import DiningCommonsTable from "main/components/DiningCommons/DiningCommonsTable";
import { useState } from "react";
 
export default function HomePage() {
  const { data } = useBackend(
    // Stryker disable next-line all : don't test internal caching of React Query
    ["/api/dining/all"],
    { method: "GET", url: "/api/dining/all" },
    [],
  );
 
  // Default to today's date
  const [date, setDate] = useState(
    () => new Date().toISOString().split("T")[0],
  );
 
  return (
    <BasicLayout>
      <h1>Dining Commons</h1>
 
      {/* Date Selector */}
      <div style={{ marginBottom: "1rem" }}>
        <label htmlFor="datePicker" style={{ marginRight: "0.5rem" }}>
          Select Date:
        </label>
        <input
          id="datePicker"
          type="date"
          value={date}
          onChange={(e) => setDate(e.target.value)}
        />
      </div>
 
      {/* Dining Commons table with selected date */}
      <DiningCommonsTable commons={data} date={date} />
    </BasicLayout>
  );
}