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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | 4x 45x 45x 45x 45x 45x 45x 45x 45x 45x 26x 45x 26x 45x 26x 13x 13x 45x 32x 30x 18x 15x 15x 3x 1x 30x 1x 1x 1x 1x 1x 1x 1x 1x 30x 1x | import { useEffect, useMemo, useState } from "react"; import { Navigate } from "react-router"; import { StateCode } from "shared-types"; import { userRoleMap } from "shared-utils"; import { useGetUserDetails, useGetUserProfile, useSubmitRoleRequests } from "@/api"; import { banner, Button, CardWithTopBorder, ConfirmationDialog, GroupAndDivision, LoadingSpinner, StateAccessCard, SubNavHeader, UserInformation, } from "@/components"; import { Option } from "@/components/Opensearch/main/Filtering/Drawer/Filterable"; import { FilterableSelect } from "@/components/Opensearch/main/Filtering/Drawer/Filterable"; import { useAvailableStates } from "@/hooks/useAvailableStates"; import { convertStateAbbrToFullName } from "@/utils"; import { filterStateAccess, hasPendingRequests, orderStateAccess, stateAccessRoles, } from "../utils"; export const MyProfile = () => { const { data: userDetails, isLoading: isDetailLoading } = useGetUserDetails(); const { data: userProfile, isLoading: isProfileLoading, refetch: reloadUserProfile, } = useGetUserProfile(); const { mutateAsync: submitRequest, isLoading: areRolesLoading } = useSubmitRoleRequests(); const [selfRevokeState, setSelfRevokeState] = useState<StateCode | null>(null); const [showAddState, setShowAddState] = useState<boolean>(true); const [requestedStates, setRequestedStates] = useState<StateCode[]>([]); const [pendingRequests, setPendingRequests] = useState<boolean>(false); const statesToRequest: Option[] = useAvailableStates(userDetails?.role, userProfile?.stateAccess); const filteredStateAccess = useMemo( () => filterStateAccess(userDetails, userProfile), [userDetails, userProfile], ); const orderedStateAccess = useMemo( () => orderStateAccess(filteredStateAccess), [filteredStateAccess], ); // Set initial value of showAddState based on pending roles useEffect(() => { if (!isDetailLoading && !isProfileLoading) { const pendingRequests = hasPendingRequests(userProfile?.stateAccess); setPendingRequests(pendingRequests); } }, [isDetailLoading, isProfileLoading, filteredStateAccess, userProfile]); if (isDetailLoading || isProfileLoading) { return <LoadingSpinner />; } if (!isDetailLoading && !userDetails?.id) { return <Navigate to="/" />; } const StateAccessControls = () => { if (userDetails.role !== "statesubmitter") return null; Iif (pendingRequests) { return <p>State Access Requests Disabled until Role Request is finalized.</p>; } if (showAddState) { return <Button onClick={() => setShowAddState(false)}>Add State</Button>; } return ( <CardWithTopBorder> <div className="p-8 min-h-36"> <h3 className="text-xl font-bold">Choose State Access</h3> <FilterableSelect value={requestedStates} options={statesToRequest} onChange={(values: StateCode[]) => setRequestedStates(values)} selectedDisplay="label" /> <div className="block lg:mt-8 lg:mb-2"> <span> <Button disabled={!(requestedStates && requestedStates.length)} onClick={handleSubmitRequest} > Submit </Button> {areRolesLoading && <LoadingSpinner />} <Button variant="link" onClick={() => setShowAddState(true)}> Cancel </Button> </span> </div> </div> </CardWithTopBorder> ); }; const handleSubmitRequest = async () => { try { for (const state of requestedStates) { await submitRequest({ email: userDetails.email, state, role: userDetails.role, eventType: "user-role", requestRoleChange: true, }); } setShowAddState(true); setRequestedStates([]); await reloadUserProfile(); banner({ header: "Submission Completed", body: "Your submission has been received.", variant: "success", pathnameToDisplayOn: window.location.pathname, }); window.scrollTo(0, 0); } catch (error) { banner({ header: "An unexpected error has occurred:", body: error instanceof Error ? error.message : String(error), variant: "destructive", pathnameToDisplayOn: window.location.pathname, }); window.scrollTo(0, 0); } }; const handleSelfRevokeAccess = async () => { try { await submitRequest({ email: userDetails.email, state: selfRevokeState, role: userDetails.role, eventType: "user-role", requestRoleChange: false, grantAccess: "revoked", }); setSelfRevokeState(null); await reloadUserProfile(); banner({ header: "Submission Completed", body: "Your submission has been received.", variant: "success", pathnameToDisplayOn: window.location.pathname, }); window.scrollTo(0, 0); } catch (error) { banner({ header: "An unexpected error has occurred:", body: error instanceof Error ? error.message : String(error), variant: "destructive", pathnameToDisplayOn: window.location.pathname, }); window.scrollTo(0, 0); } }; return ( <> <SubNavHeader> <h1 className="text-xl font-medium">My Profile</h1> </SubNavHeader> <section className="block max-w-screen-xl m-auto px-4 lg:px-8 py-8 gap-10"> <div className="flex flex-col md:flex-row"> <UserInformation fullName={userDetails?.fullName} role={userRoleMap[userDetails?.role]} email={userDetails?.email} /> <div className="flex flex-col gap-6 md:basis-1/2"> {/* Status/State Access Management Section */} {stateAccessRoles.includes(userDetails?.role) && ( <div> <h2 className="text-2xl font-bold"> {userDetails.role === "statesubmitter" || userDetails.role === "statesystemadmin" ? "State Access Management" : "Status"} </h2> {/* TODO: Get state system admin for that state */} <ConfirmationDialog open={selfRevokeState !== null} title="Withdraw State Access?" body={`This action cannot be undone. ${convertStateAbbrToFullName(selfRevokeState)} State System Admin will be notified.`} acceptButtonText="Confirm" aria-labelledby="Self Revoke Access Modal" onAccept={handleSelfRevokeAccess} onCancel={() => setSelfRevokeState(null)} /> {orderedStateAccess?.map((access) => ( <StateAccessCard key={`${access.territory}`} access={access} role={userDetails.role} onClick={() => setSelfRevokeState(access.territory as StateCode)} /> ))} <StateAccessControls /> </div> )} {userDetails.role === "cmsroleapprover" && ( <GroupAndDivision group={userDetails.group} division={userDetails.division} role={userDetails.role} /> )} </div> </div> </section> </> ); }; |