coronasafe/care_fe

View on GitHub

Showing 1,568 of 1,569 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<div className="grid md:grid-cols-2 gap-4">
<FormField
control={form.control}
name="valid_from"
render={({ field }) => (
src/pages/Scheduling/components/CreateScheduleTemplateSheet.tsx on lines 301..331

Function QuestionnaireForm has a Cognitive Complexity of 73 (exceeds 5 allowed). Consider refactoring.
Open

export function QuestionnaireForm({
questionnaireSlug,
patientId,
encounterId,
subjectType,
Severity: Minor
Found in src/components/Questionnaire/QuestionnaireForm.tsx - About 1 day to fix

File EncounterList.tsx has 646 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { useQuery } from "@tanstack/react-query";
import { useCallback } from "react";
import { useTranslation } from "react-i18next";
 
import { cn } from "@/lib/utils";
Severity: Major
Found in src/pages/Encounters/EncounterList.tsx - About 1 day to fix

Function ScheduleAppointment has 281 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function ScheduleAppointment(props: AppointmentsProps) {
const { t } = useTranslation();
const { goBack } = useAppHistory();
const { facilityId, staffId, appointmentId } = props;
const [selectedMonth, setSelectedMonth] = useState(new Date());
Severity: Major
Found in src/pages/PublicAppointments/Schedule.tsx - About 1 day to fix

File CreateScheduleTemplateSheet.tsx has 632 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { zodResolver } from "@hookform/resolvers/zod";
import { useMutation, useQueryClient } from "@tanstack/react-query";
import { isAfter, isBefore, parse } from "date-fns";
import { useQueryParams } from "raviger";
import { useForm } from "react-hook-form";
Severity: Major
Found in src/pages/Scheduling/components/CreateScheduleTemplateSheet.tsx - About 1 day to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Open

{activeTab === DashboardTabs.TAB_ASSOCIATIONS && (
<TabContent
tabId="associations-panel"
tabItems={associations}
description={t("dashboard_tab_associations")}
Severity: Major
Found in src/pages/UserDashboard.tsx and 1 other location - About 1 day to fix
src/pages/UserDashboard.tsx on lines 233..267

Similar blocks of code found in 2 locations. Consider refactoring.
Open

{activeTab === DashboardTabs.TAB_GOVERNANCE && (
<TabContent
tabId="governance-panel"
tabItems={governance}
description={t("dashboard_tab_governance")}
Severity: Major
Found in src/pages/UserDashboard.tsx and 1 other location - About 1 day to fix
src/pages/UserDashboard.tsx on lines 197..231

Function AvatarEditModal has a Cognitive Complexity of 69 (exceeds 5 allowed). Consider refactoring.
Open

const AvatarEditModal = ({
title,
open,
onOpenChange,
imageUrl,
Severity: Minor
Found in src/components/Common/AvatarEditModal.tsx - About 1 day to fix

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{t("are_you_sure")}</AlertDialogTitle>
<AlertDialogDescription>
<Alert variant="destructive" className="mt-4">
Severity: Major
Found in src/pages/Scheduling/ScheduleExceptions.tsx and 2 other locations - About 1 day to fix
src/pages/Scheduling/components/EditScheduleTemplateSheet.tsx on lines 293..327
src/pages/Scheduling/components/EditScheduleTemplateSheet.tsx on lines 435..467

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{t("are_you_sure")}</AlertDialogTitle>
<AlertDialogDescription>
<Alert variant="destructive" className="mt-4">
src/pages/Scheduling/ScheduleExceptions.tsx on lines 155..187
src/pages/Scheduling/components/EditScheduleTemplateSheet.tsx on lines 293..327

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{t("are_you_sure")}</AlertDialogTitle>
<AlertDialogDescription>
<Alert variant="destructive" className="mt-4">
src/pages/Scheduling/ScheduleExceptions.tsx on lines 155..187
src/pages/Scheduling/components/EditScheduleTemplateSheet.tsx on lines 435..467

File MedicationStatementQuestion.tsx has 618 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { MinusCircledIcon, Pencil2Icon } from "@radix-ui/react-icons";
import { useQuery } from "@tanstack/react-query";
import React, { useEffect } from "react";
import { useState } from "react";
import { useTranslation } from "react-i18next";

Function FilesTab has a Cognitive Complexity of 68 (exceeds 5 allowed). Consider refactoring.
Open

export const FilesTab = (props: FilesTabProps) => {
const { patient, type, encounter } = props;
const { qParams, updateQuery, Pagination, resultsPerPage } = useFilters({
limit: 14,
});
Severity: Minor
Found in src/components/Files/FilesTab.tsx - About 1 day to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<div
className="hidden flex-row text-xl font-semibold capitalize lg:flex"
id="patient-name-consultation"
>
<Link
Severity: Major
Found in src/components/Patient/PatientInfoCard.tsx and 1 other location - About 1 day to fix
src/components/Patient/PatientInfoCard.tsx on lines 75..109

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<div
className="mb-2 flex flex-col text-base md:text-xl font-semibold capitalize lg:hidden"
id="patient-name-consultation"
>
<Link
Severity: Major
Found in src/components/Patient/PatientInfoCard.tsx and 1 other location - About 1 day to fix
src/components/Patient/PatientInfoCard.tsx on lines 114..148

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<div className="space-y-2">
<Label className="text-sm font-medium">
{t("select_new_role")}
</Label>
<Select value={selectedRole} onValueChange={setSelectedRole}>
src/components/Patient/PatientDetailsTab/PatientUsers.tsx on lines 186..209
src/pages/Organization/components/EditUserRoleSheet.tsx on lines 188..211

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<div className="space-y-2">
<label className="text-sm font-medium">
{t("select_role")}
</label>
<Select value={selectedRole} onValueChange={setSelectedRole}>
Severity: Major
Found in src/components/Patient/PatientDetailsTab/PatientUsers.tsx and 2 other locations - About 1 day to fix
src/pages/Facility/settings/organizations/components/EditFacilityUserRoleSheet.tsx on lines 185..208
src/pages/Organization/components/EditUserRoleSheet.tsx on lines 188..211

Similar blocks of code found in 3 locations. Consider refactoring.
Open

<div className="space-y-2">
<Label className="text-sm font-medium">
{t("select_new_role")}
</Label>
<Select value={selectedRole} onValueChange={setSelectedRole}>
Severity: Major
Found in src/pages/Organization/components/EditUserRoleSheet.tsx and 2 other locations - About 1 day to fix
src/components/Patient/PatientDetailsTab/PatientUsers.tsx on lines 186..209
src/pages/Facility/settings/organizations/components/EditFacilityUserRoleSheet.tsx on lines 185..208

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="destructive" className="w-full">
{t("remove_user")}
</Button>
src/pages/Organization/components/EditUserRoleSheet.tsx on lines 222..250

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="destructive" className="w-full">
{t("remove_user")}
</Button>
Severity: Major
Found in src/pages/Organization/components/EditUserRoleSheet.tsx and 1 other location - About 1 day to fix
src/pages/Facility/settings/organizations/components/EditFacilityUserRoleSheet.tsx on lines 219..247
Severity
Category
Status
Source
Language