Phase 3.2 WS2: Mitra request activity log + control center page
- DB migration: add active_session_count column + mitra_notified index - Constants: add MISSED to NotificationResponse - Pairing service: record active_session_count on notification creation, use MISSED (not IGNORED) when another mitra accepts first - New mitra-activity.service.js: getMitraActivityLog (paginated), getMitraActivitySummary (per-mitra aggregates with acceptance rate) - New mitra-activity.routes.js: GET /internal/mitra-activity/log, GET /internal/mitra-activity/summary - Control center: new MitraActivityPage with summary table + detail log, filters (mitra, date range), color-coded response types, pagination - Register route in App.jsx, add "Aktivitas Mitra" nav link in Layout Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -6,6 +6,7 @@ import { rolesRoutes } from './routes/internal/roles.routes.js'
|
||||
import { internalAuthRoutes } from './routes/internal/auth.routes.js'
|
||||
import { internalConfigRoutes } from './routes/internal/config.routes.js'
|
||||
import { sessionManagementRoutes } from './routes/internal/session.routes.js'
|
||||
import { mitraActivityRoutes } from './routes/internal/mitra-activity.routes.js'
|
||||
import { errorHandler } from './plugins/error-handler.js'
|
||||
|
||||
export const buildInternalApp = async () => {
|
||||
@@ -20,6 +21,7 @@ export const buildInternalApp = async () => {
|
||||
app.register(rolesRoutes, { prefix: '/internal/roles' })
|
||||
app.register(internalConfigRoutes, { prefix: '/internal/config' })
|
||||
app.register(sessionManagementRoutes, { prefix: '/internal/sessions' })
|
||||
app.register(mitraActivityRoutes, { prefix: '/internal/mitra-activity' })
|
||||
|
||||
return app
|
||||
}
|
||||
|
||||
@@ -33,6 +33,7 @@ export const MessageType = Object.freeze({
|
||||
export const NotificationResponse = Object.freeze({
|
||||
ACCEPTED: 'accepted',
|
||||
DECLINED: 'declined',
|
||||
MISSED: 'missed',
|
||||
IGNORED: 'ignored',
|
||||
})
|
||||
|
||||
|
||||
@@ -288,6 +288,18 @@ const migrate = async () => {
|
||||
ON CONFLICT (key) DO NOTHING
|
||||
`
|
||||
|
||||
// --- Phase 3.2: Mitra Request Activity Log ---
|
||||
|
||||
await sql`
|
||||
ALTER TABLE chat_request_notifications
|
||||
ADD COLUMN IF NOT EXISTS active_session_count INT NOT NULL DEFAULT 0
|
||||
`
|
||||
|
||||
await sql`
|
||||
CREATE INDEX IF NOT EXISTS idx_chat_request_notifications_mitra_notified
|
||||
ON chat_request_notifications (mitra_id, notified_at)
|
||||
`
|
||||
|
||||
console.log('Migration complete.')
|
||||
await sql.end()
|
||||
}
|
||||
|
||||
33
backend/src/routes/internal/mitra-activity.routes.js
Normal file
33
backend/src/routes/internal/mitra-activity.routes.js
Normal file
@@ -0,0 +1,33 @@
|
||||
import { authenticate, requirePermission } from '../../plugins/auth.js'
|
||||
import { getCcUserByFirebaseUid } from '../../services/cc-user.service.js'
|
||||
import { getMitraActivityLog, getMitraActivitySummary } from '../../services/mitra-activity.service.js'
|
||||
|
||||
const attachCcUser = async (request, reply) => {
|
||||
const user = await getCcUserByFirebaseUid(request.firebaseUser.uid)
|
||||
if (!user) return reply.code(403).send({
|
||||
success: false,
|
||||
error: { code: 'FORBIDDEN', message: 'Not a control center user' },
|
||||
})
|
||||
request.ccUser = user
|
||||
}
|
||||
|
||||
export const mitraActivityRoutes = async (app) => {
|
||||
app.get('/log', {
|
||||
preHandler: [authenticate, attachCcUser, requirePermission('mitra', 'read')],
|
||||
}, async (request, reply) => {
|
||||
const { mitra_id, date_from, date_to, page = 1, limit = 20 } = request.query
|
||||
const result = await getMitraActivityLog({
|
||||
mitra_id, date_from, date_to,
|
||||
page: Number(page), limit: Number(limit),
|
||||
})
|
||||
return reply.send({ success: true, data: result })
|
||||
})
|
||||
|
||||
app.get('/summary', {
|
||||
preHandler: [authenticate, attachCcUser, requirePermission('mitra', 'read')],
|
||||
}, async (request, reply) => {
|
||||
const { mitra_id, date_from, date_to } = request.query
|
||||
const result = await getMitraActivitySummary({ mitra_id, date_from, date_to })
|
||||
return reply.send({ success: true, data: result })
|
||||
})
|
||||
}
|
||||
75
backend/src/services/mitra-activity.service.js
Normal file
75
backend/src/services/mitra-activity.service.js
Normal file
@@ -0,0 +1,75 @@
|
||||
import { getDb } from '../db/client.js'
|
||||
|
||||
const sql = getDb()
|
||||
|
||||
export const getMitraActivityLog = async ({ mitra_id, date_from, date_to, page = 1, limit = 20 } = {}) => {
|
||||
const offset = (page - 1) * limit
|
||||
const conditions = []
|
||||
|
||||
if (mitra_id) conditions.push(sql`crn.mitra_id = ${mitra_id}`)
|
||||
if (date_from) conditions.push(sql`crn.notified_at >= ${date_from}`)
|
||||
if (date_to) conditions.push(sql`crn.notified_at <= ${date_to}`)
|
||||
|
||||
const where = conditions.length > 0
|
||||
? sql`WHERE ${conditions.reduce((a, b) => sql`${a} AND ${b}`)}`
|
||||
: sql``
|
||||
|
||||
const items = await sql`
|
||||
SELECT crn.id, crn.session_id, crn.mitra_id, crn.response,
|
||||
crn.notified_at, crn.responded_at, crn.active_session_count,
|
||||
m.display_name AS mitra_display_name,
|
||||
CASE WHEN crn.responded_at IS NOT NULL
|
||||
THEN EXTRACT(EPOCH FROM (crn.responded_at - crn.notified_at))::int
|
||||
ELSE NULL
|
||||
END AS response_time_seconds
|
||||
FROM chat_request_notifications crn
|
||||
INNER JOIN mitras m ON m.id = crn.mitra_id
|
||||
${where}
|
||||
ORDER BY crn.notified_at DESC
|
||||
LIMIT ${limit} OFFSET ${offset}
|
||||
`
|
||||
|
||||
const [{ count }] = await sql`
|
||||
SELECT COUNT(*) FROM chat_request_notifications crn ${where}
|
||||
`
|
||||
|
||||
return { items, total: Number(count), page, limit }
|
||||
}
|
||||
|
||||
export const getMitraActivitySummary = async ({ mitra_id, date_from, date_to } = {}) => {
|
||||
const conditions = []
|
||||
|
||||
if (mitra_id) conditions.push(sql`crn.mitra_id = ${mitra_id}`)
|
||||
if (date_from) conditions.push(sql`crn.notified_at >= ${date_from}`)
|
||||
if (date_to) conditions.push(sql`crn.notified_at <= ${date_to}`)
|
||||
|
||||
const where = conditions.length > 0
|
||||
? sql`WHERE ${conditions.reduce((a, b) => sql`${a} AND ${b}`)}`
|
||||
: sql``
|
||||
|
||||
const summaries = await sql`
|
||||
SELECT crn.mitra_id,
|
||||
m.display_name AS mitra_display_name,
|
||||
COUNT(*)::int AS total_requests,
|
||||
COUNT(*) FILTER (WHERE crn.response = 'accepted')::int AS accepted_count,
|
||||
COUNT(*) FILTER (WHERE crn.response = 'declined')::int AS rejected_count,
|
||||
COUNT(*) FILTER (WHERE crn.response = 'missed')::int AS missed_count,
|
||||
COUNT(*) FILTER (WHERE crn.response = 'ignored')::int AS ignored_count,
|
||||
ROUND(
|
||||
100.0 * COUNT(*) FILTER (WHERE crn.response = 'accepted') / NULLIF(COUNT(*), 0), 1
|
||||
) AS acceptance_rate,
|
||||
AVG(
|
||||
CASE WHEN crn.responded_at IS NOT NULL
|
||||
THEN EXTRACT(EPOCH FROM (crn.responded_at - crn.notified_at))
|
||||
ELSE NULL
|
||||
END
|
||||
)::numeric(10,1) AS avg_response_time_seconds
|
||||
FROM chat_request_notifications crn
|
||||
INNER JOIN mitras m ON m.id = crn.mitra_id
|
||||
${where}
|
||||
GROUP BY crn.mitra_id, m.display_name
|
||||
ORDER BY acceptance_rate DESC NULLS LAST
|
||||
`
|
||||
|
||||
return summaries
|
||||
}
|
||||
@@ -92,9 +92,14 @@ export const createPairingRequest = async (customerId, { duration_minutes, price
|
||||
|
||||
// Create notifications for all available mitras
|
||||
for (const mitra of availableMitras) {
|
||||
const [{ count: activeCount }] = await sql`
|
||||
SELECT COUNT(*)::int AS count FROM chat_sessions
|
||||
WHERE mitra_id = ${mitra.id}
|
||||
AND status IN (${SessionStatus.ACTIVE}, ${SessionStatus.PENDING_PAYMENT})
|
||||
`
|
||||
await sql`
|
||||
INSERT INTO chat_request_notifications (session_id, mitra_id)
|
||||
VALUES (${session.id}, ${mitra.id})
|
||||
INSERT INTO chat_request_notifications (session_id, mitra_id, active_session_count)
|
||||
VALUES (${session.id}, ${mitra.id}, ${activeCount})
|
||||
`
|
||||
// Notify mitra via WebSocket (FCM fallback if offline)
|
||||
await notifyMitra(mitra.id, {
|
||||
@@ -139,10 +144,10 @@ export const acceptPairingRequest = async (sessionId, mitraId) => {
|
||||
WHERE session_id = ${sessionId} AND mitra_id = ${mitraId}
|
||||
`
|
||||
|
||||
// Mark other mitras' notifications as ignored
|
||||
// Mark other mitras' notifications as missed (another mitra accepted)
|
||||
await sql`
|
||||
UPDATE chat_request_notifications
|
||||
SET response = ${NotificationResponse.IGNORED}, responded_at = NOW()
|
||||
SET response = ${NotificationResponse.MISSED}, responded_at = NOW()
|
||||
WHERE session_id = ${sessionId} AND mitra_id != ${mitraId} AND response IS NULL
|
||||
`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user