add random topic items count to state
This commit is contained in:
parent
5c048b2036
commit
69c2181afa
|
@ -18,7 +18,6 @@ class Home extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
console.log('nextProps', nextProps);
|
|
||||||
// This is slightly awkward - we need to check that we have all topics,
|
// This is slightly awkward - we need to check that we have all topics,
|
||||||
// But don't have a random topic yet (or at not already loading a random topic)
|
// But don't have a random topic yet (or at not already loading a random topic)
|
||||||
if ((this.props.allTopics || nextProps.allTopics) && !this.props.loadingRandomTopic && !nextProps.loadingRandomTopic && !this.props.randomTopic) {
|
if ((this.props.allTopics || nextProps.allTopics) && !this.props.loadingRandomTopic && !nextProps.loadingRandomTopic && !this.props.randomTopic) {
|
||||||
|
@ -31,6 +30,7 @@ class Home extends React.Component {
|
||||||
<div>
|
<div>
|
||||||
<RandomTopic
|
<RandomTopic
|
||||||
topicName={ this.props.randomTopic || ''}
|
topicName={ this.props.randomTopic || ''}
|
||||||
|
topicCount={ this.props.randomTopicCount }
|
||||||
videos = { this.props.randomTopicVideos || [] }
|
videos = { this.props.randomTopicVideos || [] }
|
||||||
loading = { this.props.loadingAllTopics || this.props.loadingRandomTopic }
|
loading = { this.props.loadingAllTopics || this.props.loadingRandomTopic }
|
||||||
/>
|
/>
|
||||||
|
@ -45,6 +45,7 @@ const mapStateToProps = state => ({
|
||||||
allTopics: state.topics.allTopics,
|
allTopics: state.topics.allTopics,
|
||||||
loadingAllTopics: state.topics.loadingAllTopics,
|
loadingAllTopics: state.topics.loadingAllTopics,
|
||||||
randomTopic: state.topics.randomTopic,
|
randomTopic: state.topics.randomTopic,
|
||||||
|
randomTopicCount: static.topics.randomTopicCount,
|
||||||
loadingRandomTopic: state.topics.loadingRandomTopic,
|
loadingRandomTopic: state.topics.loadingRandomTopic,
|
||||||
randomTopicVideos: state.topics.randomTopicVideos
|
randomTopicVideos: state.topics.randomTopicVideos
|
||||||
});
|
});
|
||||||
|
|
|
@ -25,7 +25,8 @@ export default function(state={}, action) {
|
||||||
case LOADED_RANDOM_TOPIC:
|
case LOADED_RANDOM_TOPIC:
|
||||||
return Object.assign({}, state, {
|
return Object.assign({}, state, {
|
||||||
loadingRandomTopic: false,
|
loadingRandomTopic: false,
|
||||||
randomTopic: action.payload.topic,
|
randomTopic: action.payload.topic.name,
|
||||||
|
randomTopicCount: action.payload.topic.items,
|
||||||
randomTopicVideos: action.payload.videos
|
randomTopicVideos: action.payload.videos
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
|
|
||||||
export default function getRandomTopic(allTopics, minVideos=4) {
|
export default function getRandomTopic(allTopics, minVideos=4) {
|
||||||
const validTopics = allTopics.filter(topic => topic.items >= minVideos);
|
const validTopics = allTopics.filter(topic => topic.items >= minVideos);
|
||||||
console.log('valid topics', validTopics);
|
return validTopics[Math.floor(Math.random() * validTopics.length)];
|
||||||
return validTopics[Math.floor(Math.random() * validTopics.length)].name;
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user