75 lines
1.8 KiB
TypeScript
75 lines
1.8 KiB
TypeScript
import React from 'react'
|
|
import {AppBskyActorGetProfile as GetProfile} from '@atproto/api'
|
|
import {StyleProp, StyleSheet, TextStyle} from 'react-native'
|
|
import {TextLinkOnWebOnly} from './Link'
|
|
import {Text} from './text/Text'
|
|
import {LoadingPlaceholder} from './LoadingPlaceholder'
|
|
import {TypographyVariant} from 'lib/ThemeContext'
|
|
import {sanitizeDisplayName} from 'lib/strings/display-names'
|
|
import {sanitizeHandle} from 'lib/strings/handles'
|
|
import {makeProfileLink} from 'lib/routes/links'
|
|
import {useProfileQuery} from '#/state/queries/profile'
|
|
import {STALE} from '#/state/queries'
|
|
|
|
export function UserInfoText({
|
|
type = 'md',
|
|
did,
|
|
attr,
|
|
failed,
|
|
prefix,
|
|
style,
|
|
}: {
|
|
type?: TypographyVariant
|
|
did: string
|
|
attr?: keyof GetProfile.OutputSchema
|
|
loading?: string
|
|
failed?: string
|
|
prefix?: string
|
|
style?: StyleProp<TextStyle>
|
|
}) {
|
|
attr = attr || 'handle'
|
|
failed = failed || 'user'
|
|
|
|
const {data: profile, isError} = useProfileQuery({
|
|
did,
|
|
staleTime: STALE.INFINITY,
|
|
})
|
|
|
|
let inner
|
|
if (isError) {
|
|
inner = (
|
|
<Text type={type} style={style} numberOfLines={1}>
|
|
{failed}
|
|
</Text>
|
|
)
|
|
} else if (profile) {
|
|
inner = (
|
|
<TextLinkOnWebOnly
|
|
type={type}
|
|
style={style}
|
|
lineHeight={1.2}
|
|
numberOfLines={1}
|
|
href={makeProfileLink(profile)}
|
|
text={`${prefix || ''}${sanitizeDisplayName(
|
|
typeof profile[attr] === 'string' && profile[attr]
|
|
? (profile[attr] as string)
|
|
: sanitizeHandle(profile.handle),
|
|
)}`}
|
|
/>
|
|
)
|
|
} else {
|
|
inner = (
|
|
<LoadingPlaceholder
|
|
width={80}
|
|
height={8}
|
|
style={styles.loadingPlaceholder}
|
|
/>
|
|
)
|
|
}
|
|
|
|
return inner
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
loadingPlaceholder: {position: 'relative', top: 1, left: 2},
|
|
})
|