Files
temetro/frontend/components/settings/settings-care-team.tsx
T
Khalid Abdi 3eb5687f4d frontend: messages search, care-team employee dialog, PCP picker + transfer, activity detail, analytics grid
- Messages: search the inbox and the compose member picker.
- Care Team: clickable member rows open an employee dialog showing role +
  permissions, with change-role (updateMemberRole) and remove.
- Patients: Primary Care is now a provider dropdown (defaults to self for a
  doctor); add a Transfer action + dialog wired to the transfer API.
- Activity: entries are clickable, opening a detail dialog.
- Analytics: Section takes a columns prop so each row fills evenly (no orphan
  card in Appointments).
- Add lib/staff.ts (listProviders), transferPatient client, rolePermissionSummary
  helper, and i18n keys for all new strings.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-09 19:51:38 +03:00

248 lines
7.7 KiB
TypeScript

"use client";
import { UserPlus } from "lucide-react";
import { useCallback, useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
import { AddStaffDialog } from "@/components/settings/add-staff-dialog";
import {
EmployeeDetailDialog,
type StaffMember,
} from "@/components/settings/employee-detail-dialog";
import {
SettingsCard,
SettingsSection,
} from "@/components/settings/settings-parts";
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import {
Dialog,
DialogClose,
DialogDescription,
DialogFooter,
DialogHeader,
DialogPopup,
DialogTitle,
} from "@/components/ui/dialog";
import { ROLE_LABELS } from "@/lib/access";
import { apiFetch } from "@/lib/api-client";
import { authClient } from "@/lib/auth-client";
import { notify } from "@/lib/toast";
function roleLabel(role?: string | null): string {
if (!role) return ROLE_LABELS.member;
return (ROLE_LABELS as Record<string, string>)[role] ?? role;
}
function initials(name?: string | null, email?: string | null): string {
const source = name?.trim() || email?.trim() || "?";
return (
source
.split(/\s+/)
.map((w) => w[0])
.filter(Boolean)
.join("")
.slice(0, 2)
.toUpperCase() || "?"
);
}
export function CareTeamPanel() {
const { t } = useTranslation();
const { data: session } = authClient.useSession();
const [members, setMembers] = useState<StaffMember[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [adding, setAdding] = useState(false);
const [selected, setSelected] = useState<StaffMember | null>(null);
const [pendingRemove, setPendingRemove] = useState<StaffMember | null>(null);
const [removing, setRemoving] = useState(false);
const load = useCallback(async () => {
try {
const data = await apiFetch<StaffMember[]>("/api/staff");
setMembers(data);
setError(null);
} catch (err) {
setError(
err instanceof Error ? err.message : t("settings.careTeam.loadError"),
);
} finally {
setLoading(false);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
useEffect(() => {
void load();
}, [load]);
const myRole = members.find((m) => m.userId === session?.user?.id)?.role;
const canManage = myRole === "owner" || myRole === "admin";
const confirmRemove = async () => {
if (!pendingRemove || removing) return;
setRemoving(true);
const { error: err } = await authClient.organization.removeMember({
memberIdOrEmail: pendingRemove.id,
});
setRemoving(false);
if (err) {
notify.error(
t("settings.careTeam.remove.failedTitle"),
err.message ?? t("settings.careTeam.remove.failedBody"),
);
return;
}
notify.success(
t("settings.careTeam.remove.removedTitle"),
t("settings.careTeam.remove.removedBody", {
name: pendingRemove.name ?? pendingRemove.email ?? "",
}),
);
setPendingRemove(null);
void load();
};
return (
<SettingsSection
description={t("settings.careTeam.description")}
title={t("settings.careTeam.title")}
>
{error && (
<p className="rounded-2xl bg-destructive/10 px-3 py-2 text-sm text-destructive">
{error}
</p>
)}
{canManage && (
<div className="flex justify-end">
<Button onClick={() => setAdding(true)} type="button">
<UserPlus className="size-4" />
{t("settings.careTeam.addMember")}
</Button>
</div>
)}
<SettingsCard className="divide-y divide-border">
{loading ? (
<p className="p-6 text-center text-sm text-muted-foreground">
{t("settings.careTeam.loading")}
</p>
) : (
members.map((m) => {
const isSelf = m.userId === session?.user?.id;
// Prefer the login username; fall back to email for owners who
// signed up by email.
const secondary = m.username ? `@${m.username}` : m.email;
const body = (
<>
<Avatar className="size-8">
<AvatarFallback>
{initials(m.name, m.email)}
</AvatarFallback>
</Avatar>
<div className="min-w-0 flex-1 text-left">
<p className="truncate text-sm font-medium">
{m.name || m.email || m.userId}
{isSelf && (
<span className="ml-1 text-xs text-muted-foreground">
{t("settings.careTeam.you")}
</span>
)}
</p>
{secondary && (
<p className="truncate text-xs text-muted-foreground">
{secondary}
</p>
)}
</div>
<Badge className="capitalize" variant="secondary">
{roleLabel(m.role)}
</Badge>
</>
);
// Admins click a row to open the employee detail dialog (view
// permissions, change role, remove). Non-managers see a static row.
return canManage ? (
<button
className="flex w-full items-center gap-3 px-4 py-3 transition-colors hover:bg-accent/50"
key={m.id}
onClick={() => setSelected(m)}
type="button"
>
{body}
</button>
) : (
<div className="flex items-center gap-3 px-4 py-3" key={m.id}>
{body}
</div>
);
})
)}
</SettingsCard>
{canManage && (
<AddStaffDialog
onCreated={() => void load()}
onOpenChange={setAdding}
open={adding}
/>
)}
{/* Click a member to view details, change role, or remove. */}
<EmployeeDetailDialog
editable={
canManage &&
selected?.userId !== session?.user?.id &&
selected?.role !== "owner"
}
member={selected}
onChanged={() => void load()}
onOpenChange={(o) => !o && setSelected(null)}
onRemove={(m) => {
setSelected(null);
setPendingRemove(m);
}}
open={selected !== null}
/>
{/* Confirm before removing a member — destructive and not reversible. */}
<Dialog
onOpenChange={(o) => !o && setPendingRemove(null)}
open={pendingRemove !== null}
>
<DialogPopup className="sm:max-w-sm">
<DialogHeader>
<DialogTitle>{t("settings.careTeam.remove.title")}</DialogTitle>
<DialogDescription>
{t("settings.careTeam.remove.description", {
name:
pendingRemove?.name ??
pendingRemove?.email ??
t("settings.careTeam.remove.thisMember"),
})}
</DialogDescription>
</DialogHeader>
<DialogFooter>
<DialogClose render={<Button type="button" variant="outline" />}>
{t("settings.careTeam.remove.cancel")}
</DialogClose>
<Button
disabled={removing}
onClick={confirmRemove}
type="button"
variant="destructive"
>
{removing
? t("settings.careTeam.remove.removing")
: t("settings.careTeam.remove.confirm")}
</Button>
</DialogFooter>
</DialogPopup>
</Dialog>
</SettingsSection>
);
}