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 157 158 159 160 161 162 163 164 165 166 | 1x 1x 1x 1x 1x 1x 1x 1x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 1x 1x 1x 1x 1x 1x 1x 1x 1x 43x 1x 1x 1x 1x 1x 43x 43x 43x 43x 43x 1x 1x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 43x 55x 55x 55x 35x 55x 20x 20x 1x 20x 1x 1x 18x 18x 43x 43x 43x 43x | import { toast } from "react-toastify"; import { useBackend, useBackendMutation } from "main/utils/useBackend"; import React, { useState } from "react"; import { Button, Col, Form, ModalBody, ModalHeader, Row, OverlayTrigger, Tooltip, } from "react-bootstrap"; import CourseStaffForm from "main/components/CourseStaff/CourseStaffForm"; import CourseStaffTable from "main/components/CourseStaff/CourseStaffTable"; import Modal from "react-bootstrap/Modal"; export default function StaffTabComponent({ courseId, testIdPrefix, currentUser, }) { const [postModal, showPostModal] = useState(false); const { data: courseStaff } = useBackend( [`/api/coursestaff/course?courseId=${courseId}`], // Stryker disable next-line StringLiteral : GET and empty string are equivalent { method: "GET", url: `/api/coursestaff/course?courseId=${courseId}` }, [], true, ); const [searchTerm, setSearchTerm] = useState(""); const objectToAxiosParamsPost = (staff) => ({ url: `/api/coursestaff/post`, method: "POST", params: { courseId: courseId, firstName: staff.firstName, lastName: staff.lastName, email: staff.email, }, }); const onSuccessStaff = (modalFn) => { toast("Staff roster successfully updated."); // Clear the search filter to show the updated roster setSearchTerm(""); modalFn(false); }; const staffPostMutation = useBackendMutation( objectToAxiosParamsPost, { onSuccess: () => onSuccessStaff(showPostModal) }, [`/api/coursestaff/course?courseId=${courseId}`], ); const handlePostSubmit = (staff) => { staffPostMutation.mutate(staff); }; // Render tooltip for disabled buttons const renderComingSoonTooltip = (props) => ( <Tooltip id="coming-soon-tooltip" {...props}> Coming Soon </Tooltip> ); return ( <div data-testid={`${testIdPrefix}-StaffTabComponent`}> <Modal show={postModal} onHide={() => showPostModal(false)} centered={true} data-testid={`${testIdPrefix}-post-modal`} > <ModalHeader closeButton>Add Staff Member</ModalHeader> <ModalBody> <CourseStaffForm submitAction={handlePostSubmit} cancelDisabled={true} /> </ModalBody> </Modal> <Row sm={3} className="p-2"> <Col> <OverlayTrigger placement="top" overlay={renderComingSoonTooltip}> <span className="d-inline-block w-100"> <Button data-testid={`${testIdPrefix}-csv-button`} className="w-100 button btn-secondary disabled" disabled style={{ pointerEvents: "none" }} aria-disabled="true" > Upload CSV Roster </Button> </span> </OverlayTrigger> </Col> <Col> <Button onClick={() => showPostModal(true)} data-testid={`${testIdPrefix}-post-button`} className="w-100" > Add Staff Member </Button> </Col> <Col> <OverlayTrigger placement="top" overlay={renderComingSoonTooltip}> <span className="d-inline-block w-100"> <Button className="w-100 button btn-secondary disabled" disabled style={{ pointerEvents: "none" }} aria-disabled="true" > Download Staff CSV </Button> </span> </OverlayTrigger> </Col> </Row> <Row className="mb-1"> <Form> <Form.Group as={Row} controlId="searchFilter"> <Form.Label column sm={2}> Search Staff: </Form.Label> <Col sm={10}> <Form.Control type="text" placeholder="Search by name, email, or Github Login" value={searchTerm} onChange={(e) => setSearchTerm(e.target.value)} data-testid={`${testIdPrefix}-search`} /> </Col> </Form.Group> </Form> </Row> <Row> <CourseStaffTable staff={courseStaff.filter((staffMember) => { const searchTermLower = searchTerm.toLowerCase(); const fullName = `${staffMember.firstName} ${staffMember.lastName}`; if (staffMember.email.toLowerCase().includes(searchTermLower)) { return true; } else if ( staffMember.githubLogin?.toLowerCase().includes(searchTermLower) ) { return true; } else if (fullName.toLowerCase().includes(searchTermLower)) { return true; } return false; })} currentUser={currentUser} courseId={courseId} testIdPrefix={`${testIdPrefix}-CourseStaffTable`} /> </Row> </div> ); } |