50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import {Pressable} from 'react-native'
|
|
import * as Clipboard from 'expo-clipboard'
|
|
import {t} from '@lingui/core/macro'
|
|
|
|
import {DISCOVER_DEBUG_DIDS} from '#/lib/constants'
|
|
import {useSession} from '#/state/session'
|
|
import {atoms as a, useTheme} from '#/alf'
|
|
import * as Toast from '#/components/Toast'
|
|
import {Text} from '#/components/Typography'
|
|
import {useAnalytics} from '#/analytics'
|
|
import {IS_INTERNAL} from '#/env'
|
|
|
|
export function DiscoverDebug({
|
|
feedContext,
|
|
}: {
|
|
feedContext: string | undefined
|
|
}) {
|
|
const ax = useAnalytics()
|
|
const {currentAccount} = useSession()
|
|
const isDiscoverDebugUser =
|
|
IS_INTERNAL ||
|
|
DISCOVER_DEBUG_DIDS[currentAccount?.did || ''] ||
|
|
ax.features.enabled(ax.features.DebugFeedContext)
|
|
const theme = useTheme()
|
|
|
|
return (
|
|
isDiscoverDebugUser &&
|
|
feedContext && (
|
|
<Pressable
|
|
accessible={false}
|
|
hitSlop={10}
|
|
style={[a.absolute, {zIndex: 1000, maxWidth: 65, bottom: -4}, a.left_0]}
|
|
onPress={e => {
|
|
e.stopPropagation()
|
|
Clipboard.setStringAsync(feedContext)
|
|
Toast.show(t`Copied to clipboard`)
|
|
}}>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
color: theme.palette.contrast_400,
|
|
fontSize: 7,
|
|
}}>
|
|
{feedContext}
|
|
</Text>
|
|
</Pressable>
|
|
)
|
|
)
|
|
}
|