actual metrics

This commit is contained in:
m5r
2021-08-29 04:17:01 +08:00
parent 39e0b8ca03
commit 1280a4dd00
2 changed files with 37 additions and 4 deletions

View File

@ -0,0 +1,22 @@
import { resolver } from "blitz";
import db from "../../../db";
export default resolver.pipe(async () => {
const phoneNumbers = await db.phoneNumber.count();
const smsExchanged = await db.message.count();
const allPhoneCalls = await db.phoneCall.findMany();
const secondsCalled = allPhoneCalls.reduce<number>((minutes, phoneCall) => {
if (!phoneCall.duration) {
return minutes;
}
return minutes + Number.parseInt(phoneCall.duration);
}, 0);
const minutesCalled = Math.round(secondsCalled / 60);
return {
phoneNumbers,
smsExchanged,
minutesCalled,
};
});