coronasafe/care_fe

View on GitHub

Showing 1,568 of 1,569 total issues

File LocationSheet.tsx has 781 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import { format } from "date-fns";
import { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
import { toast } from "sonner";
Severity: Major
Found in src/components/Location/LocationSheet.tsx - About 1 day to fix

File UserForm.tsx has 770 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { zodResolver } from "@hookform/resolvers/zod";
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import { Lock, Mail } from "lucide-react";
import { useEffect, useState } from "react";
import { useForm } from "react-hook-form";
Severity: Major
Found in src/components/Users/UserForm.tsx - About 1 day to fix

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

rows={activeMedications?.results.map((medication) => {
const instruction = medication.dosage_instruction[0];
const frequency = getFrequencyDisplay(instruction?.timing);
const dosage = formatDosage(instruction);
const duration = instruction?.timing?.repeat?.bounds_duration;
Severity: Major
Found in src/pages/Encounters/PrintPrescription.tsx and 1 other location - About 1 day to fix
src/components/Patient/TreatmentSummary.tsx on lines 429..452

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

rows={medications?.results.map((medication) => {
const instruction = medication.dosage_instruction[0];
const frequency = getFrequencyDisplay(instruction?.timing);
const dosage = formatDosage(instruction);
const duration =
Severity: Major
Found in src/components/Patient/TreatmentSummary.tsx and 1 other location - About 1 day to fix
src/pages/Encounters/PrintPrescription.tsx on lines 146..166

File SymptomQuestion.tsx has 747 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"use client";
 
import {
DotsVerticalIcon,
MinusCircledIcon,
Severity: Major
Found in src/components/Questionnaire/QuestionTypes/SymptomQuestion.tsx - About 1 day to fix

File sidebar.tsx has 729 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { Slot } from "@radix-ui/react-slot";
import { VisuallyHidden } from "@radix-ui/react-visually-hidden";
import { VariantProps, cva } from "class-variance-authority";
import { PanelLeftClose, PanelRightClose } from "lucide-react";
import * as React from "react";
Severity: Major
Found in src/components/ui/sidebar.tsx - About 1 day to fix

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

<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="outline" size="lg">
<BanIcon className="size-4 mr-2" />
{t("cancel_appointment")}
Severity: Major
Found in src/pages/Appointments/AppointmentDetail.tsx and 1 other location - About 1 day to fix
src/pages/Appointments/AppointmentDetail.tsx on lines 601..634

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

<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="outline" size="lg">
<BanIcon className="size-4 mr-2" />
{t("mark_as_entered_in_error")}
Severity: Major
Found in src/pages/Appointments/AppointmentDetail.tsx and 1 other location - About 1 day to fix
src/pages/Appointments/AppointmentDetail.tsx on lines 566..599

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

<div className="space-y-4">
<div className="space-y-2">
<Label htmlFor="tag-name">{t("tag_name")}</Label>
<Input
id="tag-name"
Severity: Major
Found in src/components/Questionnaire/CreateQuestionnaireTagSheet.tsx and 1 other location - About 1 day to fix
src/components/Questionnaire/ManageQuestionnaireTagsSheet.tsx on lines 290..323

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

<CollapsibleContent className="mt-4 space-y-4">
<div className="space-y-2">
<Label htmlFor="tag-name">{t("tag_name")}</Label>
<Input
id="tag-name"
src/components/Questionnaire/CreateQuestionnaireTagSheet.tsx on lines 82..115

Function useFileUpload has 322 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default function useFileUpload(
options: FileUploadOptions,
): FileUploadReturn {
const {
type: fileType,
Severity: Major
Found in src/hooks/useFileUpload.tsx - About 1 day to fix

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

<div className="grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-6 mb-8">
<div className="space-y-3">
<DetailRow
label={t("patient")}
value={encounter?.patient.name}
Severity: Major
Found in src/pages/Encounters/PrintPrescription.tsx and 1 other location - About 1 day to fix
src/components/Medicine/MedicationAdministration/PrintMedicationAdministration.tsx on lines 203..238

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

<div className="grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-6 mb-8">
<div className="space-y-3">
<DetailRow
label={t("patient")}
value={encounter?.patient.name}
src/pages/Encounters/PrintPrescription.tsx on lines 97..132

Function useFileUpload has a Cognitive Complexity of 80 (exceeds 5 allowed). Consider refactoring.
Open

export default function useFileUpload(
options: FileUploadOptions,
): FileUploadReturn {
const {
type: fileType,
Severity: Minor
Found in src/hooks/useFileUpload.tsx - About 1 day to fix

File EncounterNotesTab.tsx has 692 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
useInfiniteQuery,
useMutation,
useQuery,
useQueryClient,
Severity: Major
Found in src/pages/Encounters/tabs/EncounterNotesTab.tsx - About 1 day to fix

File FilesTab.tsx has 687 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import dayjs from "dayjs";
import { t } from "i18next";
import { useEffect, useState } from "react";
import { toast } from "sonner";
Severity: Major
Found in src/components/Files/FilesTab.tsx - About 1 day to fix

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

<FormField
control={form.control}
name="gender"
render={({ field }) => (
<FormItem className="space-y-3">
Severity: Major
Found in src/pages/PublicAppointments/PatientRegistration.tsx and 1 other location - About 1 day to fix
src/components/Patient/PatientRegistration.tsx on lines 455..489

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

<FormField
control={form.control}
name="gender"
render={({ field }) => (
<FormItem className="space-y-3">
Severity: Major
Found in src/components/Patient/PatientRegistration.tsx and 1 other location - About 1 day to fix
src/pages/PublicAppointments/PatientRegistration.tsx on lines 244..278

Function AppointmentsPage has 305 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default function AppointmentsPage(props: { facilityId?: string }) {
const { t } = useTranslation();
const authUser = useAuthUser();
const { qParams, updateQuery, resultsPerPage, Pagination } = useFilters({
limit: 15,
Severity: Major
Found in src/pages/Appointments/AppointmentsPage.tsx - About 1 day to fix

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

<div className="grid grid-cols-2 gap-4">
<FormField
control={form.control}
name="valid_from"
render={({ field }) => (
src/pages/Scheduling/components/EditScheduleTemplateSheet.tsx on lines 245..275
Severity
Category
Status
Source
Language