Files
clinicpro/assets/admin/hooks/usePatient.ts
T
hamedandClaude Opus 4.8 580bc983b3 feat(patient): complete "اطلاعات پرونده" demographic form
Backend:
- Add profile columns field_of_study, province_id, city_id, postal_code,
  referral_source (UserProfile + migration).
- Extend PATCH /api/v1/patient/{uuid} to persist all demographic fields
  and return them in the patient profile payload.
- Support editable mobile (login identifier): validation, uniqueness,
  User.setMobileNumber, new ERR_PROFILE_002.
- Update docs/api/patient.md.

Frontend:
- New reusable Input, Field, and PatientRecordInfoForm (RHF + Zod).
- usePatient/useUpdatePatient hooks and patientForm mapping helpers.
- Extend the existing "info" tab in MyPatientsPage to the full field set
  via the shared form (province/city/insurance options, Jalali date).

Tests: Patient entity + PATCH integration (PHPUnit); form, hooks, and
mapping helpers (Vitest).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-13 11:51:18 +03:30

41 lines
1.3 KiB
TypeScript

import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
import { api } from '../lib/api';
import type { ApiResponse } from '../lib/api';
import type { PatientRecord, PatientProfileUpdate } from '../types';
/**
* دریافت یک پروندهٔ بیمار به‌همراه پروفایل کامل (`profile`).
* منبع: GET /api/v1/patient/{uuid}. کلید کوئری: ['patient', uuid].
*/
export function usePatient(uuid: string | undefined) {
const query = useQuery<ApiResponse<PatientRecord>>({
queryKey: ['patient', uuid],
queryFn: () => api.get(`/api/v1/patient/${uuid}`),
enabled: !!uuid,
});
const record = query.data?.data ?? null;
return {
record,
profile: record?.profile ?? null,
isLoading: query.isLoading,
isError: query.isError,
};
}
/**
* به‌روزرسانی partial پروفایل بیمار.
* منبع: PATCH /api/v1/patient/{uuid}. پس از موفقیت، کوئری همان بیمار را invalidate می‌کند.
*/
export function useUpdatePatient(uuid: string) {
const qc = useQueryClient();
return useMutation<ApiResponse<PatientRecord>, unknown, PatientProfileUpdate>({
mutationFn: (body) => api.patch(`/api/v1/patient/${uuid}`, body),
onSuccess: () => {
qc.invalidateQueries({ queryKey: ['patient', uuid] });
},
});
}