lbry-desktop/src/ui/page/channel/index.js

21 lines
522 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2017-05-13 00:50:51 +02:00
import {
makeSelectClaimIsMine,
2019-05-07 04:35:04 +02:00
makeSelectTitleForUri,
makeSelectThumbnailForUri,
makeSelectCoverForUri,
2018-04-18 06:03:01 +02:00
} from 'lbry-redux';
import ChannelPage from './view';
2017-09-08 05:15:05 +02:00
const select = (state, props) => ({
2019-05-07 04:35:04 +02:00
title: makeSelectTitleForUri(props.uri)(state),
thumbnail: makeSelectThumbnailForUri(props.uri)(state),
cover: makeSelectCoverForUri(props.uri)(state),
channelIsMine: makeSelectClaimIsMine(props.uri)(state),
2017-09-08 05:15:05 +02:00
});
2017-05-04 05:44:08 +02:00
export default connect(
select,
2019-05-07 04:35:04 +02:00
null
)(ChannelPage);