New draft preview UI

This commit is contained in:
Eric Bailey
2026-01-30 16:37:36 -06:00
parent 2f20e44cc8
commit 35e66a53c5
6 changed files with 179 additions and 242 deletions
+3 -3
View File
@@ -36,7 +36,7 @@ export type RichTextProps = TextStyleProp &
* *
* Use with care - only use if you're rendering facets you're generating yourself. * Use with care - only use if you're rendering facets you're generating yourself.
*/ */
validateMentionFacets?: boolean disableMentionFacetValidation?: true
} }
export function RichText({ export function RichText({
@@ -54,7 +54,7 @@ export function RichText({
onLayout, onLayout,
onTextLayout, onTextLayout,
shouldProxyLinks, shouldProxyLinks,
validateMentionFacets, disableMentionFacetValidation,
}: RichTextProps) { }: RichTextProps) {
const richText = useMemo(() => { const richText = useMemo(() => {
if (value instanceof RichTextAPI) { if (value instanceof RichTextAPI) {
@@ -116,7 +116,7 @@ export function RichText({
if ( if (
mention && mention &&
(!validateMentionFacets || (disableMentionFacetValidation ||
AppBskyRichtextFacet.validateMention(mention).success) && AppBskyRichtextFacet.validateMention(mention).success) &&
!disableLinks !disableLinks
) { ) {
+7 -5
View File
@@ -2,15 +2,17 @@ import * as Device from 'expo-device'
import * as env from '#/env' import * as env from '#/env'
export const FALLBACK_ANDROID = 'Android'
export const FALLBACK_IOS = 'iOS'
export const FALLBACK_WEB = 'Web'
export function getDeviceName(): string { export function getDeviceName(): string {
const deviceName = Device.deviceName const deviceName = Device.deviceName
if (env.IS_ANDROID) { if (env.IS_ANDROID) {
return deviceName || 'Android' return deviceName || FALLBACK_ANDROID
} else if (env.IS_IOS) { } else if (env.IS_IOS) {
// we need an entitlement to get the real device name on iOS, so just return deviceName || FALLBACK_IOS
// return a generic name for now
return 'iOS'
} else { } else {
return 'Web' // could append browser info here return FALLBACK_WEB // could append browser info here
} }
} }
+101 -195
View File
@@ -1,18 +1,19 @@
import {useCallback, useEffect, useState} from 'react' import {useCallback, useEffect, useMemo, useState} from 'react'
import {Pressable, View} from 'react-native' import {Pressable, View} from 'react-native'
import * as VideoThumbnails from 'expo-video-thumbnails' import * as VideoThumbnails from 'expo-video-thumbnails'
import {msg, Trans} from '@lingui/macro' import {msg, plural} from '@lingui/macro'
import {useLingui} from '@lingui/react' import {useLingui} from '@lingui/react'
import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' import * as device from '#/lib/deviceName'
import {sanitizeHandle} from '#/lib/strings/handles'
import {useCurrentAccountProfile} from '#/state/queries/useCurrentAccountProfile'
import {logger} from '#/view/com/composer/drafts/state/logger' import {logger} from '#/view/com/composer/drafts/state/logger'
import {TimeElapsed} from '#/view/com/util/TimeElapsed' import {TimeElapsed} from '#/view/com/util/TimeElapsed'
import {UserAvatar} from '#/view/com/util/UserAvatar' import {atoms as a, select, useTheme} from '#/alf'
import {atoms as a, useTheme, select} from '#/alf' import {Button} from '#/components/Button'
import {Button, ButtonIcon} from '#/components/Button' import {CirclePlus_Stroke2_Corner0_Rounded as CirclePlusIcon} from '#/components/icons/CirclePlus'
import {type Props as SVGIconProps} from '#/components/icons/common'
import {DotGrid_Stroke2_Corner0_Rounded as DotsIcon} from '#/components/icons/DotGrid' import {DotGrid_Stroke2_Corner0_Rounded as DotsIcon} from '#/components/icons/DotGrid'
import {CloseQuote_Stroke2_Corner0_Rounded as CloseQuoteIcon} from '#/components/icons/Quote'
import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
import * as MediaPreview from '#/components/MediaPreview' import * as MediaPreview from '#/components/MediaPreview'
import * as Prompt from '#/components/Prompt' import * as Prompt from '#/components/Prompt'
import {RichText} from '#/components/RichText' import {RichText} from '#/components/RichText'
@@ -33,6 +34,29 @@ export function DraftItem({
const {_} = useLingui() const {_} = useLingui()
const t = useTheme() const t = useTheme()
const discardPromptControl = Prompt.usePromptControl() const discardPromptControl = Prompt.usePromptControl()
const post = draft.posts[0]
const mediaExistsOnOtherDevice =
!draft.meta.isOriginatingDevice && draft.meta.hasMissingMedia
const mediaIsMissing =
draft.meta.isOriginatingDevice && draft.meta.hasMissingMedia
const hasMetadata =
draft.meta.replyCount > 0 ||
mediaExistsOnOtherDevice ||
draft.meta.hasQuotes
const deviceName = useMemo(() => {
const raw = draft.draft.deviceName
let name = raw
switch (raw) {
case device.FALLBACK_IOS:
case device.FALLBACK_ANDROID:
case device.FALLBACK_WEB:
name = _(msg`another device`)
break
}
return name
}, [_, draft])
const handleDelete = useCallback(() => { const handleDelete = useCallback(() => {
onDelete(draft) onDelete(draft)
@@ -48,7 +72,11 @@ export function DraftItem({
onPress={() => onSelect(draft)} onPress={() => onSelect(draft)}
style={({pressed, hovered}) => [ style={({pressed, hovered}) => [
a.rounded_md, a.rounded_md,
a.border,
t.atoms.shadow_sm, t.atoms.shadow_sm,
pressed || hovered
? t.atoms.border_contrast_medium
: t.atoms.border_contrast_low,
{ {
backgroundColor: select(t.name, { backgroundColor: select(t.name, {
light: t.atoms.bg.backgroundColor, light: t.atoms.bg.backgroundColor,
@@ -56,21 +84,63 @@ export function DraftItem({
dim: t.atoms.bg_contrast_25.backgroundColor, dim: t.atoms.bg_contrast_25.backgroundColor,
}), }),
}, },
(pressed || hovered) && t.atoms.bg_contrast_50,
]}> ]}>
<View <View
style={[ style={[
a.rounded_md, a.rounded_md,
a.overflow_hidden, a.overflow_hidden,
a.p_lg, a.p_lg,
a.pb_md,
a.gap_sm,
{ {
paddingTop: 20 + a.pt_md.paddingTop, paddingTop: 20 + a.pt_md.paddingTop,
}, },
]}> ]}>
<RichText
style={[a.text_md, a.leading_snug, a.pointer_events_none]}
value={post.text}
enableTags
disableMentionFacetValidation
/>
{!mediaExistsOnOtherDevice && <DraftMediaPreview post={post} />}
{hasMetadata && (
<View style={[a.gap_xs]}>
{mediaExistsOnOtherDevice && (
<DraftMetadataTag
icon={WarningIcon}
text={_(msg`Media stored on ${deviceName}`)}
/>
)}
{mediaIsMissing && (
<DraftMetadataTag
display="warning"
icon={WarningIcon}
text={_(msg`Missing media`)}
/>
)}
{draft.meta.hasQuotes && (
<DraftMetadataTag
icon={CloseQuoteIcon}
text={_(msg`Quote post`)}
/>
)}
{draft.meta.replyCount > 0 && (
<DraftMetadataTag
icon={CirclePlusIcon}
text={plural(draft.meta.replyCount, {
one: '1 more post',
other: '# more posts',
})}
/>
)}
</View>
)}
</View> </View>
</Pressable> </Pressable>
{/* Timestamp */}
<View <View
pointerEvents="none" pointerEvents="none"
style={[ style={[
@@ -85,9 +155,9 @@ export function DraftItem({
{({timeElapsed}) => ( {({timeElapsed}) => (
<Text <Text
style={[ style={[
a.text_md, a.text_sm,
t.atoms.text_contrast_medium, t.atoms.text_contrast_medium,
a.leading_snug, a.leading_tight,
]} ]}
numberOfLines={1}> numberOfLines={1}>
{timeElapsed} {timeElapsed}
@@ -96,6 +166,7 @@ export function DraftItem({
</TimeElapsed> </TimeElapsed>
</View> </View>
{/* Menu button */}
<View <View
style={[ style={[
a.absolute, a.absolute,
@@ -151,71 +222,6 @@ export function DraftItem({
</Button> </Button>
</View> </View>
</View> </View>
</>
)
}
export function DraftItemOld({
draft,
onSelect,
onDelete,
}: {
draft: DraftSummary
onSelect: (draft: DraftSummary) => void
onDelete: (draft: DraftSummary) => void
}) {
const {_} = useLingui()
const t = useTheme()
const discardPromptControl = Prompt.usePromptControl()
const handleDelete = useCallback(() => {
onDelete(draft)
}, [onDelete, draft])
return (
<>
<Pressable
accessibilityRole="button"
accessibilityLabel={_(msg`Open draft`)}
accessibilityHint={_(msg`Opens this draft in the composer`)}
onPress={() => onSelect(draft)}
style={({pressed, hovered}) => [
a.rounded_md,
a.overflow_hidden,
a.border,
t.atoms.bg,
t.atoms.border_contrast_low,
t.atoms.shadow_sm,
(pressed || hovered) && t.atoms.bg_contrast_25,
]}>
<View style={[a.p_md, a.gap_sm]}>
{draft.hasMissingMedia && (
<View
style={[
a.rounded_sm,
a.px_sm,
a.py_xs,
a.mb_xs,
t.atoms.bg_contrast_50,
]}>
<Text style={[a.text_xs, t.atoms.text_contrast_medium]}>
<Trans>Some media unavailable (saved on another device)</Trans>
</Text>
</View>
)}
{draft.posts.map((post, index) => (
<DraftPostRow
key={post.id}
post={post}
isFirst={index === 0}
isLast={index === draft.posts.length - 1}
timestamp={draft.updatedAt}
discardPromptControl={discardPromptControl}
/>
))}
</View>
</Pressable>
<Prompt.Basic <Prompt.Basic
control={discardPromptControl} control={discardPromptControl}
@@ -229,128 +235,28 @@ export function DraftItemOld({
) )
} }
function DraftPostRow({ function DraftMetadataTag({
post, display = 'info',
isFirst, icon: Icon,
isLast, text,
timestamp,
discardPromptControl,
}: { }: {
post: DraftPostDisplay display?: 'info' | 'warning'
isFirst: boolean icon: React.ComponentType<SVGIconProps>
isLast: boolean text: string
timestamp: string
discardPromptControl: Prompt.PromptControlProps
}) { }) {
const {_} = useLingui()
const t = useTheme() const t = useTheme()
const profile = useCurrentAccountProfile() const color = {
info: t.atoms.text_contrast_medium.color,
warning: select(t.name, {
light: '#C99A00',
dark: '#FFC404',
dim: '#FFC404',
}),
}[display]
return ( return (
<View style={[a.flex_row, a.gap_sm]}> <View style={[a.flex_row, a.align_center, a.gap_xs]}>
<View style={[a.align_center]}> <Icon size="sm" fill={color} />
<UserAvatar type="user" size={42} avatar={profile?.avatar} /> <Text style={[a.text_sm, a.leading_tight, {color}]}>{text}</Text>
{!isLast && (
<View
style={[
a.flex_1,
a.mt_xs,
{
width: 2,
backgroundColor: t.palette.contrast_100,
minHeight: 8,
},
]}
/>
)}
</View>
<View style={[a.flex_1, a.gap_2xs]}>
<View style={[a.flex_row, a.align_center, a.gap_xs]}>
<View style={[a.flex_row, a.align_center, a.flex_1, a.gap_xs]}>
{profile && (
<>
<Text
style={[
a.text_md,
a.font_semi_bold,
t.atoms.text,
a.leading_snug,
]}
numberOfLines={1}>
{createSanitizedDisplayName(profile)}
</Text>
<Text
style={[
a.text_md,
t.atoms.text_contrast_medium,
a.leading_snug,
]}
numberOfLines={1}>
{sanitizeHandle(profile.handle)}
</Text>
<Text
style={[
a.text_md,
t.atoms.text_contrast_medium,
a.leading_snug,
]}>
&middot;
</Text>
</>
)}
<TimeElapsed timestamp={timestamp}>
{({timeElapsed}) => (
<Text
style={[
a.text_md,
t.atoms.text_contrast_medium,
a.leading_snug,
]}
numberOfLines={1}>
{timeElapsed}
</Text>
)}
</TimeElapsed>
</View>
{isFirst && (
<Button
label={_(msg`More options`)}
variant="ghost"
color="secondary"
shape="round"
size="tiny"
onPress={e => {
e.stopPropagation()
discardPromptControl.open()
}}>
<ButtonIcon icon={DotsIcon} />
</Button>
)}
</View>
{post.text ? (
<RichText
style={[a.text_md, a.leading_snug, a.pointer_events_none]}
value={post.text}
enableTags
validateMentionFacets={false}
/>
) : (
<Text
style={[
a.text_md,
a.leading_snug,
t.atoms.text_contrast_medium,
a.italic,
]}>
<Trans>(No text)</Trans>
</Text>
)}
<DraftMediaPreview post={post} />
</View>
</View> </View>
) )
} }
@@ -409,7 +315,7 @@ function DraftMediaPreview({post}: {post: DraftPostDisplay}) {
} }
return ( return (
<MediaPreview.Outer style={[a.pt_xs]}> <MediaPreview.Outer>
{loadedImages.map((image, i) => ( {loadedImages.map((image, i) => (
<MediaPreview.ImageItem key={i} thumbnail={image.url} alt={image.alt} /> <MediaPreview.ImageItem key={i} thumbnail={image.url} alt={image.alt} />
))} ))}
+41 -26
View File
@@ -18,9 +18,11 @@ import {
type PostDraft, type PostDraft,
} from '#/view/com/composer/state/composer' } from '#/view/com/composer/state/composer'
import {type VideoState} from '#/view/com/composer/state/video' import {type VideoState} from '#/view/com/composer/state/video'
import {type AnalyticsContextType} from '#/analytics'
import {getDeviceId} from '#/analytics/identifiers' import {getDeviceId} from '#/analytics/identifiers'
import {logger} from './logger' import {logger} from './logger'
import {type DraftPostDisplay, type DraftSummary} from './schema' import {type DraftPostDisplay, type DraftSummary} from './schema'
import * as storage from './storage'
const TENOR_HOSTNAME = 'media.tenor.com' const TENOR_HOSTNAME = 'media.tenor.com'
@@ -269,16 +271,24 @@ function serializeGif(gifMedia: {
* Convert server DraftView to DraftSummary for list display. * Convert server DraftView to DraftSummary for list display.
* Also checks which media files exist locally. * Also checks which media files exist locally.
*/ */
export function draftViewToSummary( export function draftViewToSummary({
view: AppBskyDraftDefs.DraftView, view,
localMediaExists: (path: string) => boolean, analytics,
): DraftSummary { }: {
const firstPost = view.draft.posts[0] view: AppBskyDraftDefs.DraftView
const previewText = firstPost?.text?.slice(0, 100) || '' analytics: AnalyticsContextType
}): DraftSummary {
let mediaCount = 0 const meta = {
let hasMedia = false isOriginatingDevice: view.draft.deviceId === getDeviceId(),
let hasMissingMedia = false postCount: view.draft.posts.length,
// minus anchor post
replyCount: view.draft.posts.length - 1,
hasMedia: false,
hasMissingMedia: false,
mediaCount: 0,
hasQuotes: false,
quoteCount: 0,
}
const posts: DraftPostDisplay[] = view.draft.posts.map((post, index) => { const posts: DraftPostDisplay[] = view.draft.posts.map((post, index) => {
const images: DraftPostDisplay['images'] = [] const images: DraftPostDisplay['images'] = []
@@ -288,11 +298,11 @@ export function draftViewToSummary(
// Process images // Process images
if (post.embedImages) { if (post.embedImages) {
for (const img of post.embedImages) { for (const img of post.embedImages) {
mediaCount++ meta.mediaCount++
hasMedia = true meta.hasMedia = true
const exists = localMediaExists(img.localRef.path) const exists = storage.mediaExists(img.localRef.path)
if (!exists) { if (!exists) {
hasMissingMedia = true meta.hasMissingMedia = true
} }
images.push({ images.push({
localPath: img.localRef.path, localPath: img.localRef.path,
@@ -305,11 +315,11 @@ export function draftViewToSummary(
// Process videos // Process videos
if (post.embedVideos) { if (post.embedVideos) {
for (const vid of post.embedVideos) { for (const vid of post.embedVideos) {
mediaCount++ meta.mediaCount++
hasMedia = true meta.hasMedia = true
const exists = localMediaExists(vid.localRef.path) const exists = storage.mediaExists(vid.localRef.path)
if (!exists) { if (!exists) {
hasMissingMedia = true meta.hasMissingMedia = true
} }
videos.push({ videos.push({
localPath: vid.localRef.path, localPath: vid.localRef.path,
@@ -324,13 +334,18 @@ export function draftViewToSummary(
for (const ext of post.embedExternals) { for (const ext of post.embedExternals) {
const gifData = parseGifFromUrl(ext.uri) const gifData = parseGifFromUrl(ext.uri)
if (gifData) { if (gifData) {
mediaCount++ meta.mediaCount++
hasMedia = true meta.hasMedia = true
gif = gifData gif = gifData
} }
} }
} }
if (post.embedRecords && post.embedRecords.length > 0) {
meta.quoteCount += post.embedRecords.length
meta.hasQuotes = true
}
return { return {
id: `post-${index}`, id: `post-${index}`,
text: post.text || '', text: post.text || '',
@@ -340,17 +355,17 @@ export function draftViewToSummary(
} }
}) })
if (meta.isOriginatingDevice && meta.hasMissingMedia) {
analytics.logger.warn(`Draft is missing media on originating device`, {})
}
return { return {
id: view.id, id: view.id,
draft: view.draft,
previewText,
hasMedia,
hasMissingMedia,
mediaCount,
postCount: view.draft.posts.length,
createdAt: view.createdAt, createdAt: view.createdAt,
updatedAt: view.updatedAt, updatedAt: view.updatedAt,
draft: view.draft,
posts, posts,
meta,
} }
} }
@@ -8,6 +8,7 @@ import {
import {isNetworkError} from '#/lib/strings/errors' import {isNetworkError} from '#/lib/strings/errors'
import {useAgent} from '#/state/session' import {useAgent} from '#/state/session'
import {type ComposerState} from '#/view/com/composer/state/composer' import {type ComposerState} from '#/view/com/composer/state/composer'
import {useAnalytics} from '#/analytics'
import {getDeviceId} from '#/analytics/identifiers' import {getDeviceId} from '#/analytics/identifiers'
import {composerStateToDraft, draftViewToSummary} from './api' import {composerStateToDraft, draftViewToSummary} from './api'
import {logger} from './logger' import {logger} from './logger'
@@ -20,6 +21,7 @@ const DRAFTS_QUERY_KEY = ['drafts']
*/ */
export function useDraftsQuery() { export function useDraftsQuery() {
const agent = useAgent() const agent = useAgent()
const ax = useAnalytics()
return useInfiniteQuery({ return useInfiniteQuery({
queryKey: DRAFTS_QUERY_KEY, queryKey: DRAFTS_QUERY_KEY,
@@ -30,7 +32,10 @@ export function useDraftsQuery() {
return { return {
cursor: res.data.cursor, cursor: res.data.cursor,
drafts: res.data.drafts.map(view => drafts: res.data.drafts.map(view =>
draftViewToSummary(view, path => storage.mediaExists(path)), draftViewToSummary({
view,
analytics: ax,
}),
), ),
} }
}, },
+21 -12
View File
@@ -50,22 +50,31 @@ export type DraftPostDisplay = {
*/ */
export type DraftSummary = { export type DraftSummary = {
id: string id: string
/** The full draft data from the server */
draft: AppBskyDraftDefs.Draft
/** First ~100 chars of first post */
previewText: string
/** Whether the draft has media */
hasMedia: boolean
/** Whether some media is missing (saved on another device) */
hasMissingMedia?: boolean
/** Number of media items */
mediaCount: number
/** Number of posts in thread */
postCount: number
/** ISO timestamp of creation */ /** ISO timestamp of creation */
createdAt: string createdAt: string
/** ISO timestamp of last update */ /** ISO timestamp of last update */
updatedAt: string updatedAt: string
/** The full draft data from the server */
draft: AppBskyDraftDefs.Draft
/** All posts in the draft for full display */ /** All posts in the draft for full display */
posts: DraftPostDisplay[] posts: DraftPostDisplay[]
/** Metadata about the draft for display purposes */
meta: {
/** Whether this device is the originating device for the draft */
isOriginatingDevice: boolean
/** Number of posts in thread */
postCount: number
/** Number of replies to anchor post */
replyCount: number
/** Whether the draft has media */
hasMedia: boolean
/** Whether some media is missing (saved on another device) */
hasMissingMedia?: boolean
/** Number of media items */
mediaCount: number
/** Whether any posts in the draft has quotes */
hasQuotes: boolean
/** Number of quotes in the draft */
quoteCount: number
}
} }