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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
import React from 'react'
import {Platform, StyleSheet, View} from 'react-native'
import {Text} from './text/Text'
import {ago} from 'lib/strings/time'
import {usePalette} from 'lib/hooks/usePalette'
interface PostMetaOpts {
authorHandle: string
authorDisplayName: string | undefined
timestamp: string
}
export function PostMeta(opts: PostMetaOpts) {
const pal = usePalette('default')
let displayName = opts.authorDisplayName || opts.authorHandle
let handle = opts.authorHandle
// HACK
// Android simply cannot handle the truncation case we need
// so we have to do it manually here
// -prf
if (Platform.OS === 'android') {
if (displayName.length + handle.length > 26) {
if (displayName.length > 26) {
displayName = displayName.slice(0, 23) + '...'
} else {
handle = handle.slice(0, 23 - displayName.length) + '...'
if (handle.endsWith('....')) {
handle = handle.slice(0, -4) + '...'
}
}
}
}
return (
<View style={styles.meta}>
<View style={[styles.metaItem, styles.maxWidth]}>
<Text type="lg-bold" style={[pal.text]} numberOfLines={1}>
{displayName}
{handle ? (
<Text type="md" style={[pal.textLight]}>
{handle}
</Text>
) : undefined}
</Text>
</View>
<Text type="md" style={[styles.metaItem, pal.textLight]}>
· {ago(opts.timestamp)}
</Text>
</View>
)
}
const styles = StyleSheet.create({
meta: {
flexDirection: 'row',
alignItems: 'baseline',
paddingTop: 0,
paddingBottom: 2,
},
metaItem: {
paddingRight: 5,
},
maxWidth: {
maxWidth: '80%',
},
})
|