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 | 38x 38x 38x 38x 38x 38x 10x 9x 38x 38x 38x 38x 38x 38x 38x | import { useState, useEffect } from "react"
import { Card, Container, Row, Col } from "react-bootstrap";
import { useNavigate } from "react-router-dom";
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
import CommonsList from "main/components/Commons/CommonsList";
import { useBackend, useBackendMutation } from "main/utils/useBackend";
import { useCurrentUser } from "main/utils/currentUser";
import { commonsNotJoined } from "main/utils/commonsUtils";
import getBackgroundImage from "main/components/Utils/HomePageBackground";
import "./HomePage.css"
export default function HomePage({hour=null}) {
// Stryker disable next-line all: it is acceptable to exclude useState calls from mutation testing
const [commonsJoined, setCommonsJoined] = useState([]);
const { data: currentUser } = useCurrentUser();
// Stryker disable all : it is acceptable to exclude useBackend calls from mutation testing
const { data: commons } =
useBackend(
["/api/commons/all"],
{ url: "/api/commons/all" },
[]
);
// Stryker restore all
const objectToAxiosParams = (newCommonsId) => ({
url: "/api/commons/join",
method: "POST",
params: {
commonsId: newCommonsId
}
});
// Stryker disable all : it is acceptable to exclude useBackendMutation calls from mutation testing
const mutation = useBackendMutation(
objectToAxiosParams,
{},
["/api/currentUser"]
);
// Stryker restore all
// Stryker disable all : TODO: restructure this code to avoid the need for this disable
useEffect(
() => {
if (currentUser?.root?.user?.commons) {
setCommonsJoined(currentUser.root.user.commons);
}
}, [currentUser]
);
const firstName = (currentUser?.root?.user?.givenName) || "";
const time = (hour===null) ? new Date().getHours() : hour;
const Background = getBackgroundImage(time);
// Stryker restore all
let navigate = useNavigate();
const visitButtonClick = (id) => { navigate("/play/" + id) };
//create a list of commons that the user hasn't joined for use in the "Join a New Commons" list.
const commonsNotJoinedList = commonsNotJoined(commons, commonsJoined);
return (
<div data-testid={"HomePage-main-div"} style={{ backgroundSize: 'cover', backgroundImage: `url(${Background})` }}>
<BasicLayout>
<Card data-testid= {"HomePage-intro-card"} className= "woodentitle">
<div className= "text-center border-0 my-3">
<h1 data-testid="homePage-title" className="animate-charcter" >Howdy Farmer {firstName}</h1>
</div>
</Card>
<Container>
<Row>
<Col sm><CommonsList commonList={commonsNotJoinedList} title="Join A New Commons" buttonText={"Join"} buttonLink={mutation.mutate} />
</Col>
<Col sm><CommonsList commonList={commonsJoined} title="Visit A Commons" buttonText={"Visit"} buttonLink={visitButtonClick} />
</Col>
</Row>
</Container>
</BasicLayout>
</div>
)
}
|