about summary refs log tree commit diff
path: root/src/view/screens/PostLikedBy.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/PostLikedBy.tsx')
-rw-r--r--src/view/screens/PostLikedBy.tsx26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/view/screens/PostLikedBy.tsx b/src/view/screens/PostLikedBy.tsx
new file mode 100644
index 000000000..92fae30ad
--- /dev/null
+++ b/src/view/screens/PostLikedBy.tsx
@@ -0,0 +1,26 @@
+import React, {useLayoutEffect} from 'react'
+import {TouchableOpacity} from 'react-native'
+import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {makeRecordUri} from '../lib/strings'
+import {PostLikedBy as PostLikedByComponent} from '../com/post-thread/PostLikedBy'
+import {ScreenParams} from '../routes'
+
+export const PostLikedBy = ({params}: ScreenParams) => {
+  const {name, recordKey} = params
+  const uri = makeRecordUri(name, 'blueskyweb.xyz:Posts', recordKey)
+
+  // TODO
+  // useLayoutEffect(() => {
+  //   navigation.setOptions({
+  //     headerShown: true,
+  //     headerTitle: 'Liked By',
+  //     headerLeft: () => (
+  //       <TouchableOpacity onPress={() => navigation.goBack()}>
+  //         <FontAwesomeIcon icon="arrow-left" />
+  //       </TouchableOpacity>
+  //     ),
+  //   })
+  // }, [navigation])
+
+  return <PostLikedByComponent uri={uri} />
+}