1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
import {type StyleProp, View, type ViewStyle} from 'react-native'
import {Trans} from '@lingui/macro'
import {atoms as a, tokens, useTheme} from '#/alf'
import {Text} from '#/components/Typography'
export function LiveIndicator({
size = 'small',
style,
}: {
size?: 'tiny' | 'small' | 'large'
style?: StyleProp<ViewStyle>
}) {
const t = useTheme()
const fontSize = {
tiny: {fontSize: 7, letterSpacing: tokens.TRACKING},
small: a.text_2xs,
large: a.text_xs,
}[size]
return (
<View
style={[
a.absolute,
a.w_full,
a.align_center,
a.pointer_events_none,
{bottom: size === 'large' ? -8 : -5},
style,
]}>
<View
style={{
backgroundColor: t.palette.negative_500,
paddingVertical: size === 'large' ? 2 : 1,
paddingHorizontal: size === 'large' ? 4 : 3,
borderRadius: size === 'large' ? 5 : tokens.borderRadius.xs,
}}>
<Text
style={[
a.text_center,
a.font_bold,
fontSize,
{color: t.palette.white},
]}>
<Trans comment="Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters">
LIVE
</Trans>
</Text>
</View>
</View>
)
}
|