liquid-funding/app/utils/events.js

94 lines
2.7 KiB
JavaScript
Raw Normal View History

import LiquidPledgingMock from 'Embark/contracts/LiquidPledgingMock'
import LPVault from 'Embark/contracts/LPVault'
import web3 from 'Embark/web3'
const AUTHORIZE_PAYMENT = 'AuthorizePayment'
2018-12-03 13:50:15 +00:00
const GIVER_ADDED = 'GiverAdded'
const DELEGATE_ADDED = 'DelegateAdded'
const PROJECT_ADDED = 'ProjectAdded'
2018-12-14 17:48:42 +00:00
const ALL_EVENTS = 'allEvents'
2018-12-03 13:50:15 +00:00
const lookups = {
[GIVER_ADDED]: {
id: 'idGiver',
type: 'Funder'
},
[DELEGATE_ADDED]: {
id: 'idDelegate',
type: 'Delegate'
},
[PROJECT_ADDED]: {
id: 'idProject',
type: 'Project'
2018-12-03 13:50:15 +00:00
}
}
const formatVaultEvent = async event => {
const { returnValues } = event
return {
...returnValues,
ref: Number(returnValues.ref.slice(2))
}
}
const getPastVaultEvents = async event => {
const events = await LPVault.getPastEvents(event, {
addr: await web3.eth.getCoinbase(),
fromBlock: 0,
toBlock: 'latest'
})
const formattedEvents = await Promise.all(
events.map(formatVaultEvent)
)
return formattedEvents
}
const { getPledgeAdmin } = LiquidPledgingMock.methods
2018-12-02 14:46:20 +00:00
export const formatFundProfileEvent = async event => {
2018-12-03 13:50:15 +00:00
const lookup = lookups[event.event]
const { returnValues: { url, idProject } } = event
2018-12-03 13:50:15 +00:00
const idProfile = event.returnValues[lookup.id]
const { addr, commitTime, name, canceled } = await getPledgeAdmin(idProfile).call()
return {
2018-12-03 13:50:15 +00:00
idProfile,
idProject,
url,
commitTime,
name,
addr,
2018-12-03 13:50:15 +00:00
canceled,
type: lookups[event.event].type
}
}
2018-12-14 17:48:42 +00:00
const getPastEvents = async (event, raw = false) => {
2018-12-03 13:50:15 +00:00
const events = await LiquidPledgingMock.getPastEvents(event, {
addr: await web3.eth.getCoinbase(),
fromBlock: 0,
toBlock: 'latest'
})
2018-12-14 17:48:42 +00:00
if (raw) return events
2018-12-03 13:50:15 +00:00
const formattedEvents = await Promise.all(
events.map(formatFundProfileEvent)
)
return formattedEvents
}
2018-12-14 17:48:42 +00:00
export const lpEventsSubscription = async () => {
//todo add on event handlers
const events = await LiquidPledgingMock.events.allEvents({
fromBlock: 0,
toBlock: 'latest'
})
return events
}
export const getFunderProfiles = async () => await getPastEvents(GIVER_ADDED)
export const getDelegateProfiles = async () => await getPastEvents(DELEGATE_ADDED)
export const getProjectProfiles = async () => await getPastEvents(PROJECT_ADDED)
2018-12-14 17:48:42 +00:00
export const getAllLPEvents = async () => await getPastEvents(ALL_EVENTS, true)
export const getAuthorizedPayments = async () => getPastVaultEvents(AUTHORIZE_PAYMENT)
2018-12-03 13:50:15 +00:00
export const getProfileEvents = async () => {
const [ funderProfiles, delegateProfiles, projectProfiles]
= await Promise.all([getFunderProfiles(), getDelegateProfiles(), getProjectProfiles()])
return [ ...funderProfiles, ...delegateProfiles, ...projectProfiles]
2018-12-03 13:50:15 +00:00
}