26 lines
762 B
TypeScript
26 lines
762 B
TypeScript
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 = ({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('Upvoted by')
|
|
}
|
|
}, [store, visible])
|
|
|
|
return (
|
|
<View>
|
|
<ViewHeader title="Upvoted by" />
|
|
<PostLikedByComponent uri={uri} direction="up" />
|
|
</View>
|
|
)
|
|
}
|