Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | 1x 1x 7x 7x 7x 7x 7x 4x 4x 3x 4x 1x 7x 7x 7x 7x 7x 5x 7x 7x 5x 2x | // CRM Notes & Activities Routes
import { Hono } from "hono";
import type { Dal } from "../../../dal";
import type { Services } from "../../../services";
import { success, handleError } from "../../../lib/response";
import {
parseRequiredId,
getPagination,
buildPaginationMeta,
} from "../../../lib/utils";
import { requireProAccess } from "../../../middleware";
type Env = {
Bindings: CloudflareBindings;
Variables: {
user: { id: string; name: string; email: string } | null;
session: unknown;
dal: Dal;
services: Services;
proId: string;
proRole: string;
};
};
const notes = new Hono<Env>();
// Add note (combined action: note + contacted + stage change)
notes.post(
"/:proId/crm/leads/:leadId/notes",
requireProAccess,
async (c) => {
try {
const services = c.get("services");
const proId = c.get("proId");
const leadId = parseRequiredId(c.req.param("leadId"), "lead");
// Verify ownership
await services.leads.verifyProOwnership(leadId, proId);
const body = await c.req.json<{
content?: string;
isContacted?: boolean;
contactMethod?: string;
newStageId?: number;
}>();
const result = await services.notes.addNote(leadId, {
content: body.content,
isContacted: body.isContacted,
contactMethod: body.contactMethod,
newStageId: body.newStageId,
});
return success(c, result, 201);
} catch (err) {
return handleError(c, err);
}
},
);
// Get activity timeline
notes.get(
"/:proId/crm/leads/:leadId/activities",
requireProAccess,
async (c) => {
try {
const services = c.get("services");
const proId = c.get("proId");
const leadId = parseRequiredId(c.req.param("leadId"), "lead");
// Verify ownership
await services.leads.verifyProOwnership(leadId, proId);
const { page, limit } = getPagination(
Number(c.req.query("page") || 1),
Number(c.req.query("limit") || 30),
);
const offset = (page - 1) * limit;
const { activities, total } = await services.notes.getActivities(
leadId,
offset,
limit,
);
return success(
c,
activities,
200,
buildPaginationMeta(total, page, limit),
);
} catch (err) {
return handleError(c, err);
}
},
);
export default notes;
|