126 lines
4.7 KiB
TypeScript
126 lines
4.7 KiB
TypeScript
import { useUser } from '@clerk/clerk-react'
|
|
import React from 'react'
|
|
import { Image, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
|
|
import { Post, StatusEnum } from '../models/postModel'
|
|
|
|
type PostComponentProps = {
|
|
post: Post
|
|
fetchData: () => void
|
|
}
|
|
|
|
export const PostComponent: React.FC<PostComponentProps> = ({ post, fetchData }) => {
|
|
const { user } = useUser()
|
|
|
|
async function approvePost(postID: string) {
|
|
console.log('Approving post ' + postID)
|
|
await fetch(`http://localhost:3000/api/v1/posts/${postID}`, {
|
|
method: 'PATCH',
|
|
headers: {
|
|
Accept: 'application/json, text/plain, */*',
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({
|
|
status: 'approved'
|
|
})
|
|
}).then(() => {
|
|
fetchData()
|
|
})
|
|
}
|
|
|
|
async function denyPost(postID: string) {
|
|
console.log('Denying post ' + postID)
|
|
await fetch(`http://localhost:3000/api/v1/posts/${postID}`, {
|
|
method: 'PATCH',
|
|
headers: {
|
|
Accept: 'application/json, text/plain, */*',
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({
|
|
status: 'denied'
|
|
})
|
|
}).then(() => {
|
|
fetchData()
|
|
})
|
|
}
|
|
|
|
return (
|
|
<View key={post._id} style={styles.posts}>
|
|
<Text style={styles.text}>{post._id}</Text>
|
|
<View style={{ alignItems: 'center', marginVertical: 10 }}>
|
|
<Image
|
|
source={{ uri: post.photo }}
|
|
style={{ width: 200, height: 200, borderRadius: 8 }}
|
|
resizeMode='cover'
|
|
/>
|
|
</View>
|
|
<Text style={{ color: '#fff' }}>{post.notes}</Text>
|
|
{user?.publicMetadata.role !== 'admin' && (
|
|
<View style={{ flexDirection: 'row', justifyContent: 'space-between', marginTop: 10 }}>
|
|
{post.status === StatusEnum.Created && (
|
|
<Text style={[styles.created, styles.statusTag]}>Created</Text>
|
|
)}
|
|
{post.status === StatusEnum.Pending && (
|
|
<Text style={[styles.pending, styles.statusTag]}>Pending</Text>
|
|
)}
|
|
{post.status === StatusEnum.Denied && <Text style={[styles.denied, styles.statusTag]}>Denied</Text>}
|
|
{post.status === StatusEnum.Approved && (
|
|
<Text style={[styles.approved, styles.statusTag]}>Approved</Text>
|
|
)}
|
|
</View>
|
|
)}
|
|
{user?.publicMetadata.role === 'admin' && (
|
|
<View style={{ flexDirection: 'row', justifyContent: 'space-between', marginTop: 10 }}>
|
|
<TouchableOpacity style={{ flex: 1, marginRight: 5 }} onPress={() => denyPost(post._id)}>
|
|
<Text
|
|
style={{
|
|
backgroundColor: '#bf3636ff',
|
|
color: '#fff',
|
|
textAlign: 'center',
|
|
padding: 8,
|
|
borderRadius: 4
|
|
}}
|
|
>
|
|
Deny
|
|
</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity style={{ flex: 1, marginLeft: 5 }} onPress={() => approvePost(post._id)}>
|
|
<Text
|
|
style={{
|
|
backgroundColor: '#17be3bff',
|
|
color: '#fff',
|
|
textAlign: 'center',
|
|
padding: 8,
|
|
borderRadius: 4
|
|
}}
|
|
>
|
|
Approve
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
)}
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
text: {
|
|
color: '#fff',
|
|
justifyContent: 'center'
|
|
},
|
|
posts: {
|
|
marginTop: 10,
|
|
backgroundColor: '#373d44ff',
|
|
borderColor: '#626e7aff',
|
|
borderStyle: 'solid',
|
|
borderWidth: 1,
|
|
borderRadius: 12,
|
|
padding: 10,
|
|
width: '100%'
|
|
},
|
|
statusTag: { paddingVertical: 3, paddingHorizontal: 10, borderRadius: 6 },
|
|
created: { backgroundColor: '#0d6efd', color: '#ffffff' },
|
|
pending: { backgroundColor: '#ffc107', color: '#000000' },
|
|
denied: { backgroundColor: '#dc3545', color: '#ffffff' },
|
|
approved: { backgroundColor: '#198754', color: '#ffffff' }
|
|
})
|