Redux master updates #18
Labels
No labels
area: devops
area: discovery
area: docs
area: livestream
consider soon
dependencies
documentation
Epic
good first issue
hacktoberfest
help wanted
icebox
level: 1
level: 2
level: 3
level: 4
needs: exploration
needs: grooming
needs: priority
needs: repro
needs: tech design
on hold
priority: blocker
priority: high
priority: low
priority: medium
resilience
Tom's Wishlist
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
type: testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbry-react-native#18
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "redux-master-updates"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -121,2 +75,4 @@
}
this.doClaimSearch();
});
would it make sense to have a single view parameter rather than binary parameters for each view? what happens if
trendingForAllView
andsubscriptionView
both end up true? (yes, this probably shouldn't be possible)i18n
@ -121,2 +75,4 @@
}
this.doClaimSearch();
});
It's possible to have
tags
set for the component in the trending view, so trending for all has to be explicitly set in order to not pass those tags when building the options for the request.channelIds
is used to filter for content from subscribed channels, which is a whole different condition. So that's effectively 3 different states:tags
is set and is an array,channelIds
is null or emptytags
is null or empty,channelIds
is null or emptychannelIds
is set and is an array,tags
is null or empty