about summary refs log tree commit diff
path: root/src/view/com/util/PostMeta.tsx
blob: e89edec35464c60ad89397e86516d805f69d9808 (plain) (blame)
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
import React, {useMemo} from 'react'
import {StyleSheet, Text, View} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {Link} from '../util/Link'
import {PostDropdownBtn} from '../util/DropdownBtn'
import {s} from '../../lib/styles'
import {ago} from '../../lib/strings'

interface PostMetaOpts {
  itemHref: string
  itemTitle: string
  authorHref: string
  authorHandle: string
  authorDisplayName: string | undefined
  timestamp: string
  isAuthor: boolean
  onDeletePost: () => void
}

export function PostMeta(opts: PostMetaOpts) {
  return (
    <View style={styles.meta}>
      <Link
        style={styles.metaItem}
        href={opts.authorHref}
        title={opts.authorHandle}>
        <Text style={[s.f17, s.bold]} numberOfLines={1}>
          {opts.authorDisplayName || opts.authorHandle}
          <Text style={[s.f15, s.gray5, s.normal]} numberOfLines={1}>
            &nbsp;{opts.authorHandle}
          </Text>
        </Text>
      </Link>
      <Text style={[styles.metaItem, s.f15, s.gray5]}>
        &middot; {ago(opts.timestamp)}
      </Text>
      <View style={s.flex1} />
      <PostDropdownBtn
        style={styles.metaItem}
        itemHref={opts.itemHref}
        itemTitle={opts.itemTitle}
        isAuthor={opts.isAuthor}
        onDeletePost={opts.onDeletePost}>
        <FontAwesomeIcon icon="ellipsis-h" size={14} style={[s.mt2, s.mr5]} />
      </PostDropdownBtn>
    </View>
  )
}

const styles = StyleSheet.create({
  meta: {
    flexDirection: 'row',
    alignItems: 'center',
    paddingTop: 2,
    paddingBottom: 2,
  },
  metaItem: {
    paddingRight: 5,
    maxWidth: '75%',
  },
})