250 lines
7.7 KiB
TypeScript
250 lines
7.7 KiB
TypeScript
import {useCallback} from 'react'
|
|
import {View} from 'react-native'
|
|
import {Image} from 'expo-image'
|
|
import {type AppBskyActorDefs, type AppBskyEmbedExternal} from '@atproto/api'
|
|
import {msg, Trans} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
import {useNavigation} from '@react-navigation/native'
|
|
import {useQueryClient} from '@tanstack/react-query'
|
|
|
|
import {useOpenLink} from '#/lib/hooks/useOpenLink'
|
|
import {type NavigationProp} from '#/lib/routes/types'
|
|
import {sanitizeHandle} from '#/lib/strings/handles'
|
|
import {toNiceDomain} from '#/lib/strings/url-helpers'
|
|
import {logger} from '#/logger'
|
|
import {useModerationOpts} from '#/state/preferences/moderation-opts'
|
|
import {unstableCacheProfileView} from '#/state/queries/profile'
|
|
import {android, atoms as a, platform, tokens, useTheme, web} from '#/alf'
|
|
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
|
import * as Dialog from '#/components/Dialog'
|
|
import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfoIcon} from '#/components/icons/CircleInfo'
|
|
import {createStaticClick, SimpleInlineLinkText} from '#/components/Link'
|
|
import {
|
|
ReportDialog,
|
|
useReportDialogControl,
|
|
} from '#/components/moderation/ReportDialog'
|
|
import * as ProfileCard from '#/components/ProfileCard'
|
|
import {Text} from '#/components/Typography'
|
|
import type * as bsky from '#/types/bsky'
|
|
import {Globe_Stroke2_Corner0_Rounded} from '../icons/Globe'
|
|
import {SquareArrowTopRight_Stroke2_Corner0_Rounded as SquareArrowTopRightIcon} from '../icons/SquareArrowTopRight'
|
|
import {LiveIndicator} from './LiveIndicator'
|
|
|
|
export function LiveStatusDialog({
|
|
control,
|
|
profile,
|
|
embed,
|
|
}: {
|
|
control: Dialog.DialogControlProps
|
|
profile: bsky.profile.AnyProfileView
|
|
status: AppBskyActorDefs.StatusView
|
|
embed: AppBskyEmbedExternal.View
|
|
}) {
|
|
const navigation = useNavigation<NavigationProp>()
|
|
return (
|
|
<Dialog.Outer control={control} nativeOptions={{preventExpansion: true}}>
|
|
<Dialog.Handle difference={!!embed.external.thumb} />
|
|
<DialogInner profile={profile} embed={embed} navigation={navigation} />
|
|
</Dialog.Outer>
|
|
)
|
|
}
|
|
|
|
function DialogInner({
|
|
profile,
|
|
embed,
|
|
navigation,
|
|
}: {
|
|
profile: bsky.profile.AnyProfileView
|
|
embed: AppBskyEmbedExternal.View
|
|
navigation: NavigationProp
|
|
}) {
|
|
const {_} = useLingui()
|
|
const control = Dialog.useDialogContext()
|
|
|
|
const onPressOpenProfile = useCallback(() => {
|
|
control.close(() => {
|
|
navigation.push('Profile', {
|
|
name: profile.handle,
|
|
})
|
|
})
|
|
}, [navigation, profile.handle, control])
|
|
|
|
return (
|
|
<Dialog.ScrollableInner
|
|
label={_(msg`${sanitizeHandle(profile.handle)} is live`)}
|
|
contentContainerStyle={[a.pt_0, a.px_0]}
|
|
style={[web({maxWidth: 420}), a.overflow_hidden]}>
|
|
<LiveStatus
|
|
profile={profile}
|
|
embed={embed}
|
|
onPressOpenProfile={onPressOpenProfile}
|
|
/>
|
|
<Dialog.Close />
|
|
</Dialog.ScrollableInner>
|
|
)
|
|
}
|
|
|
|
export function LiveStatus({
|
|
profile,
|
|
embed,
|
|
padding = 'xl',
|
|
onPressOpenProfile,
|
|
}: {
|
|
profile: bsky.profile.AnyProfileView
|
|
embed: AppBskyEmbedExternal.View
|
|
padding?: 'lg' | 'xl'
|
|
onPressOpenProfile: () => void
|
|
}) {
|
|
const {_} = useLingui()
|
|
const t = useTheme()
|
|
const queryClient = useQueryClient()
|
|
const openLink = useOpenLink()
|
|
const moderationOpts = useModerationOpts()
|
|
const reportDialogControl = useReportDialogControl()
|
|
|
|
return (
|
|
<>
|
|
{embed.external.thumb && (
|
|
<View
|
|
style={[
|
|
t.atoms.bg_contrast_25,
|
|
a.w_full,
|
|
a.aspect_card,
|
|
android([
|
|
a.overflow_hidden,
|
|
{
|
|
borderTopLeftRadius: a.rounded_md.borderRadius,
|
|
borderTopRightRadius: a.rounded_md.borderRadius,
|
|
},
|
|
]),
|
|
]}>
|
|
<Image
|
|
source={embed.external.thumb}
|
|
contentFit="cover"
|
|
style={[a.absolute, a.inset_0]}
|
|
accessibilityIgnoresInvertColors
|
|
/>
|
|
<LiveIndicator
|
|
size="large"
|
|
style={[
|
|
a.absolute,
|
|
{top: tokens.space.lg, left: tokens.space.lg},
|
|
a.align_start,
|
|
]}
|
|
/>
|
|
</View>
|
|
)}
|
|
<View
|
|
style={[
|
|
a.gap_lg,
|
|
padding === 'xl'
|
|
? [a.px_xl, !embed.external.thumb ? a.pt_2xl : a.pt_lg]
|
|
: a.p_lg,
|
|
]}>
|
|
<View style={[a.w_full, a.justify_center, a.gap_2xs]}>
|
|
<Text
|
|
numberOfLines={3}
|
|
style={[a.leading_snug, a.font_semi_bold, a.text_xl]}>
|
|
{embed.external.title || embed.external.uri}
|
|
</Text>
|
|
<View style={[a.flex_row, a.align_center, a.gap_2xs]}>
|
|
<Globe_Stroke2_Corner0_Rounded
|
|
size="xs"
|
|
style={[t.atoms.text_contrast_medium]}
|
|
/>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={[a.text_sm, a.leading_snug, t.atoms.text_contrast_medium]}>
|
|
{toNiceDomain(embed.external.uri)}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
<Button
|
|
label={_(msg`Watch now`)}
|
|
size={platform({native: 'large', web: 'small'})}
|
|
color="primary"
|
|
variant="solid"
|
|
onPress={() => {
|
|
logger.metric(
|
|
'live:card:watch',
|
|
{subject: profile.did},
|
|
{statsig: true},
|
|
)
|
|
openLink(embed.external.uri, false)
|
|
}}>
|
|
<ButtonText>
|
|
<Trans>Watch now</Trans>
|
|
</ButtonText>
|
|
<ButtonIcon icon={SquareArrowTopRightIcon} />
|
|
</Button>
|
|
<View style={[t.atoms.border_contrast_low, a.border_t, a.w_full]} />
|
|
{moderationOpts && (
|
|
<ProfileCard.Header>
|
|
<ProfileCard.Avatar
|
|
profile={profile}
|
|
moderationOpts={moderationOpts}
|
|
disabledPreview
|
|
/>
|
|
{/* Ensure wide enough on web hover */}
|
|
<View style={[a.flex_1, web({minWidth: 100})]}>
|
|
<ProfileCard.NameAndHandle
|
|
profile={profile}
|
|
moderationOpts={moderationOpts}
|
|
/>
|
|
</View>
|
|
<Button
|
|
label={_(msg`Open profile`)}
|
|
size="small"
|
|
color="secondary"
|
|
variant="solid"
|
|
onPress={() => {
|
|
logger.metric(
|
|
'live:card:openProfile',
|
|
{subject: profile.did},
|
|
{statsig: true},
|
|
)
|
|
unstableCacheProfileView(queryClient, profile)
|
|
onPressOpenProfile()
|
|
}}>
|
|
<ButtonText>
|
|
<Trans>Open profile</Trans>
|
|
</ButtonText>
|
|
</Button>
|
|
</ProfileCard.Header>
|
|
)}
|
|
<View
|
|
style={[
|
|
a.flex_row,
|
|
a.align_center,
|
|
a.justify_between,
|
|
a.flex_1,
|
|
a.pt_sm,
|
|
]}>
|
|
<View style={[a.flex_row, a.align_center, a.gap_xs]}>
|
|
<CircleInfoIcon size="sm" fill={t.atoms.text_contrast_low.color} />
|
|
<Text style={[t.atoms.text_contrast_low, a.text_sm, a.flex_1]}>
|
|
<Trans>Live feature is in beta</Trans>
|
|
</Text>
|
|
</View>
|
|
<SimpleInlineLinkText
|
|
label={_(msg`Report`)}
|
|
{...createStaticClick(() => {
|
|
reportDialogControl.open()
|
|
})}
|
|
style={[a.text_sm, a.underline, t.atoms.text_contrast_medium]}>
|
|
<Trans>Report</Trans>
|
|
</SimpleInlineLinkText>
|
|
</View>
|
|
</View>
|
|
|
|
<ReportDialog
|
|
control={reportDialogControl}
|
|
subject={{
|
|
...profile.status,
|
|
$type: 'app.bsky.actor.defs#statusView',
|
|
}}
|
|
/>
|
|
</>
|
|
)
|
|
}
|