Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(improvement) Display eligible volume for tier calculation in the account fees #743

Merged
merged 18 commits into from
Dec 13, 2023
Merged
4 changes: 2 additions & 2 deletions public/locales/en/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,8 @@
"no_data": "No related data for this period is available or data should be synced.",
"fees": {
"title": "Account Fees",
"sub_title": "Based on your trading volume",
"sub_title": "Based on your 30 days eligible trading volume",
"fee_tier_volume": "Eligible Trading Volume",
"maker": "Maker Fees",
"taker_crypto": "Taker Fees Crypto",
"taker_fiat": "Taker Fees Fiat",
Expand All @@ -638,7 +639,6 @@
},
"by_asset":{
"title": "Summary by Asset",
"sub_title": "For the last 30 days",
"currency": "Currency",
"amount": "Amount",
"balance": "Balance",
Expand Down
11 changes: 7 additions & 4 deletions src/components/AppSummary/AppSummary.byAsset.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ import { isEmpty } from '@bitfinex/lib-js-util-base'
import NoData from 'ui/NoData'
import Loading from 'ui/Loading'
import DataTable from 'ui/DataTable'
import { fetchData } from 'state/summaryByAsset/actions'
import { fetchData, refresh } from 'state/summaryByAsset/actions'
import {
getPageLoading,
getDataReceived,
getSummaryByAssetTotal,
getSummaryByAssetEntries,
} from 'state/summaryByAsset/selectors'
import { getTimeRange } from 'state/timeRange/selectors'
import { getIsSyncRequired } from 'state/sync/selectors'

import { getAssetColumns } from './AppSummary.columns'
Expand All @@ -21,6 +22,7 @@ import { prepareSummaryByAssetData } from './AppSummary.helpers'
const AppSummaryByAsset = () => {
const { t } = useTranslation()
const dispatch = useDispatch()
const timeRange = useSelector(getTimeRange)
const pageLoading = useSelector(getPageLoading)
const dataReceived = useSelector(getDataReceived)
const total = useSelector(getSummaryByAssetTotal)
Expand All @@ -33,6 +35,10 @@ const AppSummaryByAsset = () => {
}
}, [dataReceived, pageLoading, isSyncRequired])

useEffect(() => {
dispatch(refresh())
}, [timeRange])

const preparedData = useMemo(
() => prepareSummaryByAssetData(entries, total, t),
[entries, total, t],
Expand Down Expand Up @@ -64,9 +70,6 @@ const AppSummaryByAsset = () => {
<div className='app-summary-item-title'>
{t('summary.by_asset.title')}
</div>
<div className='app-summary-item-sub-title'>
{t('summary.by_asset.sub_title')}
</div>
{showContent}
</div>
)
Expand Down
12 changes: 12 additions & 0 deletions src/components/AppSummary/AppSummary.columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,25 @@ import {

export const getFeesColumns = ({
makerFee,
feeTierVolume,
isTurkishSite,
derivTakerFee,
takerFeeToFiat,
takerFeeToStable,
takerFeeToCrypto,
derivMakerRebate,
}) => [
{
id: 'feeTierVolume',
name: 'summary.fees.fee_tier_volume',
width: 100,
renderer: () => (
<Cell>
$
{formatUsdValue(feeTierVolume)}
</Cell>
),
},
{
id: 'makerFee',
name: 'summary.fees.maker',
Expand Down
9 changes: 8 additions & 1 deletion src/components/AppSummary/AppSummary.fees.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { memo } from 'react'
import React, { memo, useMemo } from 'react'
import PropTypes from 'prop-types'
import { isEmpty } from '@bitfinex/lib-js-util-base'

Expand All @@ -7,6 +7,7 @@ import Loading from 'ui/Loading'
import CollapsedTable from 'ui/CollapsedTable'

import { getFeesColumns } from './AppSummary.columns'
import { getFeeTierVolume } from './AppSummary.helpers'

const AppSummaryFees = ({
t,
Expand All @@ -24,8 +25,14 @@ const AppSummaryFees = ({
derivMakerRebate = 0,
} = data

const feeTierVolume = useMemo(
() => getFeeTierVolume(data),
[data],
)

const columns = getFeesColumns({
makerFee,
feeTierVolume,
isTurkishSite,
derivTakerFee,
takerFeeToFiat,
Expand Down
2 changes: 2 additions & 0 deletions src/components/AppSummary/AppSummary.helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ export const shouldShowPercentCheck = (balance, balanceChange) => {
if (bal === balChange) return false
return true
}

export const getFeeTierVolume = (data) => data?.trade_vol_30d?.at(-1)?.vol_safe ?? 0
2 changes: 1 addition & 1 deletion src/components/AppSummary/AppSummary.value.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const AccountSummaryValue = () => {
{formattedPercValue}
</div>
<Chart
aspect={1.675}
aspect={1.455}
data={chartData}
showLegend={false}
dataKeys={presentCurrencies}
Expand Down
12 changes: 8 additions & 4 deletions src/components/AppSummary/_AppSummary.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,18 @@
border-bottom: 1px solid var(--tableBorder);

&:first-child {
width: 45%;
width: 50%;
}

&:last-child {
padding: 4px 5px;
text-align: end;
word-break: break-word;
}

.cell-description {
font-size: 14px;
}
}

&:last-child {
Expand Down Expand Up @@ -131,7 +135,7 @@
.full-width-item {
width: 100%;
max-width: 100%;
min-height: 320px;
min-height: 300px;

.bp3-table-container {
box-shadow: none;
Expand Down Expand Up @@ -186,7 +190,7 @@

.loading-container {
display: flex;
min-height: 320px;
min-height: 300px;
max-width: 1000px;

.loading {
Expand All @@ -196,7 +200,7 @@

.no-data {
max-width: 1000px;
min-height: 320px;
min-height: 300px;

&-wrapper {
margin: 150px auto;
Expand Down
7 changes: 5 additions & 2 deletions src/state/summaryByAsset/saga.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@ import {
import { makeFetchCall } from 'state/utils'
import { updateErrorStatus } from 'state/status/actions'
import { getIsSyncRequired } from 'state/sync/selectors'
import { getTimeFrame } from 'state/timeRange/selectors'

import types from './constants'
import actions from './actions'

export const getReqSummaryByAsset = () => makeFetchCall('getSummaryByAsset')
export const getReqSummaryByAsset = (params) => makeFetchCall('getSummaryByAsset', params)

export function* fetchSummaryByAsset() {
try {
const { result = {}, error } = yield call(getReqSummaryByAsset)
const { start, end } = yield select(getTimeFrame)
const params = { start, end }
const { result = {}, error } = yield call(getReqSummaryByAsset, params)
yield put(actions.updateData(result))

if (error) {
Expand Down
13 changes: 10 additions & 3 deletions src/ui/CollapsedTable/CollapsedTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,20 @@ class CollapsedTable extends PureComponent {
<div className='collapsed-table-item' key={rowIndex}>
{tableColumns.map((column) => {
const {
id, name, nameStr, renderer,
id, name, nameStr, renderer, description,
} = column
const cell = renderer(rowIndex)

return (
<div key={id}>
<div>{nameStr || t(name)}</div>
<div>
{nameStr || t(name)}
<br />
{description && (
<span className='cell-description'>
{t(description)}
</span>
)}
</div>
<div>{cell.props.children}</div>
</div>
)
Expand Down