about summary refs log tree commit diff
path: root/src/view/screens/content/PostRepostedBy.tsx
blob: 000c1a7fcf0ec7e957258cd3cce5420b5f9a8a4c (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
import React, {useLayoutEffect} from 'react'
import {TouchableOpacity} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {makeRecordUri} from '../../lib/strings'
import {Shell} from '../../shell'
import type {RootTabsScreenProps} from '../../routes/types'
import {PostRepostedBy as PostRepostedByComponent} from '../../com/post-thread/PostRepostedBy'

export const PostRepostedBy = ({
  navigation,
  route,
}: RootTabsScreenProps<'PostRepostedBy'>) => {
  const {name, recordKey} = route.params
  const uri = makeRecordUri(name, 'blueskyweb.xyz:Posts', recordKey)

  useLayoutEffect(() => {
    navigation.setOptions({
      headerShown: true,
      headerTitle: 'Reposted By',
      headerLeft: () => (
        <TouchableOpacity onPress={() => navigation.goBack()}>
          <FontAwesomeIcon icon="arrow-left" />
        </TouchableOpacity>
      ),
    })
  }, [navigation])

  const onNavigateContent = (screen: string, props: Record<string, string>) => {
    // @ts-ignore it's up to the callers to supply correct params -prf
    navigation.push(screen, props)
  }

  return (
    <Shell>
      <PostRepostedByComponent
        uri={uri}
        onNavigateContent={onNavigateContent}
      />
    </Shell>
  )
}