mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 15:03:26 +00:00
81 lines
1.8 KiB
TypeScript
81 lines
1.8 KiB
TypeScript
import React from "react";
|
|
import { Dimensions } from "react-native";
|
|
import { ScrollView, Text, View } from "tamagui";
|
|
|
|
import type { ItemData } from "~/components/item/item";
|
|
import Item from "~/components/item/item";
|
|
|
|
export const bookmarks: ItemData[] = [
|
|
{
|
|
id: "219651",
|
|
title: "Welcome to Samdal-ri",
|
|
posterUrl:
|
|
"https://www.themoviedb.org/t/p/w500/98IvA2i0PsTY8CThoHByCKOEAjz.jpg",
|
|
type: "tv",
|
|
year: 2023,
|
|
},
|
|
{
|
|
id: "194797",
|
|
title: "Doona!",
|
|
posterUrl:
|
|
"https://www.themoviedb.org/t/p/w500/bQhiOkU3lCu5pwCqPdNVG5GBLlj.jpg",
|
|
type: "tv",
|
|
year: 2023,
|
|
},
|
|
];
|
|
|
|
export const watching: ItemData[] = [
|
|
{
|
|
id: "113268",
|
|
title: "The Uncanny Counter",
|
|
posterUrl:
|
|
"https://www.themoviedb.org/t/p/w500/tKU34QiJUfVipcuhAs5S3TdCpAF.jpg",
|
|
type: "tv",
|
|
year: 2020,
|
|
},
|
|
{
|
|
id: "203508",
|
|
title: "Earth Arcade",
|
|
posterUrl:
|
|
"https://www.themoviedb.org/t/p/w500/vBJ0uF0WlFcjr9obZZqE6GSsKoL.jpg",
|
|
type: "tv",
|
|
year: 2022,
|
|
},
|
|
];
|
|
|
|
const padding = 20;
|
|
const screenWidth = Dimensions.get("window").width;
|
|
const itemWidth = screenWidth / 2.3 - padding;
|
|
|
|
export const ItemListSection = ({
|
|
title,
|
|
items,
|
|
}: {
|
|
title: string;
|
|
items: ItemData[];
|
|
}) => {
|
|
return (
|
|
<View>
|
|
<Text marginBottom={8} marginTop={16} fontWeight="500" fontSize={20}>
|
|
{title}
|
|
</Text>
|
|
<ScrollView
|
|
horizontal={true}
|
|
showsHorizontalScrollIndicator={false}
|
|
contentContainerStyle={{ paddingHorizontal: 3 }}
|
|
>
|
|
{items.map((item, index) => (
|
|
<View
|
|
key={index}
|
|
width={itemWidth}
|
|
paddingHorizontal={padding / 2}
|
|
paddingBottom={padding}
|
|
>
|
|
<Item data={item} />
|
|
</View>
|
|
))}
|
|
</ScrollView>
|
|
</View>
|
|
);
|
|
};
|