ee9f63a161
bugfix wip flow fix cleaning clean
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import CollectionContent from './view';
|
|
import { makeSelectClaimForUri, makeSelectClaimIsMine } from 'redux/selectors/claims';
|
|
import {
|
|
makeSelectUrlsForCollectionId,
|
|
makeSelectNameForCollectionId,
|
|
makeSelectCollectionForId,
|
|
} from 'redux/selectors/collections';
|
|
import { selectPlayingUri, selectListLoop, selectListShuffle } from 'redux/selectors/content';
|
|
import { doToggleLoopList, doToggleShuffleList } from 'redux/actions/content';
|
|
|
|
const select = (state, props) => {
|
|
const playingUri = selectPlayingUri(state);
|
|
const playingUrl = playingUri && playingUri.uri;
|
|
const claim = makeSelectClaimForUri(playingUrl)(state);
|
|
const url = claim && claim.permanent_url;
|
|
const loopList = selectListLoop(state);
|
|
const loop = loopList && loopList.collectionId === props.id && loopList.loop;
|
|
const shuffleList = selectListShuffle(state);
|
|
const shuffle = shuffleList && shuffleList.collectionId === props.id && shuffleList.newUrls;
|
|
|
|
return {
|
|
url,
|
|
collection: makeSelectCollectionForId(props.id)(state),
|
|
collectionUrls: makeSelectUrlsForCollectionId(props.id)(state),
|
|
collectionName: makeSelectNameForCollectionId(props.id)(state),
|
|
isMine: makeSelectClaimIsMine(url)(state),
|
|
loop,
|
|
shuffle,
|
|
};
|
|
};
|
|
|
|
export default connect(select, {
|
|
doToggleLoopList,
|
|
doToggleShuffleList,
|
|
})(CollectionContent);
|