From 1b32707089c9d08038d653a894b94275c5109a4f Mon Sep 17 00:00:00 2001 From: zutto Date: Sun, 18 Aug 2024 09:02:15 +0300 Subject: [PATCH] fix opencollective tracking --- src/js/plugins/opencollective.js | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/js/plugins/opencollective.js b/src/js/plugins/opencollective.js index 9e8155c..2b76186 100644 --- a/src/js/plugins/opencollective.js +++ b/src/js/plugins/opencollective.js @@ -17,6 +17,17 @@ export class OpenCollective extends shield { this.transactions().then((data) => { try { this.json = JSON.parse(data); + this.monthlyContributions(this.json.nodes).forEach((item) => { + console.log("item", item); + item = item[0]; + if (this.total[item.amount.currency] !== undefined) { + this.total[item.amount.currency] += (item.amount.value * -1); + } else { + this.total[item.amount.currency] = (item.amount.value * -1); + } + + }); + /* this.json.nodes.forEach((item) => { if (item.kind === "CONTRIBUTION" && item.order.frequency === "MONTHLY") { if (this.total[item.amount.currency] !== undefined) { @@ -26,7 +37,7 @@ export class OpenCollective extends shield { } } }); - + */ this.render(element); this.loadingEnd(element); } catch (e) { @@ -37,6 +48,24 @@ export class OpenCollective extends shield { }) } + + monthlyContributions(nodes) { + let monthly = new Map(); + nodes.forEach(node => { + //group items by node.order.createdAt + if (node.kind === "CONTRIBUTION" && node.order.frequency === "MONTHLY" && node.order.status === "ACTIVE") { + var id = `${node.oppositeAccount.id}${node.order.createdAt}`; + if (monthly[id] === undefined) { + monthly[id] = [node]; + console.log("new", id); + } + } + } + ); + console.log("monthly", monthly); + return Array.from(monthly.values()); + } + async transactions() { try { const fetch = new fetcher();