mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
## Thinking Path > - Paperclip orchestrates AI agents for zero-human companies > - The environments subsystem already models execution environments, but before this branch there was no end-to-end SSH-backed runtime path for agents to actually run work against a remote box > - That meant agents could be configured around environment concepts without a reliable way to execute adapter sessions remotely, sync workspace state, and preserve run context across supported adapters > - We also need environment selection to participate in normal Paperclip control-plane behavior: agent defaults, project/issue selection, route validation, and environment probing > - Because this capability is still experimental, the UI surface should be easy to hide and easy to remove later without undoing the underlying implementation > - This pull request adds SSH environment execution support across the runtime, adapters, routes, schema, and tests, then puts the visible environment-management UI behind an experimental flag > - The benefit is that we can validate real SSH-backed agent execution now while keeping the user-facing controls safely gated until the feature is ready to come out of experimentation ## What Changed - Added SSH-backed execution target support in the shared adapter runtime, including remote workspace preparation, skill/runtime asset sync, remote session handling, and workspace restore behavior after runs. - Added SSH execution coverage for supported local adapters, plus remote execution tests across Claude, Codex, Cursor, Gemini, OpenCode, and Pi. - Added environment selection and environment-management backend support needed for SSH execution, including route/service work, validation, probing, and agent default environment persistence. - Added CLI support for SSH environment lab verification and updated related docs/tests. - Added the `enableEnvironments` experimental flag and gated the environment UI behind it on company settings, agent configuration, and project configuration surfaces. ## Verification - `pnpm exec vitest run packages/adapters/claude-local/src/server/execute.remote.test.ts packages/adapters/cursor-local/src/server/execute.remote.test.ts packages/adapters/gemini-local/src/server/execute.remote.test.ts packages/adapters/opencode-local/src/server/execute.remote.test.ts packages/adapters/pi-local/src/server/execute.remote.test.ts` - `pnpm exec vitest run server/src/__tests__/environment-routes.test.ts` - `pnpm exec vitest run server/src/__tests__/instance-settings-routes.test.ts` - `pnpm exec vitest run ui/src/lib/new-agent-hire-payload.test.ts ui/src/lib/new-agent-runtime-config.test.ts` - `pnpm -r typecheck` - `pnpm build` - Manual verification on a branch-local dev server: - enabled the experimental flag - created an SSH environment - created a Linux Claude agent using that environment - confirmed a run executed on the Linux box and synced workspace changes back ## Risks - Medium: this touches runtime execution flow across multiple adapters, so regressions would likely show up in remote session setup, workspace sync, or environment selection precedence. - The UI flag reduces exposure, but the underlying runtime and route changes are still substantial and rely on migration correctness. - The change set is broad across adapters, control-plane services, migrations, and UI gating, so review should pay close attention to environment-selection precedence and remote workspace lifecycle behavior. ## Model Used - OpenAI Codex via Paperclip's local Codex adapter, GPT-5-class coding model with tool use and code execution in the local repo workspace. The local adapter does not surface a more specific public model version string in this branch workflow. ## 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 checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [ ] 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
678 lines
28 KiB
TypeScript
678 lines
28 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 Agent,
|
|
type PermissionKey,
|
|
} from "@paperclipai/shared";
|
|
import { ShieldCheck, Trash2, Users } from "lucide-react";
|
|
import { accessApi, type CompanyMember } from "@/api/access";
|
|
import { agentsApi } from "@/api/agents";
|
|
import { ApiError } from "@/api/client";
|
|
import { issuesApi } from "@/api/issues";
|
|
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",
|
|
"tasks:manage_active_checkouts": "Manage active task checkouts",
|
|
"joins:approve": "Approve join requests",
|
|
"environments:manage": "Manage environments",
|
|
};
|
|
|
|
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: [],
|
|
};
|
|
|
|
const reassignmentIssueStatuses = "backlog,todo,in_progress,in_review,blocked,failed,timed_out";
|
|
type EditableMemberStatus = "pending" | "active" | "suspended";
|
|
|
|
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 [removingMemberId, setRemovingMemberId] = useState<string | null>(null);
|
|
const [reassignmentTarget, setReassignmentTarget] = useState<string>("__unassigned");
|
|
const [draftRole, setDraftRole] = useState<CompanyMember["membershipRole"]>(null);
|
|
const [draftStatus, setDraftStatus] = useState<EditableMemberStatus>("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 agentsQuery = useQuery({
|
|
queryKey: queryKeys.agents.list(selectedCompanyId ?? ""),
|
|
queryFn: () => agentsApi.list(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: EditableMemberStatus; 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],
|
|
);
|
|
const removingMember = useMemo(
|
|
() => membersQuery.data?.members.find((member) => member.id === removingMemberId) ?? null,
|
|
[removingMemberId, membersQuery.data?.members],
|
|
);
|
|
|
|
const assignedIssuesQuery = useQuery({
|
|
queryKey: ["access", "member-assigned-issues", selectedCompanyId ?? "", removingMember?.principalId ?? ""],
|
|
queryFn: () =>
|
|
issuesApi.list(selectedCompanyId!, {
|
|
assigneeUserId: removingMember!.principalId,
|
|
status: reassignmentIssueStatuses,
|
|
}),
|
|
enabled: !!selectedCompanyId && !!removingMember,
|
|
});
|
|
|
|
const archiveMemberMutation = useMutation({
|
|
mutationFn: async (input: { memberId: string; target: string }) => {
|
|
const reassignment =
|
|
input.target.startsWith("agent:")
|
|
? { assigneeAgentId: input.target.slice("agent:".length), assigneeUserId: null }
|
|
: input.target.startsWith("user:")
|
|
? { assigneeAgentId: null, assigneeUserId: input.target.slice("user:".length) }
|
|
: null;
|
|
return accessApi.archiveMember(selectedCompanyId!, input.memberId, { reassignment });
|
|
},
|
|
onSuccess: async (result) => {
|
|
setRemovingMemberId(null);
|
|
setReassignmentTarget("__unassigned");
|
|
await refreshAccessData();
|
|
if (selectedCompanyId) {
|
|
await queryClient.invalidateQueries({ queryKey: queryKeys.issues.list(selectedCompanyId) });
|
|
await queryClient.invalidateQueries({ queryKey: queryKeys.issues.listAssignedToMe(selectedCompanyId) });
|
|
await queryClient.invalidateQueries({ queryKey: queryKeys.issues.listTouchedByMe(selectedCompanyId) });
|
|
}
|
|
pushToast({
|
|
title: "Member removed",
|
|
body:
|
|
result.reassignedIssueCount > 0
|
|
? `${result.reassignedIssueCount} assigned issue${result.reassignedIssueCount === 1 ? "" : "s"} cleaned up.`
|
|
: undefined,
|
|
tone: "success",
|
|
});
|
|
},
|
|
onError: (error) => {
|
|
pushToast({
|
|
title: "Failed to remove member",
|
|
body: error instanceof Error ? error.message : "Unknown error",
|
|
tone: "error",
|
|
});
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!editingMember) return;
|
|
setDraftRole(editingMember.membershipRole);
|
|
setDraftStatus(isEditableMemberStatus(editingMember.status) ? editingMember.status : "suspended");
|
|
setDraftGrants(new Set(editingMember.grants.map((grant) => grant.permissionKey)));
|
|
}, [editingMember]);
|
|
|
|
useEffect(() => {
|
|
if (!removingMember) return;
|
|
setReassignmentTarget("__unassigned");
|
|
}, [removingMember]);
|
|
|
|
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);
|
|
const activeReassignmentUsers = members.filter(
|
|
(member) =>
|
|
member.status === "active" &&
|
|
member.principalType === "user" &&
|
|
member.id !== removingMemberId,
|
|
);
|
|
const activeReassignmentAgents = (agentsQuery.data ?? []).filter(isAssignableAgent);
|
|
const assignedIssues = assignedIssuesQuery.data ?? [];
|
|
|
|
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)_180px] 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) => {
|
|
const removalReason = member.removal?.reason ?? null;
|
|
const canArchive = member.removal?.canArchive ?? true;
|
|
return (
|
|
<div
|
|
key={member.id}
|
|
className="grid grid-cols-[minmax(0,1.5fr)_120px_120px_minmax(0,1.2fr)_180px] 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="space-y-1 text-right">
|
|
<div className="flex justify-end gap-2">
|
|
<Button size="sm" variant="outline" onClick={() => setEditingMemberId(member.id)}>
|
|
Edit
|
|
</Button>
|
|
<Button
|
|
size="sm"
|
|
variant="outline"
|
|
onClick={() => setRemovingMemberId(member.id)}
|
|
disabled={!canArchive}
|
|
title={removalReason ?? undefined}
|
|
>
|
|
<Trash2 className="mr-1 h-3.5 w-3.5" />
|
|
Remove
|
|
</Button>
|
|
</div>
|
|
{removalReason ? (
|
|
<div className="text-xs text-muted-foreground">{removalReason}</div>
|
|
) : null}
|
|
</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 EditableMemberStatus)
|
|
}
|
|
>
|
|
<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>
|
|
|
|
<Dialog open={!!removingMember} onOpenChange={(open) => !open && setRemovingMemberId(null)}>
|
|
<DialogContent className="max-w-xl">
|
|
<DialogHeader>
|
|
<DialogTitle>Remove member</DialogTitle>
|
|
<DialogDescription>
|
|
Archive {memberDisplayName(removingMember)} and move active assignments before hiding this user from assignment fields.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
{removingMember && (
|
|
<div className="space-y-5">
|
|
<div className="rounded-lg border border-border px-3 py-3">
|
|
<div className="text-sm font-medium">{memberDisplayName(removingMember)}</div>
|
|
<div className="text-sm text-muted-foreground">{removingMember.user?.email || removingMember.principalId}</div>
|
|
<div className="mt-2 text-sm text-muted-foreground">
|
|
{assignedIssuesQuery.isLoading
|
|
? "Checking assigned issues..."
|
|
: `${assignedIssues.length} open assigned issue${assignedIssues.length === 1 ? "" : "s"}`}
|
|
</div>
|
|
</div>
|
|
|
|
{assignedIssues.length > 0 ? (
|
|
<div className="space-y-2">
|
|
<div className="text-sm font-medium">Issue reassignment</div>
|
|
<select
|
|
className="w-full rounded-md border border-border bg-background px-3 py-2 text-sm"
|
|
value={reassignmentTarget}
|
|
onChange={(event) => setReassignmentTarget(event.target.value)}
|
|
>
|
|
<option value="__unassigned">Leave unassigned</option>
|
|
{activeReassignmentUsers.length > 0 ? (
|
|
<optgroup label="Humans">
|
|
{activeReassignmentUsers.map((member) => (
|
|
<option key={member.id} value={`user:${member.principalId}`}>
|
|
{memberDisplayName(member)}
|
|
</option>
|
|
))}
|
|
</optgroup>
|
|
) : null}
|
|
{activeReassignmentAgents.length > 0 ? (
|
|
<optgroup label="Agents">
|
|
{activeReassignmentAgents.map((agent) => (
|
|
<option key={agent.id} value={`agent:${agent.id}`}>
|
|
{agent.name} ({agent.role})
|
|
</option>
|
|
))}
|
|
</optgroup>
|
|
) : null}
|
|
</select>
|
|
<div className="max-h-36 overflow-auto rounded-lg border border-border">
|
|
{assignedIssues.slice(0, 6).map((issue) => (
|
|
<div key={issue.id} className="border-b border-border px-3 py-2 text-sm last:border-b-0">
|
|
<div className="font-medium">{issue.identifier ?? issue.id.slice(0, 8)}</div>
|
|
<div className="truncate text-muted-foreground">{issue.title}</div>
|
|
</div>
|
|
))}
|
|
{assignedIssues.length > 6 ? (
|
|
<div className="px-3 py-2 text-sm text-muted-foreground">
|
|
{assignedIssues.length - 6} more issue{assignedIssues.length - 6 === 1 ? "" : "s"}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)}
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => setRemovingMemberId(null)}>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
variant="destructive"
|
|
onClick={() => {
|
|
if (!removingMember) return;
|
|
archiveMemberMutation.mutate({
|
|
memberId: removingMember.id,
|
|
target: reassignmentTarget,
|
|
});
|
|
}}
|
|
disabled={archiveMemberMutation.isPending || assignedIssuesQuery.isLoading}
|
|
>
|
|
{archiveMemberMutation.isPending ? "Removing..." : "Remove member"}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function memberDisplayName(member: CompanyMember | null) {
|
|
if (!member) return "this member";
|
|
return member.user?.name?.trim() || member.user?.email || member.principalId;
|
|
}
|
|
|
|
function isAssignableAgent(agent: Agent) {
|
|
return agent.status !== "terminated" && agent.status !== "pending_approval";
|
|
}
|
|
|
|
function isEditableMemberStatus(status: CompanyMember["status"]): status is EditableMemberStatus {
|
|
return status === "pending" || status === "active" || status === "suspended";
|
|
}
|
|
|
|
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>
|
|
);
|
|
}
|