forked from farhoodlabs/paperclip
b9a80dcf22
## Thinking Path > - Paperclip is the control plane for autonomous AI companies. > - V1 needs to stay local-first while also supporting shared, authenticated deployments. > - Human operators need real identities, company membership, invite flows, profile surfaces, and company-scoped access controls. > - Agents and operators also need the existing issue, inbox, workspace, approval, and plugin flows to keep working under those authenticated boundaries. > - This branch accumulated the multi-user implementation, follow-up QA fixes, workspace/runtime refinements, invite UX improvements, release-branch conflict resolution, and review hardening. > - This pull request consolidates that branch onto the current `master` branch as a single reviewable PR. > - The benefit is a complete multi-user implementation path with tests and docs carried forward without dropping existing branch work. ## What Changed - Added authenticated human-user access surfaces: auth/session routes, company user directory, profile settings, company access/member management, join requests, and invite management. - Added invite creation, invite landing, onboarding, logo/branding, invite grants, deduped join requests, and authenticated multi-user E2E coverage. - Tightened company-scoped and instance-admin authorization across board, plugin, adapter, access, issue, and workspace routes. - Added profile-image URL validation hardening, avatar preservation on name-only profile updates, and join-request uniqueness migration cleanup for pending human requests. - Added an atomic member role/status/grants update path so Company Access saves no longer leave partially updated permissions. - Improved issue chat, inbox, assignee identity rendering, sidebar/account/company navigation, workspace routing, and execution workspace reuse behavior for multi-user operation. - Added and updated server/UI tests covering auth, invites, membership, issue workspace inheritance, plugin authz, inbox/chat behavior, and multi-user flows. - Merged current `public-gh/master` into this branch, resolved all conflicts, and verified no `pnpm-lock.yaml` change is included in this PR diff. ## Verification - `pnpm exec vitest run server/src/__tests__/issues-service.test.ts ui/src/components/IssueChatThread.test.tsx ui/src/pages/Inbox.test.tsx` - `pnpm run preflight:workspace-links && pnpm exec vitest run server/src/__tests__/plugin-routes-authz.test.ts` - `pnpm exec vitest run server/src/__tests__/plugin-routes-authz.test.ts server/src/__tests__/workspace-runtime-service-authz.test.ts server/src/__tests__/access-validators.test.ts` - `pnpm exec vitest run server/src/__tests__/authz-company-access.test.ts server/src/__tests__/routines-routes.test.ts server/src/__tests__/sidebar-preferences-routes.test.ts server/src/__tests__/approval-routes-idempotency.test.ts server/src/__tests__/openclaw-invite-prompt-route.test.ts server/src/__tests__/agent-cross-tenant-authz-routes.test.ts server/src/__tests__/routines-e2e.test.ts` - `pnpm exec vitest run server/src/__tests__/auth-routes.test.ts ui/src/pages/CompanyAccess.test.tsx` - `pnpm --filter @paperclipai/shared typecheck && pnpm --filter @paperclipai/db typecheck && pnpm --filter @paperclipai/server typecheck` - `pnpm --filter @paperclipai/shared typecheck && pnpm --filter @paperclipai/server typecheck` - `pnpm --filter @paperclipai/ui typecheck` - `pnpm db:generate` - `npx playwright test --config tests/e2e/playwright.config.ts --list` - Confirmed branch has no uncommitted changes and is `0` commits behind `public-gh/master` before PR creation. - Confirmed no `pnpm-lock.yaml` change is staged or present in the PR diff. ## Risks - High review surface area: this PR contains the accumulated multi-user branch plus follow-up fixes, so reviewers should focus especially on company-boundary enforcement and authenticated-vs-local deployment behavior. - UI behavior changed across invites, inbox, issue chat, access settings, and sidebar navigation; no browser screenshots are included in this branch-consolidation PR. - Plugin install, upgrade, and lifecycle/config mutations now require instance-admin access, which is intentional but may change expectations for non-admin board users. - A join-request dedupe migration rejects duplicate pending human requests before creating unique indexes; deployments with unusual historical duplicates should review the migration behavior. - Company member role/status/grant saves now use a new combined endpoint; older separate endpoints remain for compatibility. - Full production build was not run locally in this heartbeat; CI should cover the full matrix. ## Model Used - OpenAI Codex coding agent, GPT-5-based model, CLI/tool-use environment. Exact deployed model identifier and context window were not exposed by the runtime. ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [x] If this change affects the UI, I have included before/after screenshots - [x] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] I will address all Greptile and reviewer comments before requesting merge Note on screenshots: this is a branch-consolidation PR for an already-developed multi-user branch, and no browser screenshots were captured during this heartbeat. --------- Co-authored-by: dotta <dotta@example.com> Co-authored-by: Paperclip <noreply@paperclip.ing> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
477 lines
20 KiB
TypeScript
477 lines
20 KiB
TypeScript
import { useEffect, useMemo, useState } from "react";
|
|
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
|
|
import { HUMAN_COMPANY_MEMBERSHIP_ROLE_LABELS, PERMISSION_KEYS, type PermissionKey } from "@paperclipai/shared";
|
|
import { ShieldCheck, Users } from "lucide-react";
|
|
import { accessApi, type CompanyMember } from "@/api/access";
|
|
import { ApiError } from "@/api/client";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { useBreadcrumbs } from "@/context/BreadcrumbContext";
|
|
import { useCompany } from "@/context/CompanyContext";
|
|
import { useToast } from "@/context/ToastContext";
|
|
import { queryKeys } from "@/lib/queryKeys";
|
|
|
|
const permissionLabels: Record<PermissionKey, string> = {
|
|
"agents:create": "Create agents",
|
|
"users:invite": "Invite humans and agents",
|
|
"users:manage_permissions": "Manage members and grants",
|
|
"tasks:assign": "Assign tasks",
|
|
"tasks:assign_scope": "Assign scoped tasks",
|
|
"joins:approve": "Approve join requests",
|
|
};
|
|
|
|
function formatGrantSummary(member: CompanyMember) {
|
|
if (member.grants.length === 0) return "No explicit grants";
|
|
return member.grants.map((grant) => permissionLabels[grant.permissionKey]).join(", ");
|
|
}
|
|
|
|
const implicitRoleGrantMap: Record<NonNullable<CompanyMember["membershipRole"]>, PermissionKey[]> = {
|
|
owner: ["agents:create", "users:invite", "users:manage_permissions", "tasks:assign", "joins:approve"],
|
|
admin: ["agents:create", "users:invite", "tasks:assign", "joins:approve"],
|
|
operator: ["tasks:assign"],
|
|
viewer: [],
|
|
};
|
|
|
|
function getImplicitGrantKeys(role: CompanyMember["membershipRole"]) {
|
|
return role ? implicitRoleGrantMap[role] : [];
|
|
}
|
|
|
|
export function CompanyAccess() {
|
|
const { selectedCompany, selectedCompanyId } = useCompany();
|
|
const { setBreadcrumbs } = useBreadcrumbs();
|
|
const { pushToast } = useToast();
|
|
const queryClient = useQueryClient();
|
|
const [editingMemberId, setEditingMemberId] = useState<string | null>(null);
|
|
const [draftRole, setDraftRole] = useState<CompanyMember["membershipRole"]>(null);
|
|
const [draftStatus, setDraftStatus] = useState<CompanyMember["status"]>("active");
|
|
const [draftGrants, setDraftGrants] = useState<Set<PermissionKey>>(new Set());
|
|
|
|
useEffect(() => {
|
|
setBreadcrumbs([
|
|
{ label: selectedCompany?.name ?? "Company", href: "/dashboard" },
|
|
{ label: "Settings", href: "/company/settings" },
|
|
{ label: "Access" },
|
|
]);
|
|
}, [selectedCompany?.name, setBreadcrumbs]);
|
|
|
|
const membersQuery = useQuery({
|
|
queryKey: queryKeys.access.companyMembers(selectedCompanyId ?? ""),
|
|
queryFn: () => accessApi.listMembers(selectedCompanyId!),
|
|
enabled: !!selectedCompanyId,
|
|
});
|
|
|
|
const joinRequestsQuery = useQuery({
|
|
queryKey: queryKeys.access.joinRequests(selectedCompanyId ?? "", "pending_approval"),
|
|
queryFn: () => accessApi.listJoinRequests(selectedCompanyId!, "pending_approval"),
|
|
enabled: !!selectedCompanyId && !!membersQuery.data?.access.canApproveJoinRequests,
|
|
});
|
|
|
|
const refreshAccessData = async () => {
|
|
if (!selectedCompanyId) return;
|
|
await queryClient.invalidateQueries({ queryKey: queryKeys.access.companyMembers(selectedCompanyId) });
|
|
await queryClient.invalidateQueries({ queryKey: queryKeys.access.companyUserDirectory(selectedCompanyId) });
|
|
await queryClient.invalidateQueries({ queryKey: queryKeys.access.joinRequests(selectedCompanyId, "pending_approval") });
|
|
};
|
|
|
|
const updateMemberMutation = useMutation({
|
|
mutationFn: async (input: { memberId: string; membershipRole: CompanyMember["membershipRole"]; status: CompanyMember["status"]; grants: PermissionKey[] }) => {
|
|
return accessApi.updateMemberAccess(selectedCompanyId!, input.memberId, {
|
|
membershipRole: input.membershipRole,
|
|
status: input.status,
|
|
grants: input.grants.map((permissionKey) => ({ permissionKey })),
|
|
});
|
|
},
|
|
onSuccess: async () => {
|
|
setEditingMemberId(null);
|
|
await refreshAccessData();
|
|
pushToast({
|
|
title: "Member updated",
|
|
tone: "success",
|
|
});
|
|
},
|
|
onError: (error) => {
|
|
pushToast({
|
|
title: "Failed to update member",
|
|
body: error instanceof Error ? error.message : "Unknown error",
|
|
tone: "error",
|
|
});
|
|
},
|
|
});
|
|
|
|
const approveJoinRequestMutation = useMutation({
|
|
mutationFn: (requestId: string) => accessApi.approveJoinRequest(selectedCompanyId!, requestId),
|
|
onSuccess: async () => {
|
|
await refreshAccessData();
|
|
pushToast({
|
|
title: "Join request approved",
|
|
tone: "success",
|
|
});
|
|
},
|
|
onError: (error) => {
|
|
pushToast({
|
|
title: "Failed to approve join request",
|
|
body: error instanceof Error ? error.message : "Unknown error",
|
|
tone: "error",
|
|
});
|
|
},
|
|
});
|
|
|
|
const rejectJoinRequestMutation = useMutation({
|
|
mutationFn: (requestId: string) => accessApi.rejectJoinRequest(selectedCompanyId!, requestId),
|
|
onSuccess: async () => {
|
|
await refreshAccessData();
|
|
pushToast({
|
|
title: "Join request rejected",
|
|
tone: "success",
|
|
});
|
|
},
|
|
onError: (error) => {
|
|
pushToast({
|
|
title: "Failed to reject join request",
|
|
body: error instanceof Error ? error.message : "Unknown error",
|
|
tone: "error",
|
|
});
|
|
},
|
|
});
|
|
|
|
const editingMember = useMemo(
|
|
() => membersQuery.data?.members.find((member) => member.id === editingMemberId) ?? null,
|
|
[editingMemberId, membersQuery.data?.members],
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!editingMember) return;
|
|
setDraftRole(editingMember.membershipRole);
|
|
setDraftStatus(editingMember.status);
|
|
setDraftGrants(new Set(editingMember.grants.map((grant) => grant.permissionKey)));
|
|
}, [editingMember]);
|
|
|
|
if (!selectedCompanyId) {
|
|
return <div className="text-sm text-muted-foreground">Select a company to manage access.</div>;
|
|
}
|
|
|
|
if (membersQuery.isLoading) {
|
|
return <div className="text-sm text-muted-foreground">Loading company access…</div>;
|
|
}
|
|
|
|
if (membersQuery.error) {
|
|
const message =
|
|
membersQuery.error instanceof ApiError && membersQuery.error.status === 403
|
|
? "You do not have permission to manage company members."
|
|
: membersQuery.error instanceof Error
|
|
? membersQuery.error.message
|
|
: "Failed to load company members.";
|
|
return <div className="text-sm text-destructive">{message}</div>;
|
|
}
|
|
|
|
const members = membersQuery.data?.members ?? [];
|
|
const access = membersQuery.data?.access;
|
|
const pendingHumanJoinRequests =
|
|
joinRequestsQuery.data?.filter((request) => request.requestType === "human") ?? [];
|
|
const joinRequestActionPending =
|
|
approveJoinRequestMutation.isPending || rejectJoinRequestMutation.isPending;
|
|
const implicitGrantKeys = getImplicitGrantKeys(draftRole);
|
|
const implicitGrantSet = new Set(implicitGrantKeys);
|
|
|
|
return (
|
|
<div className="max-w-6xl space-y-8">
|
|
<div className="space-y-3">
|
|
<div className="flex items-center gap-2">
|
|
<ShieldCheck className="h-5 w-5 text-muted-foreground" />
|
|
<h1 className="text-lg font-semibold">Company Access</h1>
|
|
</div>
|
|
<p className="max-w-3xl text-sm text-muted-foreground">
|
|
Manage company user memberships, membership status, and explicit permission grants for {selectedCompany?.name}.
|
|
</p>
|
|
</div>
|
|
|
|
{access && !access.currentUserRole && (
|
|
<div className="rounded-xl border border-amber-500/40 px-4 py-3 text-sm text-amber-200">
|
|
This account can manage access here through instance-admin privileges, but it does not currently hold an active company membership.
|
|
</div>
|
|
)}
|
|
|
|
<section className="space-y-4">
|
|
<div className="space-y-1">
|
|
<div className="flex items-center gap-2">
|
|
<Users className="h-4 w-4 text-muted-foreground" />
|
|
<h2 className="text-base font-semibold">Humans</h2>
|
|
</div>
|
|
<p className="max-w-3xl text-sm text-muted-foreground">
|
|
Manage human company memberships, status, and grants here.
|
|
</p>
|
|
</div>
|
|
|
|
{access?.canApproveJoinRequests && pendingHumanJoinRequests.length > 0 ? (
|
|
<div className="space-y-3 rounded-xl border border-border px-4 py-4">
|
|
<div className="flex flex-wrap items-center justify-between gap-2">
|
|
<div>
|
|
<h3 className="text-sm font-semibold">Pending human joins</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Review human join requests before they become active company members.
|
|
</p>
|
|
</div>
|
|
<Badge variant="outline">{pendingHumanJoinRequests.length} pending</Badge>
|
|
</div>
|
|
<div className="space-y-3">
|
|
{pendingHumanJoinRequests.map((request) => (
|
|
<PendingJoinRequestCard
|
|
key={request.id}
|
|
title={
|
|
request.requesterUser?.name ||
|
|
request.requestEmailSnapshot ||
|
|
request.requestingUserId ||
|
|
"Unknown human requester"
|
|
}
|
|
subtitle={
|
|
request.requesterUser?.email ||
|
|
request.requestEmailSnapshot ||
|
|
request.requestingUserId ||
|
|
"No email available"
|
|
}
|
|
context={
|
|
request.invite
|
|
? `${request.invite.allowedJoinTypes} join invite${request.invite.humanRole ? ` • default role ${request.invite.humanRole}` : ""}`
|
|
: "Invite metadata unavailable"
|
|
}
|
|
detail={`Submitted ${new Date(request.createdAt).toLocaleString()}`}
|
|
approveLabel="Approve human"
|
|
rejectLabel="Reject human"
|
|
disabled={joinRequestActionPending}
|
|
onApprove={() => approveJoinRequestMutation.mutate(request.id)}
|
|
onReject={() => rejectJoinRequestMutation.mutate(request.id)}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
|
|
<div className="overflow-hidden rounded-xl border border-border">
|
|
<div className="grid grid-cols-[minmax(0,1.5fr)_120px_120px_minmax(0,1.2fr)_120px] gap-3 border-b border-border px-4 py-3 text-xs font-medium uppercase tracking-wide text-muted-foreground">
|
|
<div>User account</div>
|
|
<div>Role</div>
|
|
<div>Status</div>
|
|
<div>Grants</div>
|
|
<div className="text-right">Action</div>
|
|
</div>
|
|
{members.length === 0 ? (
|
|
<div className="px-4 py-8 text-sm text-muted-foreground">No user memberships found for this company yet.</div>
|
|
) : (
|
|
members.map((member) => (
|
|
<div
|
|
key={member.id}
|
|
className="grid grid-cols-[minmax(0,1.5fr)_120px_120px_minmax(0,1.2fr)_120px] gap-3 border-b border-border px-4 py-3 last:border-b-0"
|
|
>
|
|
<div className="min-w-0">
|
|
<div className="truncate font-medium">{member.user?.name?.trim() || member.user?.email || member.principalId}</div>
|
|
<div className="truncate text-xs text-muted-foreground">{member.user?.email || member.principalId}</div>
|
|
</div>
|
|
<div className="text-sm">
|
|
{member.membershipRole
|
|
? HUMAN_COMPANY_MEMBERSHIP_ROLE_LABELS[member.membershipRole]
|
|
: "Unset"}
|
|
</div>
|
|
<div>
|
|
<Badge variant={member.status === "active" ? "secondary" : member.status === "suspended" ? "destructive" : "outline"}>
|
|
{member.status.replace("_", " ")}
|
|
</Badge>
|
|
</div>
|
|
<div className="min-w-0 text-sm text-muted-foreground">{formatGrantSummary(member)}</div>
|
|
<div className="text-right">
|
|
<Button size="sm" variant="outline" onClick={() => setEditingMemberId(member.id)}>
|
|
Edit
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
))
|
|
)}
|
|
</div>
|
|
</section>
|
|
|
|
<Dialog open={!!editingMember} onOpenChange={(open) => !open && setEditingMemberId(null)}>
|
|
<DialogContent className="max-w-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle>Edit member</DialogTitle>
|
|
<DialogDescription>
|
|
Update company role, membership status, and explicit grants for {editingMember?.user?.name || editingMember?.user?.email || editingMember?.principalId}.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
{editingMember && (
|
|
<div className="space-y-5">
|
|
<div className="grid gap-4 md:grid-cols-2">
|
|
<label className="space-y-2 text-sm">
|
|
<span className="font-medium">Company role</span>
|
|
<select
|
|
className="w-full rounded-md border border-border bg-background px-3 py-2"
|
|
value={draftRole ?? ""}
|
|
onChange={(event) =>
|
|
setDraftRole((event.target.value || null) as CompanyMember["membershipRole"])
|
|
}
|
|
>
|
|
<option value="">Unset</option>
|
|
{Object.entries(HUMAN_COMPANY_MEMBERSHIP_ROLE_LABELS).map(([value, label]) => (
|
|
<option key={value} value={value}>
|
|
{label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</label>
|
|
<label className="space-y-2 text-sm">
|
|
<span className="font-medium">Membership status</span>
|
|
<select
|
|
className="w-full rounded-md border border-border bg-background px-3 py-2"
|
|
value={draftStatus}
|
|
onChange={(event) =>
|
|
setDraftStatus(event.target.value as CompanyMember["status"])
|
|
}
|
|
>
|
|
<option value="active">Active</option>
|
|
<option value="pending">Pending</option>
|
|
<option value="suspended">Suspended</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
|
|
<div className="space-y-3">
|
|
<div>
|
|
<h3 className="text-sm font-medium">Grants</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Roles provide implicit grants automatically. Explicit grants below are only for overrides and extra access that should persist even if the role changes.
|
|
</p>
|
|
</div>
|
|
<div className="rounded-lg border border-border px-3 py-3">
|
|
<div className="text-sm font-medium">Implicit grants from role</div>
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
{draftRole
|
|
? `${HUMAN_COMPANY_MEMBERSHIP_ROLE_LABELS[draftRole]} currently includes these permissions automatically.`
|
|
: "No role is selected, so this member has no implicit grants right now."}
|
|
</p>
|
|
{implicitGrantKeys.length > 0 ? (
|
|
<div className="mt-3 flex flex-wrap gap-2">
|
|
{implicitGrantKeys.map((permissionKey) => (
|
|
<Badge key={permissionKey} variant="outline">
|
|
{permissionLabels[permissionKey]}
|
|
</Badge>
|
|
))}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
<div className="grid gap-3 md:grid-cols-2">
|
|
{PERMISSION_KEYS.map((permissionKey) => (
|
|
<label
|
|
key={permissionKey}
|
|
className="flex items-start gap-3 rounded-lg border border-border px-3 py-2"
|
|
>
|
|
<Checkbox
|
|
checked={draftGrants.has(permissionKey)}
|
|
onCheckedChange={(checked) => {
|
|
setDraftGrants((current) => {
|
|
const next = new Set(current);
|
|
if (checked) next.add(permissionKey);
|
|
else next.delete(permissionKey);
|
|
return next;
|
|
});
|
|
}}
|
|
/>
|
|
<span className="space-y-1">
|
|
<span className="block text-sm font-medium">{permissionLabels[permissionKey]}</span>
|
|
<span className="block text-xs text-muted-foreground">{permissionKey}</span>
|
|
{implicitGrantSet.has(permissionKey) ? (
|
|
<span className="block text-xs text-muted-foreground">
|
|
Included implicitly by the {draftRole ? HUMAN_COMPANY_MEMBERSHIP_ROLE_LABELS[draftRole] : "selected"} role. Add an explicit grant only if it should stay after the role changes.
|
|
</span>
|
|
) : null}
|
|
{draftGrants.has(permissionKey) ? (
|
|
<span className="block text-xs text-muted-foreground">
|
|
Stored explicitly for this member.
|
|
</span>
|
|
) : null}
|
|
</span>
|
|
</label>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => setEditingMemberId(null)}>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
if (!editingMember) return;
|
|
updateMemberMutation.mutate({
|
|
memberId: editingMember.id,
|
|
membershipRole: draftRole,
|
|
status: draftStatus,
|
|
grants: [...draftGrants],
|
|
});
|
|
}}
|
|
disabled={updateMemberMutation.isPending}
|
|
>
|
|
{updateMemberMutation.isPending ? "Saving…" : "Save access"}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function PendingJoinRequestCard({
|
|
title,
|
|
subtitle,
|
|
context,
|
|
detail,
|
|
detailSecondary,
|
|
approveLabel,
|
|
rejectLabel,
|
|
disabled,
|
|
onApprove,
|
|
onReject,
|
|
}: {
|
|
title: string;
|
|
subtitle: string;
|
|
context: string;
|
|
detail: string;
|
|
detailSecondary?: string;
|
|
approveLabel: string;
|
|
rejectLabel: string;
|
|
disabled: boolean;
|
|
onApprove: () => void;
|
|
onReject: () => void;
|
|
}) {
|
|
return (
|
|
<div className="rounded-xl border border-border px-4 py-4">
|
|
<div className="flex flex-wrap items-start justify-between gap-4">
|
|
<div className="space-y-2">
|
|
<div>
|
|
<div className="font-medium">{title}</div>
|
|
<div className="text-sm text-muted-foreground">{subtitle}</div>
|
|
</div>
|
|
<div className="text-sm text-muted-foreground">{context}</div>
|
|
<div className="text-sm text-muted-foreground">{detail}</div>
|
|
{detailSecondary ? <div className="text-sm text-muted-foreground">{detailSecondary}</div> : null}
|
|
</div>
|
|
<div className="flex gap-2">
|
|
<Button type="button" variant="outline" onClick={onReject} disabled={disabled}>
|
|
{rejectLabel}
|
|
</Button>
|
|
<Button type="button" onClick={onApprove} disabled={disabled}>
|
|
{approveLabel}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|