-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jetcaster UI updates #1498
base: main
Are you sure you want to change the base?
Jetcaster UI updates #1498
Conversation
…ns and removal of episode from queue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor comments
modifier = Modifier.fillMaxWidth() | ||
) | ||
val sharedTransitionScope = LocalSharedTransitionScope.current | ||
?: throw IllegalStateException("No SharedElementScope found") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be more appropriate to have this throw in the composition local definition (this is the practice we use)
It would also mean you don't have to have it nullable
val sharedTransitionScope = LocalSharedTransitionScope.current | ||
?: throw IllegalStateException("No SharedElementScope found") | ||
val animatedVisibilityScope = LocalAnimatedVisibilityScope.current | ||
?: throw IllegalStateException("No SharedElementScope found") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as ☝🏼 comment
when (dismissState.currentValue) { | ||
SwipeToDismissBoxValue.EndToStart -> { | ||
removeFromQueue(episode) | ||
} | ||
|
||
SwipeToDismissBoxValue.StartToEnd -> { | ||
} | ||
|
||
SwipeToDismissBoxValue.Settled -> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we're not caring about the other states, should we just use
if (dismissState.currentValue == SwipeToDismissBoxValue.EndToStart) {
removeFromQueue(episode)
}
) { | ||
val playerEpisode = uiState.episodePlayerState | ||
val currentEpisode = playerEpisode.currentEpisode ?: return | ||
|
||
val sharedTransitionScope = LocalSharedTransitionScope.current |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this also be done in the non-regular PlayerContent
s for getting the same shared element transition for tabletop mode? Or maybe this could be done within the PlayerImage
itself to avoid duplication?
[Merge after #1498] - This PR merges the home UI state into one data class to be able to show loading state and content state at the same time. - It also fixes the progress to wait for the loading to finish. - Instead of circular progress, I switched to linear progress at the top of the content, which can indicate the work while showing content **After** https://github.com/user-attachments/assets/ec3e9220-addc-4b96-9b6a-477294b6cf85 **Before** https://github.com/user-attachments/assets/c795afc3-01f6-407b-b0b6-505da33652ec
Add to Jetcaster: shared elements, swipetodismiss, lazy list animations and removal of episode from queue
Screen_recording_20241106_141006.mp4