about summary refs log tree commit diff
path: root/src/view/com/util/PostMeta.tsx
blob: d9dd11e05a7a176c87f2c9e07ade420d1a065cf3 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import React from 'react'
import {StyleSheet, View} from 'react-native'
import {Text} from './text/Text'
import {DesktopWebTextLink} from './Link'
import {ago} from 'lib/strings/time'
import {usePalette} from 'lib/hooks/usePalette'
import {useStores} from 'state/index'
import {UserAvatar} from './UserAvatar'
import {observer} from 'mobx-react-lite'
import {FollowButton} from '../profile/FollowButton'
import {FollowState} from 'state/models/cache/my-follows'
import {sanitizeDisplayName} from 'lib/strings/display-names'

interface PostMetaOpts {
  authorAvatar?: string
  authorHandle: string
  authorDisplayName: string | undefined
  authorHasWarning: boolean
  postHref: string
  timestamp: string
  did?: string
  showFollowBtn?: boolean
}

export const PostMeta = observer(function (opts: PostMetaOpts) {
  const pal = usePalette('default')
  const displayName = opts.authorDisplayName || opts.authorHandle
  const handle = opts.authorHandle
  const store = useStores()
  const isMe = opts.did === store.me.did
  const followState =
    typeof opts.did === 'string'
      ? store.me.follows.getFollowState(opts.did)
      : FollowState.Unknown

  const [didFollow, setDidFollow] = React.useState(false)
  const onToggleFollow = React.useCallback(() => {
    setDidFollow(true)
  }, [setDidFollow])

  if (
    opts.showFollowBtn &&
    !isMe &&
    (followState === FollowState.NotFollowing || didFollow) &&
    opts.did
  ) {
    // two-liner with follow button
    return (
      <View style={styles.metaTwoLine}>
        <View style={styles.metaTwoLineLeft}>
          <View style={styles.metaTwoLineTop}>
            <DesktopWebTextLink
              type="lg-bold"
              style={pal.text}
              numberOfLines={1}
              lineHeight={1.2}
              text={sanitizeDisplayName(displayName)}
              href={`/profile/${opts.authorHandle}`}
            />
            <Text type="md" style={pal.textLight} lineHeight={1.2}>
              &nbsp;&middot;&nbsp;
            </Text>
            <DesktopWebTextLink
              type="md"
              style={[styles.metaItem, pal.textLight]}
              lineHeight={1.2}
              text={ago(opts.timestamp)}
              href={opts.postHref}
            />
          </View>
          <DesktopWebTextLink
            type="md"
            style={[styles.metaItem, pal.textLight]}
            lineHeight={1.2}
            numberOfLines={1}
            text={`@${handle}`}
            href={`/profile/${opts.authorHandle}`}
          />
        </View>

        <View>
          <FollowButton
            unfollowedType="default"
            did={opts.did}
            onToggleFollow={onToggleFollow}
          />
        </View>
      </View>
    )
  }

  // one-liner
  return (
    <View style={styles.meta}>
      {typeof opts.authorAvatar !== 'undefined' && (
        <View style={[styles.metaItem, styles.avatar]}>
          <UserAvatar
            avatar={opts.authorAvatar}
            size={16}
            hasWarning={opts.authorHasWarning}
          />
        </View>
      )}
      <View style={[styles.metaItem, styles.maxWidth]}>
        <DesktopWebTextLink
          type="lg-bold"
          style={pal.text}
          numberOfLines={1}
          lineHeight={1.2}
          text={
            <>
              {sanitizeDisplayName(displayName)}
              <Text
                type="md"
                style={[pal.textLight]}
                numberOfLines={1}
                lineHeight={1.2}>
                &nbsp;@{handle}
              </Text>
            </>
          }
          href={`/profile/${opts.authorHandle}`}
        />
      </View>
      <Text type="md" style={pal.textLight} lineHeight={1.2}>
        &middot;&nbsp;
      </Text>
      <DesktopWebTextLink
        type="md"
        style={[styles.metaItem, pal.textLight]}
        lineHeight={1.2}
        text={ago(opts.timestamp)}
        href={opts.postHref}
      />
    </View>
  )
})

const styles = StyleSheet.create({
  meta: {
    flexDirection: 'row',
    paddingBottom: 2,
  },
  metaTwoLine: {
    flexDirection: 'row',
    alignItems: 'center',
    justifyContent: 'space-between',
    width: '100%',
    paddingBottom: 4,
  },
  metaTwoLineLeft: {
    flex: 1,
    paddingRight: 40,
  },
  metaTwoLineTop: {
    flexDirection: 'row',
    alignItems: 'baseline',
  },
  metaItem: {
    paddingRight: 5,
  },
  avatar: {
    alignSelf: 'center',
  },
  maxWidth: {
    maxWidth: '80%',
  },
})