import {View} from 'react-native' import {AppBskyEmbedVideo} from '@atproto/api' import {FeedPostSliceItem} from '#/state/queries/post-feed' import {atoms as a, useGutters} from '#/alf' import {SourceContext,VideoPostCard} from '#/components/VideoPostCard' export function PostFeedVideoGridRow({ slices, sourceContext, }: { slices: FeedPostSliceItem[] sourceContext: SourceContext }) { const gutters = useGutters(['base', 'base', 0, 'base']) const posts = slices .filter(slice => AppBskyEmbedVideo.isView(slice.post.embed)) .map(slice => slice.post) /** * This should not happen because we should be filtering out posts without * videos within the `PostFeed` component. */ if (posts.length !== slices.length) return null return ( {posts.map(post => ( ))} ) }