-
Notifications
You must be signed in to change notification settings - Fork 26
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
native: swipe through sibling posts in gallery #4497
Conversation
- support multiple pending actions in `useFixturePendingAction` - default "can load more" to true in both directions - start in middle of post list (to better reflect common use)
5d5882f
to
a683e40
Compare
// NB: If we're showing posts in a carousel, all carousel items share the | ||
// same editingPost. | ||
editingPost={editingPost} | ||
setEditingPost={setEditingPost} | ||
editPost={editPost} |
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.
emphasizing this comment – realizing now that I think this breaks saving drafts per thread. going to investigate more now!
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.
Makes sense to me, thank you
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.
after investigating: I tried changing the draftKey
of useChannelContext
based on the focusedPost
– this doesn't work, and just loads the same draft for all threads in the carousel:
this is because we load the draft using getDraft
on mount (around here). it'll be tough to separate the drafts per thread – we'll need to either:
- defer draft load until user has swiped to that thread (I think this would lead to bad UI and bugs)
- move the
useChannelContext
call into theSinglePostView
context – i.e. do oneuseChannelContext
per thread
I'm going afk for a few hours but I can investigate having multiple useChannelContext
s when I get back. going to open review but I understand if this is a blocking regression.
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.
Drafts not being saved in their respective thread was not caused by editingPost
, but by the get/store/clearDraft
callbacks – fixed in ccc7c34 and 4c4b211
I think we can punt on editingPost
because we don't allow editing in any carousel contexts (i.e. galleries).
Tested by drafting some replies in different threads of the same gallery, exiting app, returning, seeing that the threads had the correct drafts saved.
I also checked that editing a notebook post and saving worked; and that editing a notebook post and tapping "back" correctly discards the edit (i.e. it doesn't post the edit, it reverts to the original post when starting a second edit after dismiss).
} | ||
// TODO: lost in changes - but this is not working for me in latest | ||
// release anyways (tried by following a ref to a post in the same | ||
// thread, which has been loaded & is offscreen) |
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.
emphasizing (will delete before merge)
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.
Agree it's not working for refs in the same thread. Even with this commented out, ref clicks appear to behave the same as on develop
. I think this can be removed.
// When adding the ability to swipe through posts, we lost | ||
// the ability to show a spinner based on loading posts. I | ||
// don't think we were ever really showing this though, as we | ||
// only spun while waiting for DB load, not network load. |
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.
emphasizing (will delete before merge)
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.
I'm fine removing for now
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.
Pending passing CI and removing those noted comments, I think this is good to go.
The FlatList
approach is interesting, wouldn't have guessed that's how it's wired up. Appreciate the featureful fixtures.
Adds the ability to swipe through posts in a gallery
PostScreen
.There are some other UI and behavior changes added by @dnbrwstr (see the first commit in this PR) – most visible is changing gallery text posts to have a square frame and
$secondaryBackground
background fill.The view tree is roughly like this now:
This is a big diff because
PostScreenView
had a lot of baked-in assumptions about displaying a single post (which, in a carousel setting, would affect basic operation and would incur more loads than needed)PostScreenView
receives a big bundle of props, many of which also assumed that it was only operating on a single postHighlights:
SinglePostView
SinglePostView
, but would've made an even huger diff:useChannelContext
atPostScreen
: I could move this intoSinglePostView
, but I see that there is state managed inuseChannelContext
, and I don't know how managing multiple instances of this hook would work. (I think we should add an explicit provider for this "context," maybe the existingChannelContext
, and share state within the subtree.) For these props, I just pulled them into achannelContext
object so I could pass them around easily and hopefully aid clean up later.Screen recordings
CarouselPostScreenContent
fixture (demonstrating that loading more posts should maintain scroll position)Simulator.Screen.Recording.-.iPhone.16.Pro.-.2025-03-06.at.10.59.44.mp4
Swiping in real gallery; sending replies; following refs from/to gallery
https://github.com/user-attachments/assets/8ca62b5b-32c4-4c19-8136-5b8a4310e12e
I noticed these bugs / weird behavior which are also present in the most recent release: