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 | 21x 21x 64x 21x 21x | 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 RiderApplicationIndexPage() {
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.filter(role => role !== "ROLE_ADMIN")
}
}
}
: { ...currentUser };
// Stryker restore all
const { data: riderApplications, error: _error, status: _status } =
useBackend(
// Stryker disable all : hard to test for query caching
["/api/rider"],
{ method: "GET", url: "/api/rider" },
[]
// Stryker restore all
);
return (
<BasicLayout>
<div className="pt-2">
<Button style={{ float: "right" }} as={Link} to="/apply/rider/new">
New Rider Application
</Button>
<h1>Rider Applications</h1>
<RiderApplicationTable riderApplications={riderApplications} currentUser={currentUserCopy} />
</div>
</BasicLayout>
);
} |