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

17 lines
535 B
JavaScript
Raw Normal View History

2021-04-23 21:59:48 +02:00
import { connect } from 'react-redux';
import { selectStakedLevelForChannelUri, selectClaimForUri, selectMyClaimIdsRaw } 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 } = comment;
return {
claim: selectClaimForUri(state, uri),
stakedLevel: selectStakedLevelForChannelUri(state, authorUri),
myChannelIds: selectMyClaimIdsRaw(state),
};
};
2021-04-23 21:59:48 +02:00
export default connect(select)(LivestreamComment);