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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | 4x 50x 50x 50x 50x 50x 50x 50x 50x 50x 50x 50x 28x 28x 50x 28x 13x 50x 28x 13x 41x 40x 1x 39x 41x 13x 50x 28x 14x 14x 50x 36x 34x 21x 18x 18x 3x 1x 34x 1x 1x 1x 1x 1x 1x 1x 1x 34x 1x 1x 1x 1x 1x 1x 34x 2x 2x 34x 34x 1x 34x 34x 2x | import { PlusIcon } from "lucide-react"; 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, RoleStatusCard, 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 { useFeatureFlag } from "@/hooks/useFeatureFlag"; import { filterRoleStatus, getConfirmationModalText, hasPendingRequests, orderRoleStatus, stateAccessRoles, } from "../utils"; export const MyProfile = () => { const { data: userDetails, isLoading: isDetailLoading } = useGetUserDetails(); const { data: userProfile, isLoading: isProfileLoading, refetch: reloadUserProfile, } = useGetUserProfile(); const isNewUserRoleDisplay = useFeatureFlag("SHOW_USER_ROLE_UPDATE"); const { mutateAsync: submitRequest, isLoading: areRolesLoading } = useSubmitRoleRequests(); const [selfRevokeState, setSelfRevokeState] = useState<StateCode | null>(null); const [selfWithdrawPending, setSelfWithdrawPending] = useState<boolean>(false); 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 orderedRoleStatus = useMemo(() => { const filteredRoleStatus = isNewUserRoleDisplay ? userProfile?.stateAccess : filterRoleStatus(userDetails, userProfile); return orderRoleStatus(filteredRoleStatus); }, [userDetails, userProfile, isNewUserRoleDisplay]); const currentRoleObj = useMemo(() => { if (!userProfile || !userProfile.stateAccess) return { group: null, division: null }; return userProfile?.stateAccess.find((x) => x.role === userDetails.role); }, [userProfile, userDetails]); const hideAddRoleButton = useMemo(() => { if (!userProfile || !userProfile.stateAccess) return true; const isCMSWithManyRoles = userProfile?.stateAccess.filter((x) => { if (x.role === "defaultcmsuser" || x.role === "cmsreviewer") return false; if (x.role.includes("cms") || x.role === "systemadmin") return x.status === "active" || x.status === "pending"; return false; }); const isHelpDesk = userProfile?.stateAccess.filter((x) => x.role === "helpdesk").length; return isCMSWithManyRoles.length || isHelpDesk; }, [userProfile]); // Set initial value of showAddState based on pending roles useEffect(() => { if (!isDetailLoading && !isProfileLoading) { const pendingRequests = hasPendingRequests(userProfile?.stateAccess); setPendingRequests(pendingRequests); } }, [isDetailLoading, isProfileLoading, 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); } }; const handleRoleStatusClick = (status: string, territory: StateCode) => { Iif (status === "pending" && isNewUserRoleDisplay) return setSelfWithdrawPending(true); return setSelfRevokeState(territory); }; const { dialogTitle, dialogBody, ariaLabelledBy } = getConfirmationModalText( selfRevokeState, selfWithdrawPending, ); const handleDialogOnAccept = async () => { if (selfRevokeState) await handleSelfRevokeAccess(); else E{ // TODO: add in the logic to remove pending request move state change into that function console.log("Withdraw pending request"); setSelfWithdrawPending(false); } }; const handleDialogOnCancel = () => { setSelfRevokeState(null); setSelfWithdrawPending(false); }; const showAllStateAccess = isNewUserRoleDisplay ? true : stateAccessRoles.includes(userDetails?.role); 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} allowEdits groupDivision={ currentRoleObj && currentRoleObj.group ? `${currentRoleObj?.group}/${currentRoleObj?.division}` : null } /> <div className="flex flex-col gap-6 md:basis-1/2"> {/* Status/State Access Management Section */} {showAllStateAccess && ( <div> {isNewUserRoleDisplay ? ( <h2 className="text-2xl font-bold">My User Roles</h2> ) : ( <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 || selfWithdrawPending} title={dialogTitle} body={dialogBody} acceptButtonText="Confirm" aria-labelledby={ariaLabelledBy} onAccept={handleDialogOnAccept} onCancel={handleDialogOnCancel} /> {orderedRoleStatus?.map((access) => ( <RoleStatusCard key={`${access.territory}-${access.role}`} access={access} role={userDetails.role} onClick={() => handleRoleStatusClick(access.status, access.territory as StateCode) } /> ))} {isNewUserRoleDisplay && !hideAddRoleButton ? ( <Button className="w-full border-dashed p-10 text-black font-normal" variant="outline" > Add another user role <PlusIcon className="ml-3" /> </Button> ) : ( <StateAccessControls /> )} </div> )} {userDetails.role === "cmsroleapprover" && !isNewUserRoleDisplay && ( <GroupAndDivision group={userDetails.group} division={userDetails.division} role={userDetails.role} /> )} </div> </div> </section> </> ); }; |