mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 19:31:54 +03:00
lint
This commit is contained in:
parent
9cff698438
commit
2307ed827c
@ -136,7 +136,9 @@ const UpvoteContainer = (props) => {
|
|||||||
if (beneficiary) {
|
if (beneficiary) {
|
||||||
beneficiary.forEach((key, index) => {
|
beneficiary.forEach((key, index) => {
|
||||||
beneficiaries.push(
|
beneficiaries.push(
|
||||||
`${index !== 0?'\n':''}${get(key, 'account')}: ${(parseFloat(get(key, 'weight')) / 100).toFixed(2)}%`,
|
`${index !== 0 ? '\n' : ''}${get(key, 'account')}: ${(
|
||||||
|
parseFloat(get(key, 'weight')) / 100
|
||||||
|
).toFixed(2)}%`,
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -88,17 +88,17 @@ export default EStyleSheet.create({
|
|||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
},
|
},
|
||||||
popoverItemContent: {
|
popoverItemContent: {
|
||||||
flexDirection:'row',
|
flexDirection: 'row',
|
||||||
marginTop:4
|
marginTop: 4,
|
||||||
},
|
},
|
||||||
popoverContent:{
|
popoverContent: {
|
||||||
marginTop:4,
|
marginTop: 4,
|
||||||
marginBottom:8
|
marginBottom: 8,
|
||||||
},
|
},
|
||||||
detailsLabel: {
|
detailsLabel: {
|
||||||
width:120,
|
width: 120,
|
||||||
color: '$primaryDarkGray',
|
color: '$primaryDarkGray',
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
fontWeight: 'bold'
|
fontWeight: 'bold',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -266,16 +266,14 @@ class UpvoteView extends Component {
|
|||||||
const _totalPayout = totalPayout || '0.000';
|
const _totalPayout = totalPayout || '0.000';
|
||||||
const sliderColor = downvote ? '#ec8b88' : '#357ce6';
|
const sliderColor = downvote ? '#ec8b88' : '#357ce6';
|
||||||
|
|
||||||
|
|
||||||
const _payoutPopupItem = (label, value) => {
|
const _payoutPopupItem = (label, value) => {
|
||||||
return (
|
return (
|
||||||
<View style={styles.popoverItemContent} >
|
<View style={styles.popoverItemContent}>
|
||||||
<Text style={styles.detailsLabel}>{label}</Text>
|
<Text style={styles.detailsLabel}>{label}</Text>
|
||||||
<Text style={styles.detailsText}>{value}</Text>
|
<Text style={styles.detailsText}>{value}</Text>
|
||||||
</View>
|
</View>
|
||||||
)
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PopoverController>
|
<PopoverController>
|
||||||
@ -341,46 +339,50 @@ class UpvoteView extends Component {
|
|||||||
<View style={styles.popoverWrapper}>
|
<View style={styles.popoverWrapper}>
|
||||||
{isShowDetails ? (
|
{isShowDetails ? (
|
||||||
<View style={styles.popoverContent}>
|
<View style={styles.popoverContent}>
|
||||||
{promotedPayout > 0 && _payoutPopupItem(
|
{promotedPayout > 0 &&
|
||||||
intl.formatMessage({id: 'payout.promoted'}),
|
_payoutPopupItem(
|
||||||
`${'~'}$${promotedPayout}`
|
intl.formatMessage({ id: 'payout.promoted' }),
|
||||||
|
`${'~'}$${promotedPayout}`,
|
||||||
|
)}
|
||||||
|
|
||||||
|
{pendingPayout > 0 &&
|
||||||
|
_payoutPopupItem(
|
||||||
|
intl.formatMessage({ id: 'payout.potential_payout' }),
|
||||||
|
`${'~'}$${pendingPayout}`,
|
||||||
|
)}
|
||||||
|
|
||||||
|
{authorPayout > 0 &&
|
||||||
|
_payoutPopupItem(
|
||||||
|
intl.formatMessage({ id: 'payout.author_payout' }),
|
||||||
|
`${'~'}$${authorPayout}`,
|
||||||
|
)}
|
||||||
|
|
||||||
|
{_payoutPopupItem(
|
||||||
|
intl.formatMessage({ id: 'payout.curation_payout' }),
|
||||||
|
`${'~'}$${curationPayout}`,
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{pendingPayout > 0 && _payoutPopupItem(
|
{breakdownPayout &&
|
||||||
intl.formatMessage({id: 'payout.potential_payout'}),
|
pendingPayout > 0 &&
|
||||||
`${'~'}$${pendingPayout}`
|
_payoutPopupItem(
|
||||||
)}
|
intl.formatMessage({ id: 'payout.breakdown' }),
|
||||||
|
breakdownPayout,
|
||||||
|
)}
|
||||||
|
|
||||||
|
{beneficiaries.length > 0 &&
|
||||||
|
_payoutPopupItem(
|
||||||
|
intl.formatMessage({ id: 'payout.beneficiaries' }),
|
||||||
|
beneficiaries,
|
||||||
|
)}
|
||||||
|
|
||||||
{authorPayout > 0 && _payoutPopupItem(
|
{!!payoutDate &&
|
||||||
intl.formatMessage({id: 'payout.author_payout'}),
|
_payoutPopupItem(
|
||||||
`${'~'}$${authorPayout}`
|
intl.formatMessage({ id: 'payout.payout_date' }),
|
||||||
)}
|
payoutDate,
|
||||||
|
)}
|
||||||
{curationPayout > 0 && _payoutPopupItem(
|
|
||||||
intl.formatMessage({id: 'payout.curation_payout'}),
|
|
||||||
`${'~'}$${curationPayout}`
|
|
||||||
)}
|
|
||||||
|
|
||||||
{breakdownPayout && pendingPayout > 0 && _payoutPopupItem(
|
{warnZeroPayout &&
|
||||||
intl.formatMessage({id: 'payout.breakdown'}),
|
_payoutPopupItem(intl.formatMessage({ id: 'payout.warn_zero_payout' }), '')}
|
||||||
breakdownPayout
|
|
||||||
)}
|
|
||||||
|
|
||||||
{beneficiaries.length > 0 && _payoutPopupItem(
|
|
||||||
intl.formatMessage({id: 'payout.beneficiaries'}),
|
|
||||||
beneficiaries
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!!payoutDate && _payoutPopupItem(
|
|
||||||
intl.formatMessage({id: 'payout.payout_date'}),
|
|
||||||
payoutDate
|
|
||||||
)}
|
|
||||||
|
|
||||||
{warnZeroPayout && _payoutPopupItem(
|
|
||||||
intl.formatMessage({id: 'payout.warn_zero_payout'}),
|
|
||||||
''
|
|
||||||
)}
|
|
||||||
</View>
|
</View>
|
||||||
) : (
|
) : (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
|
Loading…
Reference in New Issue
Block a user