show more info on where zap rewards came from
This commit is contained in:
parent
f33534dd36
commit
4e9138dfdc
|
@ -292,14 +292,16 @@ export default {
|
|||
SELECT
|
||||
FLOOR(sum(msats) FILTER(WHERE type = 'POST') / 1000) AS posts,
|
||||
FLOOR(sum(msats) FILTER(WHERE type = 'COMMENT') / 1000) AS comments,
|
||||
FLOOR(sum(msats) FILTER(WHERE type = 'TIP_POST' OR type = 'TIP_COMMENT') / 1000) AS tips
|
||||
FLOOR(sum(msats) FILTER(WHERE type = 'TIP_POST') / 1000) AS "tipPosts",
|
||||
FLOOR(sum(msats) FILTER(WHERE type = 'TIP_COMMENT') / 1000) AS "tipComments"
|
||||
FROM "Earn"
|
||||
WHERE "userId" = $1 AND created_at <= $2 AND created_at >= $3
|
||||
`, Number(me.id), new Date(n.sortTime), new Date(n.minSortTime))
|
||||
sources.posts ||= 0
|
||||
sources.comments ||= 0
|
||||
sources.tips ||= 0
|
||||
if (sources.posts + sources.comments + sources.tips > 0) {
|
||||
sources.tipPosts ||= 0
|
||||
sources.tipComments ||= 0
|
||||
if (sources.posts + sources.comments + sources.tipPosts + sources.tipComments > 0) {
|
||||
return sources
|
||||
}
|
||||
|
||||
|
|
|
@ -40,7 +40,8 @@ export default gql`
|
|||
type EarnSources {
|
||||
posts: Int!
|
||||
comments: Int!
|
||||
tips: Int!
|
||||
tipPosts: Int!
|
||||
tipComments: Int!
|
||||
}
|
||||
|
||||
type Streak {
|
||||
|
|
|
@ -125,7 +125,8 @@ function EarnNotification ({ n }) {
|
|||
<div style={{ fontSize: '80%', color: 'var(--theme-grey)' }}>
|
||||
{n.sources.posts > 0 && <span>{n.sources.posts} sats for top posts</span>}
|
||||
{n.sources.comments > 0 && <span>{n.sources.posts > 0 && ' \\ '}{n.sources.comments} sats for top comments</span>}
|
||||
{n.sources.tips > 0 && <span>{(n.sources.comments > 0 || n.sources.posts > 0) && ' \\ '}{n.sources.tips} sats for zapping top content early</span>}
|
||||
{n.sources.tipPosts > 0 && <span>{(n.sources.comments > 0 || n.sources.posts > 0) && ' \\ '}{n.sources.tipPosts} sats for zapping top posts early</span>}
|
||||
{n.sources.tipComments > 0 && <span>{(n.sources.comments > 0 || n.sources.posts > 0 || n.sources.tipPosts > 0) && ' \\ '}{n.sources.tipComments} sats for zapping top comments early</span>}
|
||||
</div>}
|
||||
<div className='pb-1' style={{ lineHeight: '140%' }}>
|
||||
SN distributes the sats it earns back to its best users daily. These sats come from <Link href='/~jobs' passHref><a>jobs</a></Link>, boosts, posting fees, and donations. You can see the daily rewards pool and make a donation <Link href='/rewards' passHref><a>here</a></Link>.
|
||||
|
|
|
@ -39,7 +39,8 @@ export const NOTIFICATIONS = gql`
|
|||
sources {
|
||||
posts
|
||||
comments
|
||||
tips
|
||||
tipPosts
|
||||
tipComments
|
||||
}
|
||||
}
|
||||
... on Referral {
|
||||
|
|
Loading…
Reference in New Issue