5208be07ab
* remove help card from lists page * filtering to playlists page * refactor * clear playlists filter on escape * rename * no show playlist limit for now
17 lines
610 B
JavaScript
17 lines
610 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
selectBuiltinCollections,
|
|
selectMyPublishedPlaylistCollections,
|
|
selectMyUnpublishedCollections, // should probably distinguish types
|
|
// selectSavedCollections,
|
|
} from 'lbry-redux';
|
|
import CollectionsListMine from './view';
|
|
|
|
const select = (state) => ({
|
|
builtinCollections: selectBuiltinCollections(state),
|
|
publishedCollections: selectMyPublishedPlaylistCollections(state),
|
|
unpublishedCollections: selectMyUnpublishedCollections(state),
|
|
// savedCollections: selectSavedCollections(state),
|
|
});
|
|
|
|
export default connect(select)(CollectionsListMine);
|