about summary refs log tree commit diff
path: root/src/view/screens/PostUpvotedBy.tsx
blob: 4bba222aee256d5d53c41b364b81929817de0c04 (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
import React, {useEffect} from 'react'
import {View} from 'react-native'
import {ViewHeader} from '../com/util/ViewHeader'
import {PostVotedBy as PostLikedByComponent} from '../com/post-thread/PostVotedBy'
import {ScreenParams} from '../routes'
import {useStores} from '../../state'
import {makeRecordUri} from '../../lib/strings'

export const PostUpvotedBy = ({navIdx, visible, params}: ScreenParams) => {
  const store = useStores()
  const {name, rkey} = params
  const uri = makeRecordUri(name, 'app.bsky.feed.post', rkey)

  useEffect(() => {
    if (visible) {
      store.nav.setTitle(navIdx, 'Liked by')
    }
  }, [store, visible, navIdx])

  return (
    <View>
      <ViewHeader title="Liked by" />
      <PostLikedByComponent uri={uri} direction="up" />
    </View>
  )
}