diff options
author | dan <dan.abramov@gmail.com> | 2024-10-24 20:44:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 20:44:24 +0100 |
commit | 0ecc98d0de4bcc086902f83e14da529ce6569730 (patch) | |
tree | 8617f1463b5d1868bc75aed350a1a54efee996f0 /src/view/com/util/post-embeds/index.tsx | |
parent | 3327c479575da7f5b3c3a457ec53a24ad9a2cda1 (diff) | |
download | voidsky-0ecc98d0de4bcc086902f83e14da529ce6569730.tar.zst |
Display non-post embeds in composer preview (#5647)
* Display non-post embeds in composer preview * Remove starter pack special case from ExternalLinkEmbed This should not be needed because starter pack composer preview now goes through the record preview codepath, just like in the feed/post view. * Hide record ext links if quote is present * Align remove buttons Remove the implicit top padding in record embeds and make it conditional, which is similar to how we treat external link embeds. This makes the X button appear in the same place for record embeds as with links.
Diffstat (limited to 'src/view/com/util/post-embeds/index.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/index.tsx | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx index d4982b0e2..70192c813 100644 --- a/src/view/com/util/post-embeds/index.tsx +++ b/src/view/com/util/post-embeds/index.tsx @@ -89,17 +89,29 @@ export function PostEmbeds({ if (AppBskyEmbedRecord.isView(embed)) { // custom feed embed (i.e. generator view) if (AppBskyFeedDefs.isGeneratorView(embed.record)) { - return <MaybeFeedCard view={embed.record} /> + return ( + <View style={a.mt_sm}> + <MaybeFeedCard view={embed.record} /> + </View> + ) } // list embed if (AppBskyGraphDefs.isListView(embed.record)) { - return <MaybeListCard view={embed.record} /> + return ( + <View style={a.mt_sm}> + <MaybeListCard view={embed.record} /> + </View> + ) } // starter pack embed if (AppBskyGraphDefs.isStarterPackViewBasic(embed.record)) { - return <StarterPackCard starterPack={embed.record} /> + return ( + <View style={a.mt_sm}> + <StarterPackCard starterPack={embed.record} /> + </View> + ) } // quote post @@ -203,7 +215,7 @@ export function PostEmbeds({ return <View /> } -function MaybeFeedCard({view}: {view: AppBskyFeedDefs.GeneratorView}) { +export function MaybeFeedCard({view}: {view: AppBskyFeedDefs.GeneratorView}) { const pal = usePalette('default') const moderationOpts = useModerationOpts() const moderation = React.useMemo(() => { @@ -223,7 +235,7 @@ function MaybeFeedCard({view}: {view: AppBskyFeedDefs.GeneratorView}) { ) } -function MaybeListCard({view}: {view: AppBskyGraphDefs.ListView}) { +export function MaybeListCard({view}: {view: AppBskyGraphDefs.ListView}) { const moderationOpts = useModerationOpts() const moderation = React.useMemo(() => { return moderationOpts ? moderateUserList(view, moderationOpts) : undefined @@ -238,7 +250,6 @@ function MaybeListCard({view}: {view: AppBskyGraphDefs.ListView}) { t.atoms.border_contrast_medium, a.p_md, a.rounded_sm, - a.mt_sm, ]}> <ListCard.Default view={view} /> </View> @@ -264,7 +275,6 @@ const styles = StyleSheet.create({ customFeedOuter: { borderWidth: StyleSheet.hairlineWidth, borderRadius: 8, - marginTop: 4, paddingHorizontal: 12, paddingVertical: 12, }, |