34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import {
|
||
|
selectBalance,
|
||
|
selectTotalBalance,
|
||
|
selectClaimsBalance,
|
||
|
selectSupportsBalance,
|
||
|
selectTipsBalance,
|
||
|
makeSelectMetadataForUri,
|
||
|
makeSelectClaimForUri,
|
||
|
doSupportAbandonForClaim,
|
||
|
doFetchClaimListMine,
|
||
|
selectAbandonClaimSupportError,
|
||
|
} from 'lbry-redux';
|
||
|
import SupportsLiquidate from './view';
|
||
|
|
||
|
const select = (state, props) => ({
|
||
|
balance: selectBalance(state),
|
||
|
totalBalance: selectTotalBalance(state),
|
||
|
claimsBalance: selectClaimsBalance(state) || undefined,
|
||
|
supportsBalance: selectSupportsBalance(state) || undefined,
|
||
|
tipsBalance: selectTipsBalance(state) || undefined,
|
||
|
claim: makeSelectClaimForUri(props.uri)(state),
|
||
|
metadata: makeSelectMetadataForUri(props.uri)(state),
|
||
|
abandonClaimError: selectAbandonClaimSupportError(state),
|
||
|
});
|
||
|
|
||
|
const perform = dispatch => ({
|
||
|
abandonSupportForClaim: (claimId, type, keep, preview) =>
|
||
|
dispatch(doSupportAbandonForClaim(claimId, type, keep, preview)),
|
||
|
fetchClaimListMine: () => dispatch(doFetchClaimListMine()),
|
||
|
});
|
||
|
|
||
|
export default connect(select, perform)(SupportsLiquidate);
|