From 65b1db23a72f90398d097a3001ad44692bd7fe42 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 10 Mar 2025 17:48:36 -0500 Subject: [PATCH 1/2] Fix item cost in details --- api/paidAction/itemCreate.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/api/paidAction/itemCreate.js b/api/paidAction/itemCreate.js index be7a77d6..da98a234 100644 --- a/api/paidAction/itemCreate.js +++ b/api/paidAction/itemCreate.js @@ -30,8 +30,14 @@ export async function getBaseCost ({ models, bio, parentId, subName }) { const root = parent.root ?? parent - if (!root.sub) return DEFAULT_ITEM_COST - return satsToMsats(root.sub.replyCost) + // XXX Prisma does not support case-insensitive joins on CITEXT column + // so we fetch the territory in a separate query + const sub = await models.sub.findUnique({ + where: { name: root.subName } + }) + + if (!sub) return DEFAULT_ITEM_COST + return satsToMsats(sub.replyCost) } const sub = await models.sub.findUnique({ where: { name: subName } }) From ed9fa5f823e75915b86d2b970338ac253e8cc0cf Mon Sep 17 00:00:00 2001 From: k00b Date: Mon, 10 Mar 2025 20:02:55 -0500 Subject: [PATCH 2/2] fix fragment when comment visited directly + one db dip --- api/paidAction/itemCreate.js | 21 ++++++--------------- fragments/items.js | 1 + 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/api/paidAction/itemCreate.js b/api/paidAction/itemCreate.js index da98a234..fb4ae550 100644 --- a/api/paidAction/itemCreate.js +++ b/api/paidAction/itemCreate.js @@ -20,21 +20,12 @@ export async function getBaseCost ({ models, bio, parentId, subName }) { if (parentId) { // the subname is stored in the root item of the thread - const parent = await models.item.findFirst({ - where: { id: Number(parentId) }, - include: { - root: { include: { sub: true } }, - sub: true - } - }) - - const root = parent.root ?? parent - - // XXX Prisma does not support case-insensitive joins on CITEXT column - // so we fetch the territory in a separate query - const sub = await models.sub.findUnique({ - where: { name: root.subName } - }) + const [sub] = await models.$queryRaw` + SELECT s."replyCost" + FROM "Item" i + LEFT JOIN "Item" r ON r.id = i."rootId" + LEFT JOIN "Sub" s ON s.name = COALESCE(r."subName", i."subName") + WHERE i.id = ${Number(parentId)}` if (!sub) return DEFAULT_ITEM_COST return satsToMsats(sub.replyCost) diff --git a/fragments/items.js b/fragments/items.js index c9c2a8da..c58de13a 100644 --- a/fragments/items.js +++ b/fragments/items.js @@ -108,6 +108,7 @@ export const ITEM_FULL_FIELDS = gql` moderated meMuteSub meSubscription + replyCost } } forwards {