Skip to content

Commit

Permalink
fix: add all reference codes to dashboard (#936)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrader authored Jun 7, 2023
1 parent d558a89 commit 7a47922
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/graphql/queries/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ export const QUERY_PROJECT_DASHBOARD_FUNDERS = gql`
fundingTxs {
email
paidAt
amount
uuid
}
rewards {
Expand Down
21 changes: 17 additions & 4 deletions src/pages/projectDashboard/sections/ProjectContributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
Text,
Th,
Thead,
Tooltip,
Tr,
VStack,
} from '@chakra-ui/react'
Expand Down Expand Up @@ -147,11 +148,23 @@ export const ProjectContributors = () => {
},
},
{
header: 'Reference code',
header: 'Reference codes',
key: 'reference',
value(val: Funder) {
const tx = val.fundingTxs.find((tx) => tx.paidAt)
return tx?.uuid || '-'
render({ fundingTxs }: Funder) {
return (
<VStack alignItems="start">
{fundingTxs
.filter((tx) => Boolean(tx.paidAt))
.map((tx) => (
<Tooltip
key={tx.uuid}
label={<SatoshiAmount>{tx.amount}</SatoshiAmount>}
>
<Text variant="caption">{tx.uuid}</Text>
</Tooltip>
))}
</VStack>
)
},
},
],
Expand Down

0 comments on commit 7a47922

Please sign in to comment.