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 | 12x 12x 12x 12x 12x | import React from 'react'; import { useBackend } from 'main/utils/useBackend'; import BasicLayout from "main/layouts/BasicLayout/BasicLayout"; import {useCurrentUser} from 'main/utils/currentUser' // import Button from 'react-bootstrap/Button'; // import { Link } from 'react-router-dom'; import RiderApplicationTable from "main/components/RiderApplication/RiderApplicationTable"; export default function RiderApplicationIndexPageAdmin() { const currentUser = useCurrentUser(); // Stryker disable all const currentUserCopy = currentUser.data?.root?.rolesList ? { ...currentUser, data: { ...currentUser.data, root: { ...currentUser.data.root, rolesList: currentUser.data.root.rolesList } } } : { ...currentUser }; // Stryker restore all const { data: riderApplicationsAll, error: _error, status: _status } = useBackend( // Stryker disable all : hard to test for query caching ["/api/rider/admin/all"], { method: "GET", url: "/api/rider/admin/all" }, [] // Stryker restore all ); const { data: riderApplicationsPending, error: _error2, status: _status2 } = useBackend( // Stryker disable all : hard to test for query caching ["/api/rider/admin/pending"], { method: "GET", url: "/api/rider/admin/pending" }, [] // Stryker restore all ); return ( <BasicLayout> <div className="pt-2"> <h1>Pending Rider Applications</h1> <RiderApplicationTable riderApplications={riderApplicationsPending} currentUser={currentUserCopy} /> <h1>All Rider Applications</h1> <RiderApplicationTable riderApplications={riderApplicationsAll} currentUser={currentUserCopy} /> </div> </BasicLayout> ); } |