refactor: function rename and promise handling
This commit is contained in:
parent
accd6d3e15
commit
3aecef0ee3
1 changed files with 9 additions and 10 deletions
|
|
@ -64,6 +64,10 @@ const DetailsRow = ({ it: tx }) => {
|
||||||
|
|
||||||
const zip = new JSZip()
|
const zip = new JSZip()
|
||||||
|
|
||||||
|
const [fetchSummary] = useLazyQuery(TX_SUMMARY, {
|
||||||
|
onCompleted: data => createCsv(data)
|
||||||
|
})
|
||||||
|
|
||||||
const fiat = Number.parseFloat(tx.fiat)
|
const fiat = Number.parseFloat(tx.fiat)
|
||||||
const crypto = toUnit(new BigNumber(tx.cryptoAtoms), tx.cryptoCode)
|
const crypto = toUnit(new BigNumber(tx.cryptoAtoms), tx.cryptoCode)
|
||||||
const commissionPercentage = Number.parseFloat(tx.commissionPercentage, 2)
|
const commissionPercentage = Number.parseFloat(tx.commissionPercentage, 2)
|
||||||
|
|
@ -91,21 +95,16 @@ const DetailsRow = ({ it: tx }) => {
|
||||||
.add(MINUTES_OFFSET, 'm')
|
.add(MINUTES_OFFSET, 'm')
|
||||||
.format()
|
.format()
|
||||||
|
|
||||||
const [fetchSummary] = useLazyQuery(TX_SUMMARY, {
|
const downloadRawLogs = ({ id: txId, deviceId, txClass }) => {
|
||||||
onCompleted: data => createCsv(data)
|
|
||||||
})
|
|
||||||
|
|
||||||
const loadAndTxSummary = ({ id: txId, deviceId, txClass }) => {
|
|
||||||
fetchSummary({ variables: { txId, from, until, deviceId, txClass } })
|
fetchSummary({ variables: { txId, from, until, deviceId, txClass } })
|
||||||
}
|
}
|
||||||
|
|
||||||
const createCsv = logs => {
|
const createCsv = async logs => {
|
||||||
const zipFilename = `tx_${tx.id}_summary.zip`
|
const zipFilename = `tx_${tx.id}_summary.zip`
|
||||||
const filesNames = R.keys(logs)
|
const filesNames = R.keys(logs)
|
||||||
R.map(name => zip.file(name + '.csv', logs[name]), filesNames)
|
R.map(name => zip.file(name + '.csv', logs[name]), filesNames)
|
||||||
zip.generateAsync({ type: 'blob' }).then(function(content) {
|
const content = await zip.generateAsync({ type: 'blob' })
|
||||||
FileSaver.saveAs(content, zipFilename)
|
FileSaver.saveAs(content, zipFilename)
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const errorElements = (
|
const errorElements = (
|
||||||
|
|
@ -263,7 +262,7 @@ const DetailsRow = ({ it: tx }) => {
|
||||||
{
|
{
|
||||||
<div
|
<div
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
loadAndTxSummary(tx)
|
downloadRawLogs(tx)
|
||||||
}}>
|
}}>
|
||||||
<Label>Other actions</Label>
|
<Label>Other actions</Label>
|
||||||
<ActionButton
|
<ActionButton
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue