833dd37469
* Add tip arrows UI (visual) * move tipper into its own component * simplify score calculation * Add tip txns - more specific txn types - fix transact cloud function to be able to create tip txns - insert tips into comments via a context * Refactor tipper to send tip txns * Stop tipping yourself. Disable anons. * Style tipper (smaller) * remove default exports * capitalize tooltips * rename stuff * add exhausting hook dependencies * replace context with prop threading * fix eslint unused vars * fix: thread tips correctly into fr comments
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { DonationTxn, TipTxn } from 'common/txn'
|
|
import { collection, orderBy, query, where } from 'firebase/firestore'
|
|
import { db } from './init'
|
|
import { getValues, listenForValues } from './utils'
|
|
|
|
const txnCollection = collection(db, 'txns')
|
|
|
|
const getCharityQuery = (charityId: string) =>
|
|
query(
|
|
txnCollection,
|
|
where('toType', '==', 'CHARITY'),
|
|
where('toId', '==', charityId),
|
|
orderBy('createdTime', 'desc')
|
|
)
|
|
|
|
export function listenForCharityTxns(
|
|
charityId: string,
|
|
setTxns: (txns: DonationTxn[]) => void
|
|
) {
|
|
return listenForValues<DonationTxn>(getCharityQuery(charityId), setTxns)
|
|
}
|
|
|
|
const charitiesQuery = query(txnCollection, where('toType', '==', 'CHARITY'))
|
|
|
|
export function getAllCharityTxns() {
|
|
return getValues<DonationTxn>(charitiesQuery)
|
|
}
|
|
|
|
const getTipsQuery = (contractId: string) =>
|
|
query(
|
|
txnCollection,
|
|
where('category', '==', 'TIP'),
|
|
where('data.contractId', '==', contractId)
|
|
)
|
|
|
|
export function listenForTipTxns(
|
|
contractId: string,
|
|
setTxns: (txns: TipTxn[]) => void
|
|
) {
|
|
return listenForValues<TipTxn>(getTipsQuery(contractId), setTxns)
|
|
}
|