mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 18:10:39 +09:00
86 lines
2.9 KiB
TypeScript
86 lines
2.9 KiB
TypeScript
import { and, desc, eq, inArray, not } from "drizzle-orm";
|
|
import type { Db } from "@paperclipai/db";
|
|
import { agents, approvals, heartbeatRuns } from "@paperclipai/db";
|
|
import type { SidebarBadges } from "@paperclipai/shared";
|
|
|
|
const ACTIONABLE_APPROVAL_STATUSES = ["pending", "revision_requested"];
|
|
const FAILED_HEARTBEAT_STATUSES = ["failed", "timed_out"];
|
|
|
|
function normalizeTimestamp(value: Date | string | null | undefined): number {
|
|
if (!value) return 0;
|
|
const timestamp = new Date(value).getTime();
|
|
return Number.isFinite(timestamp) ? timestamp : 0;
|
|
}
|
|
|
|
function isDismissed(
|
|
dismissedAtByKey: ReadonlyMap<string, number>,
|
|
itemKey: string,
|
|
activityAt: Date | string | null | undefined,
|
|
) {
|
|
const dismissedAt = dismissedAtByKey.get(itemKey);
|
|
if (dismissedAt == null) return false;
|
|
return dismissedAt >= normalizeTimestamp(activityAt);
|
|
}
|
|
|
|
export function sidebarBadgeService(db: Db) {
|
|
return {
|
|
get: async (
|
|
companyId: string,
|
|
extra?: {
|
|
dismissals?: ReadonlyMap<string, number>;
|
|
joinRequests?: Array<{ id: string; updatedAt: Date | string | null; createdAt: Date | string }>;
|
|
unreadTouchedIssues?: number;
|
|
},
|
|
): Promise<SidebarBadges> => {
|
|
const actionableApprovals = await db
|
|
.select({ id: approvals.id, updatedAt: approvals.updatedAt })
|
|
.from(approvals)
|
|
.where(
|
|
and(
|
|
eq(approvals.companyId, companyId),
|
|
inArray(approvals.status, ACTIONABLE_APPROVAL_STATUSES),
|
|
),
|
|
)
|
|
.then((rows) =>
|
|
rows.filter((row) => !isDismissed(extra?.dismissals ?? new Map(), `approval:${row.id}`, row.updatedAt)).length
|
|
);
|
|
|
|
const latestRunByAgent = await db
|
|
.selectDistinctOn([heartbeatRuns.agentId], {
|
|
id: heartbeatRuns.id,
|
|
runStatus: heartbeatRuns.status,
|
|
createdAt: heartbeatRuns.createdAt,
|
|
})
|
|
.from(heartbeatRuns)
|
|
.innerJoin(agents, eq(heartbeatRuns.agentId, agents.id))
|
|
.where(
|
|
and(
|
|
eq(heartbeatRuns.companyId, companyId),
|
|
eq(agents.companyId, companyId),
|
|
not(eq(agents.status, "terminated")),
|
|
),
|
|
)
|
|
.orderBy(heartbeatRuns.agentId, desc(heartbeatRuns.createdAt));
|
|
|
|
const failedRuns = latestRunByAgent.filter((row) =>
|
|
FAILED_HEARTBEAT_STATUSES.includes(row.runStatus)
|
|
&& !isDismissed(extra?.dismissals ?? new Map(), `run:${row.id}`, row.createdAt),
|
|
).length;
|
|
|
|
const joinRequests = (extra?.joinRequests ?? []).filter((row) =>
|
|
!isDismissed(
|
|
extra?.dismissals ?? new Map(),
|
|
`join:${row.id}`,
|
|
row.updatedAt ?? row.createdAt,
|
|
)
|
|
).length;
|
|
const unreadTouchedIssues = extra?.unreadTouchedIssues ?? 0;
|
|
return {
|
|
inbox: actionableApprovals + failedRuns + joinRequests + unreadTouchedIssues,
|
|
approvals: actionableApprovals,
|
|
failedRuns,
|
|
joinRequests,
|
|
};
|
|
},
|
|
};
|
|
}
|