File size: 2,427 Bytes
1e92f2d |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
import * as React from 'react'
import { RefreshControl, ScrollView, StyleSheet, View } from 'react-native'
import { Paragraph, Title } from 'react-native-paper'
import { useQuery } from '@tanstack/react-query'
import { LoadingIndicator } from '../components/LoadingIndicator'
import { ErrorMessage } from '../components/ErrorMessage'
import { useRefreshByUser } from '../hooks/useRefreshByUser'
import { fetchMovie } from '../lib/api'
import type { MovieDetails } from '../lib/api'
import type { MoviesStackNavigator } from '../navigation/types'
import type { StackNavigationProp } from '@react-navigation/stack'
import type { RouteProp } from '@react-navigation/native'
type MoviesDetailsScreenNavigationProp = StackNavigationProp<
MoviesStackNavigator,
'MovieDetails'
>
type Props = {
navigation: MoviesDetailsScreenNavigationProp
route: RouteProp<MoviesStackNavigator, 'MovieDetails'>
}
export function MovieDetailsScreen({ route }: Props) {
const { isPending, error, data, refetch } = useQuery<MovieDetails, Error>({
queryKey: ['movie', route.params.movie.title],
queryFn: () => fetchMovie(route.params.movie.title),
initialData: route.params.movie as MovieDetails,
})
const { isRefetchingByUser, refetchByUser } = useRefreshByUser(refetch)
if (isPending) return <LoadingIndicator />
if (error) return <ErrorMessage message={error.message}></ErrorMessage>
if (!data) return null
return (
<ScrollView
refreshControl={
<RefreshControl
refreshing={isRefetchingByUser}
onRefresh={refetchByUser}
/>
}
>
<View style={styles.titleRow}>
<Title>
{data.title} ({data.year})
</Title>
</View>
{data.info ? (
<>
<View style={styles.infoRow}>
<Paragraph>{data.info.plot}</Paragraph>
</View>
<View style={styles.actorsRow}>
<Paragraph>
{data.info.actors.slice(0, -1).join(', ') +
' or ' +
data.info.actors.slice(-1)}
</Paragraph>
</View>
</>
) : (
<LoadingIndicator />
)}
</ScrollView>
)
}
const styles = StyleSheet.create({
titleRow: {
flexDirection: 'row',
margin: 20,
},
infoRow: {
flexDirection: 'row',
margin: 20,
},
actorsRow: {
flexDirection: 'column',
margin: 20,
marginTop: 10,
},
})
|