lbry-desktop/ui/component/livestreamComment/index.js

28 lines
774 B
JavaScript
Raw Normal View History

2021-04-23 21:59:48 +02:00
import { connect } from 'react-redux';
import {
selectStakedLevelForChannelUri,
selectClaimForUri,
selectMyClaimIdsRaw,
selectClaimsByUri,
selectOdyseeMembershipForChannelId,
} from 'redux/selectors/claims';
2021-04-23 21:59:48 +02:00
import LivestreamComment from './view';
const select = (state, props) => {
const { uri, comment } = props;
const { channel_url: authorUri, channel_id: channelId } = comment;
return {
claim: selectClaimForUri(state, uri),
stakedLevel: selectStakedLevelForChannelUri(state, authorUri),
myChannelIds: selectMyClaimIdsRaw(state),
claimsByUri: selectClaimsByUri(state),
odyseeMembership: selectOdyseeMembershipForChannelId(state, channelId),
};
};
2021-04-23 21:59:48 +02:00
const perform = {};
export default connect(select, perform)(LivestreamComment);