lbry-desktop/ui/component/transactionListTable/internal/txo-list-item.jsx

152 lines
4.3 KiB
React
Raw Normal View History

// @flow
import * as ICONS from 'constants/icons';
import React from 'react';
import ButtonTransaction from 'component/common/transaction-link';
import CreditAmount from 'component/common/credit-amount';
import DateTime from 'component/dateTime';
import Button from 'component/button';
2020-04-14 22:37:20 +02:00
import Spinner from 'component/spinner';
2020-04-15 16:12:54 +02:00
import { toCapitalCase } from 'util/string';
import { buildURI, parseURI, TXO_LIST as TXO, ABANDON_STATES } from 'lbry-redux';
type Props = {
txo: Txo,
2020-04-14 22:37:20 +02:00
revokeClaim: (Txo, (string) => void) => void,
isRevokeable: boolean,
reward: ?{
reward_title: string,
},
};
type State = {
2020-04-14 22:37:20 +02:00
abandonState: string,
};
class TxoListItem extends React.PureComponent<Props, State> {
constructor() {
super();
this.state = { abandonState: ABANDON_STATES.READY };
(this: any).abandonClaim = this.abandonClaim.bind(this);
(this: any).getLink = this.getLink.bind(this);
}
2020-05-22 03:19:01 +02:00
getLink(type: string, tip: boolean) {
2020-04-14 22:37:20 +02:00
const { abandonState } = this.state;
if (this.state.abandonState === ABANDON_STATES.PENDING) {
2020-04-14 22:37:20 +02:00
return <Spinner type={'small'} />;
}
2020-05-22 03:19:01 +02:00
if (tip && type === TXO.SUPPORT) {
return (
<Button
disabled={abandonState === ABANDON_STATES.DONE}
button="secondary"
icon={ICONS.UNLOCK}
onClick={this.abandonClaim}
title={__('Unlock Tip')}
/>
);
}
const abandonTitle = type === TXO.SUPPORT ? 'Abandon Support' : 'Abandon Claim';
return (
<Button
disabled={abandonState === ABANDON_STATES.DONE}
button="secondary"
icon={ICONS.DELETE}
onClick={this.abandonClaim}
title={__(abandonTitle)}
/>
);
}
abandonClaim() {
2020-04-15 16:12:54 +02:00
this.props.revokeClaim(this.props.txo, abandonState => this.setState({ abandonState }));
}
render() {
const { reward, txo, isRevokeable } = this.props;
const {
amount,
claim_id: claimId,
normalized_name: txoListName,
timestamp,
txid,
type,
value_type: valueType,
2020-04-15 16:12:54 +02:00
is_my_input: isMyInput,
is_my_output: isMyOutput,
} = txo;
const name = txoListName;
const isMinus = (type === 'support' || type === 'payment' || type === 'other') && isMyInput && !isMyOutput;
const isTip = type === 'support' && ((isMyInput && !isMyOutput) || (!isMyInput && isMyOutput));
const date = new Date(timestamp * 1000);
// Ensure the claim name exists and is valid
let uri;
let claimName;
try {
if (name.startsWith('@')) {
({ claimName } = parseURI(name));
uri = buildURI({ channelName: claimName, channelClaimId: claimId });
} else {
({ claimName } = parseURI(name));
uri = buildURI({ streamName: claimName, streamClaimId: claimId });
}
} catch (e) {}
const dateFormat = {
month: 'short',
day: 'numeric',
year: 'numeric',
};
const forClaim = name && claimId;
return (
<tr>
<td>
{timestamp ? (
<div>
<DateTime date={date} show={DateTime.SHOW_DATE} formatOptions={dateFormat} />
<div className="table__item-label">
<DateTime date={date} show={DateTime.SHOW_TIME} />
</div>
</div>
) : (
<span className="empty">{__('Pending')}</span>
)}
</td>
<td className="table__item--actionable">
<span>
2020-06-16 01:02:03 +02:00
{(isTip && __('Tip')) ||
2020-06-16 01:18:34 +02:00
(type === 'support' && !isTip && __('Support')) ||
2020-07-23 19:02:07 +02:00
(valueType && ((valueType === 'stream' && __('Upload')) || __(toCapitalCase(valueType)))) ||
2020-04-15 16:12:54 +02:00
(type && __(toCapitalCase(type)))}
</span>{' '}
2020-05-22 03:19:01 +02:00
{isRevokeable && this.getLink(type, isTip)}
</td>
<td>
{forClaim && <Button button="link" navigate={uri} label={claimName} disabled={!date} />}
{!forClaim && reward && <span>{reward.reward_title}</span>}
</td>
<td>
<ButtonTransaction id={txid} />
</td>
<td className="table__item--align-right">
<CreditAmount
badge={false}
showPlus={isMinus}
amount={isMinus ? Number(0 - amount) : Number(amount)}
precision={8}
showLBC={false}
/>
</td>
</tr>
);
}
}
export default TxoListItem;