liquid-funding/app/actions/lpEvents.js
2019-01-19 10:08:16 -05:00

48 lines
1.3 KiB
JavaScript

import { Q } from '@nozbe/watermelondb'
import database from '../db'
const lpCollection = database.collections.get('lp_events')
export const addEvent = async data => {
await database.action(async () => {
const res = await lpCollection.create(lpEvent => {
const { event, address, id, blockNumber } = data
lpEvent.eventId = id
lpEvent.address = address
lpEvent.event = event
lpEvent.blockNumber = blockNumber
})
return res
})
}
export const batchAddEvents = async events => {
const batch = events.map(e => {
return lpCollection.prepareCreate(lpEvent => {
const { event, address, id, blockNumber } = e
lpEvent.eventId = id
lpEvent.address = address
lpEvent.event = event
lpEvent.blockNumber = blockNumber
})
})
return await database.action(async () => await database.batch(...batch))
}
//TODO getProfileEvents
export const getLpEventById = async id => {
const event = await lpCollection.query(
Q.where('event_id', id)
).fetch()
return event
}
export const getLastBlockStored = async () => {
const col = await lpCollection.query().fetch()
const blockNumber = col.length
? col.sort((a,b) => b.blockNumber - a.blockNumber)[0].blockNumber
: 0
return blockNumber
}