c4d05a5a1a
setting to search only in language as default add channel update language selection and about bump searchable languages
13 lines
592 B
JavaScript
13 lines
592 B
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectMetadataItemForUri, makeSelectClaimForUri } from 'lbry-redux';
|
|
import ChannelAbout from './view';
|
|
|
|
const select = (state, props) => ({
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
description: makeSelectMetadataItemForUri(props.uri, 'description')(state),
|
|
website: makeSelectMetadataItemForUri(props.uri, 'website_url')(state),
|
|
email: makeSelectMetadataItemForUri(props.uri, 'email')(state),
|
|
languages: makeSelectMetadataItemForUri(props.uri, 'languages')(state),
|
|
});
|
|
|
|
export default connect(select, null)(ChannelAbout);
|