All files / pages AdminJobsPage.js

100% Statements 32/32
100% Branches 0/0
100% Functions 11/11
100% Lines 28/28

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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156                            1x 16x   16x           16x         16x 1x 1x               16x                         16x           16x             16x 1x 1x         16x           16x             16x 1x 1x         16x         16x 1x       16x             16x 1x 1x     16x                                             16x         80x                            
import React from "react";
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
import JobsTable from "main/components/Jobs/JobsTable";
import { useBackend } from "main/utils/useBackend";
import Accordion from "react-bootstrap/Accordion";
import TestJobForm from "main/components/Jobs/TestJobForm";
import UpdateCowHealthForm from "main/components/Jobs/UpdateCowHealthForm";
import MilkCowsJobForm from "main/components/Jobs/MilkCowsJobForm";
import InstructorReportForm from "main/components/Jobs/InstructorReportForm";
import { toast } from "react-toastify";
 
import { useBackendMutation } from "main/utils/useBackend";
import SetCowHealthForm from "main/components/Jobs/SetCowHealthForm";
 
const AdminJobsPage = () => {
  const refreshJobsIntervalMilliseconds = 5000;
 
  const objectToAxiosParamsTestJob = (data) => ({
    url: `/api/jobs/launch/testjob?fail=${data.fail}&sleepMs=${data.sleepMs}`,
    method: "POST",
  });
 
  // Stryker disable all
  const testJobMutation = useBackendMutation(objectToAxiosParamsTestJob, {}, [
    "/api/jobs/all",
  ]);
  // Stryker restore all
 
  const submitTestJob = async (data) => {
    toast("Submitted job: Test Job");
    testJobMutation.mutate(data);
  };
 
  // Stryker disable all
  const {
    data: jobs,
    error: _error,
    status: _status,
  } = useBackend(
    ["/api/jobs/all"],
    {
      method: "GET",
      url: "/api/jobs/all",
    },
    [],
    { refetchInterval: refreshJobsIntervalMilliseconds }
  );
  // Stryker restore  all
 
  // SetCowHealth job
 
  const objectToAxiosParamsSetCowHealthJob = (data) => ({
    url: `/api/jobs/launch/setcowhealth?commonsID=${data.selectedCommons}&health=${data.healthValue}`,
    method: "POST",
  });
 
  // Stryker disable all
  const SetCowHealthMutation = useBackendMutation(
    objectToAxiosParamsSetCowHealthJob,
    {},
    ["/api/jobs/all"]
  );
  // Stryker restore all
 
  const submitSetCowHealthJob = async (data) => {
    toast(`Submitted Job: Set Cow Health (Commons: ${data.selectedCommonsName}, Health: ${data.healthValue})`);
    SetCowHealthMutation.mutate(data);
  };
 
  // UpdateCowHealth job
 
  const objectToAxiosParamsUpdateCowHealthJob = () => ({
    url: `/api/jobs/launch/updatecowhealth`,
    method: "POST",
  });
 
  // Stryker disable all
  const UpdateCowHealthMutation = useBackendMutation(
    objectToAxiosParamsUpdateCowHealthJob,
    {},
    ["/api/jobs/all"]
  );
  // Stryker restore all
 
  const submitUpdateCowHealthJob = async () => {
    toast("Submitted Job: Update Cow Health");
    UpdateCowHealthMutation.mutate();
  };
 
  // MilkTheCows job
 
  const objectToAxiosParamsMilkTheCowsJob = () => ({
    url: `/api/jobs/launch/milkthecowjob`,
    method: "POST",
  });
  
  const submitInstuctorReportJob = async () => {
    toast('Instructor report not yet implemented; coming soon');
  }
 
  // Stryker disable all
  const MilkTheCowsMutation = useBackendMutation(
    objectToAxiosParamsMilkTheCowsJob,
    {},
    ["/api/jobs/all"]
  );
  // Stryker restore all
 
  const submitMilkTheCowsJob = async () => {
    toast("Submitted Job: Milk The Cows");
    MilkTheCowsMutation.mutate();
  };
 
  const jobLaunchers = [
    {
      name: "Test Job",
      form: <TestJobForm submitAction={submitTestJob} />,
    },
    {
      name: "Set Cow Health for a Specific Commons",
      form: <SetCowHealthForm submitAction={submitSetCowHealthJob} />,
    },
    {
      name: "Update Cow Health",
      form: <UpdateCowHealthForm submitAction={submitUpdateCowHealthJob} />,
    },
    {
      name: "Milk The Cows",
      form: <MilkCowsJobForm submitAction={submitMilkTheCowsJob} />,
    },
    {
      name: "Instructor Report",
      form: <InstructorReportForm submitAction={submitInstuctorReportJob} />
    },
  ];
 
  return (
    <BasicLayout>
      <h2 className="p-3">Launch Jobs</h2>
      <Accordion>
        {jobLaunchers.map((jobLauncher, index) => (
          <Accordion.Item eventKey={index} key={index}>
            <Accordion.Header>{jobLauncher.name}</Accordion.Header>
            <Accordion.Body>{jobLauncher.form}</Accordion.Body>
          </Accordion.Item>
        ))}
      </Accordion>
 
      <h2 className="p-3">Job Status</h2>
      <JobsTable jobs={jobs} />
    </BasicLayout>
  );
};
 
export default AdminJobsPage;