reformat with prettier with semicolons and tabs
This commit is contained in:
@ -1,31 +1,31 @@
|
||||
import { resolver } from "blitz"
|
||||
import { z } from "zod"
|
||||
import { resolver } from "blitz";
|
||||
import { z } from "zod";
|
||||
|
||||
import db, { Prisma } from "../../../db"
|
||||
import { decrypt } from "../../../db/_encryption"
|
||||
import getCurrentCustomer from "../../customers/queries/get-current-customer"
|
||||
import db, { Prisma } from "../../../db";
|
||||
import { decrypt } from "../../../db/_encryption";
|
||||
import getCurrentCustomer from "../../customers/queries/get-current-customer";
|
||||
|
||||
const GetConversations = z.object({
|
||||
recipient: z.string(),
|
||||
})
|
||||
});
|
||||
|
||||
export default resolver.pipe(
|
||||
resolver.zod(GetConversations),
|
||||
resolver.authorize(),
|
||||
async ({ recipient }, context) => {
|
||||
const customer = await getCurrentCustomer(null, context)
|
||||
const customer = await getCurrentCustomer(null, context);
|
||||
const conversation = await db.message.findMany({
|
||||
where: {
|
||||
OR: [{ from: recipient }, { to: recipient }],
|
||||
},
|
||||
orderBy: { sentAt: Prisma.SortOrder.asc },
|
||||
})
|
||||
});
|
||||
|
||||
return conversation.map((message) => {
|
||||
return {
|
||||
...message,
|
||||
content: decrypt(message.content, customer!.encryptionKey),
|
||||
}
|
||||
})
|
||||
};
|
||||
});
|
||||
}
|
||||
)
|
||||
);
|
||||
|
@ -1,41 +1,41 @@
|
||||
import { resolver } from "blitz"
|
||||
import { resolver } from "blitz";
|
||||
|
||||
import db, { Direction, Message, Prisma } from "../../../db"
|
||||
import getCurrentCustomer from "../../customers/queries/get-current-customer"
|
||||
import { decrypt } from "../../../db/_encryption"
|
||||
import db, { Direction, Message, Prisma } from "../../../db";
|
||||
import getCurrentCustomer from "../../customers/queries/get-current-customer";
|
||||
import { decrypt } from "../../../db/_encryption";
|
||||
|
||||
export default resolver.pipe(resolver.authorize(), async (_ = null, context) => {
|
||||
const customer = await getCurrentCustomer(null, context)
|
||||
const customer = await getCurrentCustomer(null, context);
|
||||
const messages = await db.message.findMany({
|
||||
where: { customerId: customer!.id },
|
||||
orderBy: { sentAt: Prisma.SortOrder.asc },
|
||||
})
|
||||
});
|
||||
|
||||
let conversations: Record<string, Message[]> = {}
|
||||
let conversations: Record<string, Message[]> = {};
|
||||
for (const message of messages) {
|
||||
let recipient: string
|
||||
let recipient: string;
|
||||
if (message.direction === Direction.Outbound) {
|
||||
recipient = message.to
|
||||
recipient = message.to;
|
||||
} else {
|
||||
recipient = message.from
|
||||
recipient = message.from;
|
||||
}
|
||||
|
||||
if (!conversations[recipient]) {
|
||||
conversations[recipient] = []
|
||||
conversations[recipient] = [];
|
||||
}
|
||||
|
||||
conversations[recipient]!.push({
|
||||
...message,
|
||||
content: decrypt(message.content, customer!.encryptionKey),
|
||||
})
|
||||
});
|
||||
|
||||
conversations[recipient]!.sort((a, b) => a.sentAt.getTime() - b.sentAt.getTime())
|
||||
conversations[recipient]!.sort((a, b) => a.sentAt.getTime() - b.sentAt.getTime());
|
||||
}
|
||||
conversations = Object.fromEntries(
|
||||
Object.entries(conversations).sort(
|
||||
([, a], [, b]) => b[b.length - 1]!.sentAt.getTime() - a[a.length - 1]!.sentAt.getTime()
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
return conversations
|
||||
})
|
||||
return conversations;
|
||||
});
|
||||
|
Reference in New Issue
Block a user