32 lines
831 B
TypeScript
32 lines
831 B
TypeScript
import { getUserInProgressResponsesAction } from '@kit/doctor/actions/table-data-fetching-actions';
|
|
import { PageBody, PageHeader } from '@kit/ui/page';
|
|
|
|
import {
|
|
DoctorPageViewAction,
|
|
createDoctorPageViewLog,
|
|
} from '~/lib/services/audit/doctorPageView.service';
|
|
|
|
import { DoctorGuard } from '../_components/doctor-guard';
|
|
import ResultsTableWrapper from '../_components/results-table-wrapper';
|
|
|
|
async function MyReviewsPage() {
|
|
await createDoctorPageViewLog({
|
|
action: DoctorPageViewAction.VIEW_OWN_JOBS,
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<PageHeader />
|
|
<PageBody>
|
|
<ResultsTableWrapper
|
|
titleKey="doctor:myReviews"
|
|
action={getUserInProgressResponsesAction}
|
|
queryKey="doctor-in-progress-jobs"
|
|
/>
|
|
</PageBody>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default DoctorGuard(MyReviewsPage);
|