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 | 5x 2x 2x 2x | import { opensearch, SEATOOL_STATUS } from "shared-types"; import { isCmsUser, isHelpDeskUser } from "shared-utils"; import { useGetUser } from "@/api"; type PackageStatusCardProps = { submission: opensearch.main.Document; }; export const PackageStatusCard = ({ submission }: PackageStatusCardProps) => { const { data: user } = useGetUser(); // This really a check to determine if we should show the status of an RAI Withdraw being enabled // We have a flag that we monitor but there are certain things that can be done outside of onemac, // specifically in seatool that will invalidate the raiWithdrawEnabled flag such as the two statuses // below (Pending Approval, and Pending Concurrence). In the future we should build logic into the // seatool sink that allows us to simply clear these flags const isInRAIWithdrawEnabledSubStatus = submission.raiWithdrawEnabled && submission.seatoolStatus !== SEATOOL_STATUS.PENDING_APPROVAL && submission.seatoolStatus !== SEATOOL_STATUS.PENDING_CONCURRENCE; // Similar to the above check their are certain things that occur in seatool that invalidate the secondClock // flag. Additionally second clock sub status only displays for CMS users const isInActiveSecondClockStatus = isCmsUser(user.user) && submission.secondClock; return ( <div className="my-3 font-bold text-xl"> <div> {isCmsUser(user.user) && isHelpDeskUser(user.user) === false ? submission.cmsStatus : submission.stateStatus} </div> <div className="text-xs opacity-80"> {isInRAIWithdrawEnabledSubStatus && ( <p className="mt-1"> <span className="font-bold mr-1">·</span> <span>Withdraw Formal RAI Response - Enabled</span> </p> )} {isInActiveSecondClockStatus && ( <p className="mt-1"> <span className="font-bold mr-1">·</span> <span>2nd Clock</span> </p> )} </div> </div> ); }; |